can not set up HelloWorldExample servlet to be called from a different directory

2006-09-08 Thread Alla Winter
Hello, I think I am trying to do a very simple thing - to deploy my application to TOMCAT5.5.17. I am using j2sdk1.4.2_12, and I did install the computability pack. Windows 2000 I was able to start tomcat and run HelloWorldExample servlet, but I am not able to access my application in the

Re: can not set up HelloWorldExample servlet to be called from a different directory

2006-09-08 Thread David Smith
You need a servlet mapping in your web.xml file: servlet-mapping servlet-nameHelloWorldExample/servlet-name url-pattern/servlet/HelloWorldExample/url-pattern /servlet-mapping Put it after /servlet in your web.xml. Also, the CLASSPATH environment variable is ignored in tomcat. Don't try to

RE: can not set up HelloWorldExample servlet to be called from a different directory

2006-09-08 Thread Alla Winter
Thanks for your help -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Friday, September 08, 2006 12:14 PM To: Tomcat Users List Subject: Re: can not set up HelloWorldExample servlet to be called from a different directory You need a servlet mapping in your web.xml