Re: ClassNotFoundException after successful Servlet run

2006-05-31 Thread Eric Harbeston
Thanks guys, I placed the classes and jars in a code directory at the same level as the HTML and fixed the applet tag accordingly, and now I'm back on track again. I appreciate the swift and informative responses! Eric

Re: ClassNotFoundException after successful Servlet run

2006-05-31 Thread David Smith
According to your description below, you've placed the files correctly for server-side execution, but not for client side execution. Per servlet spec, the client does not have any direct access to anything in the WEB-INF directory. Your applet's classes need to be placed somewhere else or mad

Re: ClassNotFoundException after successful Servlet run

2006-05-30 Thread Marc Farrow
the CODEBASE tag is for use of the base to where the code is located. This should be URL or even relative to your html page. Also, the CODE tag needs to be the fully package qualified name of the class such as com.mycompany.mypackage.MyClass.class (I think the .class extension could be left off)

ClassNotFoundException after successful Servlet run

2006-05-30 Thread Eric Harbeston
Greetings, For the past few-several days I have been scouring the internet and this list extensively to no avail. First I'll describe the error and then give as much detail as possible about the structure of our web-app project as possible. Before I came to work on this project, it was running