RE: Question from a newbie on running a web application

2002-09-26 Thread Turner, John
Tomcat ClassLoader HOWTO describes exactly how Tomcat finds classes: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html John -Original Message- From: Bill [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 25, 2002 10:31 PM To: Tomcat Users List Subject:

Question from a newbie on running a web application

2002-09-25 Thread Bill
Hi, I just installed Tomcat 4.1 and tried my web application. But, ran into an exception which I have tried to resolved for most of the day, without any success. This is the steps I used: 1. copied the application jar files to %CATALINA_HOME%\shared\lib 2. copied the war file to

RE: Question from a newbie on running a web application

2002-09-25 Thread Wu Yiqun
Hi, Bill: I have encounter some similar problems. Maybe this problem is cause by following reason (I am not sure). You have a user class com.tad.security.core.logon.imp.LoginContext. This is at /WEB-INF/*, while you call javax.security.auth.Subject. This is at /shared/lib, while it also

Re: Question from a newbie on running a web application

2002-09-25 Thread Bill
Hi Yiqun, Thanks for reply. I check what you said... All of the classes you mentioned, and also the classes that showed up in the exception stack are in the jar files in /shared/lib, with the exception of com.tad.security.core.tadmimp.logon.TADLogonServlet (which is in /WEB-INF/*). But, I do