Hi Seems like this is related to relative path where the browser looks for the testvm.class file. For the html page at http://www.linux-house.net/v3/index.php?cID=177, when the browser sees <applet code="testvm.class" width="600" height="250"> it looks for testvm.class at the URL http://www.linux-house.net/v3/testvm.class and finds it.
However for http://www.linux-house.net/v3/techlab/plugin, it looks for testvm.class at http://www.linux-house.net/v3/techlab/testvm.class and only finds the page at http://www.linux-house.net/v3/. To correct this you need to add the codebase attribute to the code tag. That is, <applet code="testvm.class" width="600" height="250"></applet> should become <applet codebase="http://www.linux-house.net/v3/" code="testvm.class" width="600" height="250"></applet> for the page at http://www.linux-house.net/v3/techlab/plugin. Or you can just copy your testvm.class file to http://www.linux-house.net/v3/techlab/<http://www.linux-house.net/v3/techlab/plugin> . # diff LinuxHouse\ \ \ \ Plug-in\ Test\ Page.htm LinuxHouse\ \ \ \ Plug-in\ Test\ Page_Corrected.htm 130c130 < <applet code="testvm.class" width="600" height="250"></applet></div> --- > <applet codebase="http://www.linux-house.net/v3/" code="testvm.class" width="600" height="250"></applet></div> Thanks & Regards Joji Antony On Tue, Dec 18, 2012 at 4:10 PM, JeevZ <[email protected]> wrote: > Concrete 5 -- DISCLAIMER: All opinions mentioned here are my own and has no relations with that of my employer. All information is based on publically available data and information -- "Freedom is the only law". "Freedom Unplugged" http://www.ilug-tvm.org You received this message because you are subscribed to the Google Groups "ilug-tvm" group. To control your subscription visit http://groups.google.co.in/group/ilug-tvm/subscribe To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For details visit the google group page: http://groups.google.com/group/ilug-tvm?hl=en
