F
Francis
I have a call to a java app such as:
<applet id="TLL_HR" width="400" height="250"
archive="panoapplet.jar" code="panoapplet.class">
<param name="file" value="TLL_HR.ivr">
</applet>
.... and this works fine. Problem is when I move the "panoapplet.jar" file higher up by one in the directory tree, the code generated is as such:
<applet id="TLL_HR" width="400" height="250"
archive="../panoapplet.jar" code="panoapplet.class">
<param name="file" value="TLL_HR.ivr">
</applet>
Notice the "../panoapplet.jar" change. This is normal for everything else in my web page code, except the call to the change location of the java app dosen't worked. I even tried to add the following:
<applet id="TLL_HR" width="400" height="250"
archive="../panoapplet.jar" code="panoapplet.class" codebase="../">
<param name="file" value="TLL_HR.ivr">
</applet>
But still I don't get a running java app. When I fix back the code and put the "panoapplet.jar" back in the same directory as my web page... everything is fine. Am I missing something? Please help.
- Francis
(PS. Sorry for the HTML)
<applet id="TLL_HR" width="400" height="250"
archive="panoapplet.jar" code="panoapplet.class">
<param name="file" value="TLL_HR.ivr">
</applet>
.... and this works fine. Problem is when I move the "panoapplet.jar" file higher up by one in the directory tree, the code generated is as such:
<applet id="TLL_HR" width="400" height="250"
archive="../panoapplet.jar" code="panoapplet.class">
<param name="file" value="TLL_HR.ivr">
</applet>
Notice the "../panoapplet.jar" change. This is normal for everything else in my web page code, except the call to the change location of the java app dosen't worked. I even tried to add the following:
<applet id="TLL_HR" width="400" height="250"
archive="../panoapplet.jar" code="panoapplet.class" codebase="../">
<param name="file" value="TLL_HR.ivr">
</applet>
But still I don't get a running java app. When I fix back the code and put the "panoapplet.jar" back in the same directory as my web page... everything is fine. Am I missing something? Please help.
- Francis
(PS. Sorry for the HTML)