Re: Applet not initiated

2007-03-26 Thread Tomcat
Hello Rashmi, Thanks for response, I put the class file in ROOT directory, the same place that my html file exist , but still the same problem. is it possible classpath should include that class location so computer's jvm recognize the place that class is exist ? and also I found some

Re: Applet not initiated

2007-03-26 Thread Rashmi Rubdi
You're welcome. is it possible classpath should include that class location so computer's jvm recognize the place that class is exist ? I recommend not setting the CLASSPATH at all. I tested one Applet example with JSPs, and the applet loads fine on Tomcat 6 / Windows XP without any explicit

Re: Applet not initiated

2007-03-26 Thread Rashmi Rubdi
Also I don't know if you're using strict XHTML. The applet tag is not supported in XHTML as mentioned here : http://www.w3schools.com/tags/tag_applet.asp they recommend using the HTML object tag http://www.w3schools.com/tags/tag_object.asp instead of applet tag.

Re: Applet not initiated

2007-03-25 Thread Rashmi Rubdi
Place your Applet's class file anywhere but the WEB-INF folder, because WEB-INF folder is protected from client/browser's access, applet classes can't be accessed if they are under WEB-INF. Also use jsp:plugin tag , if you are accessing the Applet from a JSP file. -Rashmi On 3/25/07, Tomcat

Applet not initiated

2007-03-24 Thread Tomcat
Hello When I am trying to open a very simple applet on my browser it returns applet not initiated or failed to load applet. class file is located in tomcat WEB_INF/classes and I am calling it from ROOT directory and through index.html file. thanks for help Adam