Howdy, Don't just rename the servlet.jar, remove it. You can't have multiple copies of these classes (no matter what the jar is named) in the runtime classpath.
What errors are in your tomcat logs after you do the above and restart your server? Yoav Shapira Millennium ChemInformatics >-----Original Message----- >From: Chen, Yi [mailto:[EMAIL PROTECTED] >Sent: Tuesday, July 01, 2003 3:52 PM >To: 'Tomcat Users List' >Subject: RE: How to configure TomCat4 for web applications? > >Hi, John: > >I checked the class loader document online and I moved all my jar files to >the WEB-INF/lib under my web application folder. I got all the jar files >from someone else and it has a server.jar in it, (there is also one in >commons\lib). Then I renamed the servelet.jar inside Controller\WEB- >INF\lib, >according to the log file, it seems that Tomcat did deploy all jar files >inside Controller\WEB-INF\lib, but it just hang there doing nothing. Now I >can't even access http://localhost:8080. What could went wrong? > >Thanks a lot. > >Yi > >-----Original Message----- >From: John Turner [mailto:[EMAIL PROTECTED] >Sent: Tuesday, July 01, 2003 7:14 AM >To: Tomcat Users List >Subject: Re: How to configure TomCat4 for web applications? > > > >You must explicitly map each servlet in your application's web.xml file. > >Please post: > >- the location on your filesystem of your servlet class file (like >Controller/WEB-INF/classes/... or whatever) > >- the exact URL you WISH to use to reach that servlet > >- any servlet and servlet-mapping elements from your web application's >web.xml file referring to the servlet above > >Alternatively, consult the FAQ: > >http://jakarta.apache.org/tomcat/faq/misc.html#invoker > >John > >On Mon, 30 Jun 2003 17:05:32 -0500, Chen, Yi <[EMAIL PROTECTED]> wrote: > >> Also I don't have a Web Application Archive (WAR) file associated the >> Controller application. Could that be the problem? >> >> Thanks. >> >> Yi >> >> -----Original Message----- >> From: Chen, Yi [mailto:[EMAIL PROTECTED] >> Sent: Monday, June 30, 2003 4:53 PM >> To: 'Tomcat Users List' >> Subject: RE: How to configure TomCat4 for web applications? >> >> >> Hi, I removed the web.xml, the error message still is >> "Controller/servlet/Controller not available". Do you have any >> suggestions >> as how to write my own web.xml? Or do I need to specify somewhere for the >> TomCat to find the Controller folder? >> In TomCat3 there is a wrapper.properties file in which I can specify the >> class path for Controller. I couldn't find a corresponding file in >> TomCat4. >> Btw, is the servlet a virtual path? Thanks. >> >> Yi >> >> -----Original Message----- >> From: john d barreto [mailto:[EMAIL PROTECTED] >> Sent: Monday, June 30, 2003 4:11 PM >> To: [EMAIL PROTECTED] >> Subject: RE: How to configure TomCat4 for web applications? >> >> >> Yi, >> >> Hi. The web.xml file is specific to your application so you can't take >> one from another application and put it inside Controller. I was just >> thinking that there could be something wrong with the old one you had. >> You could try with no web.xml file since it is not strictly required. >> Restart Tomcat and see what happens. >> >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > > > >-- >Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied, printed, disclosed or used by anyone else. If you are not the(an) intended recipient, please immediately delete this e-mail from your computer system and notify the sender. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
