Pls tell me How to embed an applet in my Jsp page and where to keep my applet class file in Tomcat server.Should it be in WEB-INF/classes folder?
Brian Pipa
Ranch Hand
Joined: Sep 29, 2003
Posts: 299
posted
0
You embed it just as you would in an HTML page. Nothing in WEB-INF can be served up. The applet class/jar should be in a place that the webserver can serve up. You could put it next to the .jsp, for example. Brian