RE: Unable to open the servlet.

2003-10-06 Thread Bodycombe, Andrew
You have not mapped your servlet to the /com/scheduler/addDataServlet URL. Try adding the following to your web.xml, before your welcome-file-list: servlet-mapping servlet-nameaddDataServlet/servlet-name url-pattern/com/scheduler/addDataServlet/url-pattern /servlet-mapping You

Re: Unable to open the servlet.

2003-10-06 Thread drm
hi :) As far as i can tell you are missing a servlet-mapping in your web.xml. A servlet uri should also be mapped to a specific servlet. Try including: servlet-mapping servlet-nameaddDataServlet/servlet url-pattern/com/scheduler/addDataServlet/url-pattern /servlet-mapping in your web.xml

Re: Unable to open the servlet.

2003-10-06 Thread anunay ashish
- From: drm [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, October 06, 2003 2:51 PM Subject: Re: Unable to open the servlet. hi :) As far as i can tell you are missing a servlet-mapping in your web.xml. A servlet uri should also be mapped to a specific servlet. Try

Re: Unable to open the servlet.

2003-10-06 Thread drm
. But the same problem persists. The version of my tomcat is: jakarta-tomcat-4.1.27 Where can I be still going wrong? Regards, Anunay Ashish. - Original Message - From: drm [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, October 06, 2003 2:51 PM Subject: Re: Unable

Re: Unable to open the servlet.

2003-10-06 Thread epyonne
Please read my reply to your previous post on the same subject. - Original Message - From: anunay ashish [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, October 06, 2003 01:31 AM Subject: Unable to open the servlet. Hi, My servlet is placed at: C:\Program