Html code works fine calling applet directly from server but when same html code placed in a new web template window the applet fails to load. Html has codebase defined this time.
<p><APPLET
ARCHIVE = "WSPlay.jar"
CODEBASE = "https://my site.com/forums/wrdsrch/"
CODE = "wsplay.WSPlayApplet.class"
NAME = WSPlayApplet
WIDTH = 496
HEIGHT = 390
HSPACE = 0
VSPACE = 0
ALIGN = middle
>
Have tried getting applet to load from within new web template by:
placing another codebase in the parameter section, to wit
<PARAM NAME = "CODEBASE" VALUE ="https://my site.com/forums/wrdsrch/">
by using in codebase in applet section a "."
Any suggestions as to why this applet works fine when loaded from server as a straight html page but when same html code placed in new web template page it fails?
Thanks.
|