Hi, Your web.xml is syntactically fine, although I suggest you change to the 2.3 DTD. Take a look at the top of $CATALINA_HOME/conf/web.xml to see the DTD declaration and copy it instead of your current 2.2 delcaration.
For this servlet to be available at http://localhost:8080/locasugeGSM, you webapp must be deployed at context path "" (the empty string: not "/" or null). You can do this by overwriting the existing ROOT webapp that ships with Tomcat, or removing that webapp and adding an explicit Context declaration to $CATALINA_HOME/conf/server.xml with a path="" attribute. Make sure to read the Context configuration reference in the Tomcat docs for a more complete understanding of how to configure your webapp in Tomcat. And if you haven't already read it, I strongly suggest you read the "First Webapp" guide in the Tomcat docs. Yoav Shapira Millennium Research Informatics >-----Original Message----- >From: Christian Ruediger [mailto:[EMAIL PROTECTED] >Sent: Thursday, September 30, 2004 12:50 PM >To: [EMAIL PROTECTED] >Subject: Prblm with deployment descriptor for XML RPC Servlet > >Hello there, > >I am trying to deploy a servlet, that das reply to an HTTP XML RPC request. >Unfortunately the only reply i get is standard html page that provides >me the .war file for download. Further comments after the descriptor. > >Here is the deployment descriptor: > ><!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.// >DTD WebApplication 2.2//EN" >"http://java.sun.com/j2ee/dtds/web-app_2.2.dtd"> > ><web-app> > <description> > Testserveur pour tester la fonctionalit� du > GSM orange Adaptateur > </description> > > <servlet> > <servlet-name>locasugeGSM</servlet-name> > <servlet-class> > testserveur.RPC_XML_HTTPTestServlet > </servlet-class> > <display-name>Testservlet</display-name> > <description> > Le servlet qui comprise le XML RPC serveur > </description> > </servlet> > > <servlet-mapping> > <servlet-name>locasugeGSM</servlet-name> > <url-pattern>/locasugeGSM</url-pattern> > </servlet-mapping> > ></web-app> > >The servlet class name is concatenated from package and class name. >The url where I expect the page to be is >http://localhost:8080/locasugeGSM/ > >So could anyone lend me a helping hand. >Thank you > >Christian Ruediger > >--------------------------------------------------------------------- >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]
