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]

Reply via email to