Applet Problems

2002-01-17 Thread Purcell, Scott
Hello, I am having trouble running any applets from on my tomcat server on my NT box. I truly believe I have all my classpaths configured properly, as I can run any type of servlet or bean. If I create a simple java file under /root/web-inf/classes/clock.class (which is in my classpath), then

Re: Applet Problems

2002-01-17 Thread David Smith
Applets are downloaded by the browser, and as such have to be accessible to the client. Clients can not directly access anthing under WEB-INF per the servlet spec. So you'll have to find a place to put them outside WEB-INF or have a servlet of some kind serve them to the client (if