You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Christian Ruediger <ch...@gmail.com> on 2004/09/30 18:50:13 UTC

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: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org