Andrew, First what strikes me is that you say you are getting this error. Usually with mapping issues, you get a resource not found.
Can you browse anything else on the hosting server? Try putting just a static page up and see if you can get to it. With mapping, a gotcha trick is the invoker. Do you have the invoker uncommented in your main web.xml or your app's web.xml? If you do in the main web.xml, the app will work on your machine and not on the hosing server. Are you trying to access the servlet from the URL? One other catch, are you referring to any of your servlets from jsp or html pages? If so, are you using the form of ./validate_user. With the mapping that you have, you need all your references to be in this form or the app will fail when on the hosting server. One last thing you can do to ensure it is a mapping issue, AS A TEST you can enable the invoker in your web.xml and then deploy to the server host. If it then runs, then your problem is in the mappings or references to the servlets as noted above. Doug www.parsonstechnical.com ----- Original Message ----- From: "Andres Ledesma" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, February 25, 2004 9:41 AM Subject: another servlet-mapping question,............. > Hi everybody, > > I got several servlets mapped on the web.xml file that works pretty fine on my > local tomcat installation, but when uploaded to the hosting server, I get a > 400 Server Statuts Error, it complains the path to the server does not exist > !!! > > My web.xml for the servlets is like this code ... > > <servlet> > <servlet-name>validate_user</servlet-name> > <servlet-class>com.bs.crm.validateUser</servlet-class> > </servlet> > ...... > .... > <servlet-mapping> > <servlet-name>validate_user</servlet-name> > <url-pattern>/validate_user</url-pattern> > </servlet-mapping> > > > > Anybody can help me ?? > > Thanx in advance !! > > Andrew > > > --------------------------------------------------------------------- > 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]
