I recently updated my Java to the most up to date version and this caused an applet that I work with to not run correctly. I have changed the security parameters for Java through the Control Panel to the lowest possible settings but my applet still does not run. Here is what my applet looked like:
<HTML>
<BODY BGCOLOR="#003333">
<p>
<APPLET name=IpixViewer code=IpixViewer.class archive="IpixViewer.jar" width=450 height=450>
<PARAM NAME="url" VALUE="209_a_CHEM.ipx">
</APPLET>
</p>
</BODY>
</HTML>
I tried to use the HTML tag as a work around but this also is failing. Here is that code:
<HTML>
<body>
<p>
<object type="application/x-java-applet;version=1.6" name="IpixViewer" id="ipixviewer" style="width:450px;height:450px" >
<param name="code" value="IpixViewer.class" >
<param name="archive" value="IpixViewer.jar" >
<param name="codebase" value="Z:\filepath\">
<param name="url" value="205_a_CHEM.ipx" >
</object>
</p>
</body>
</HTML>
I think the issue is when I try to pass the url parameter into the applet but I am not sure. Any help would be appreciated.