1 Reply Latest reply on Sep 14, 2006 12:26 PM by maeste

    Deploying more than one endpoint fails

      my web.xml looks like this...

       <servlet>
       <servlet-name>EchoMe</servlet-name>
       <servlet-class>com.vicor.distributedcapture.webservice.SimpleWSTest</servlet-class>
       </servlet>
       <servlet-mapping>
       <servlet-name>EchoMe</servlet-name>
       <url-pattern>/*</url-pattern>
       </servlet-mapping>
      
       <servlet>
       <servlet-name>WebTest</servlet-name>
       <servlet-class>com.vicor.distributedcapture.webservice.WebServiceTest</servlet-class>
       </servlet>
       <servlet-mapping>
       <servlet-name>WebTest</servlet-name>
       <url-pattern>/*</url-pattern>
       </servlet-mapping>
      

      The webservices appear to deploy okay, however, when i veryify the wsdl through the browser at http://localhost:8080/jbossws/services both wsdls point to the same wsdl (the EchoMe wsdl). it's like the second webservice doesn't exist.

      How do I set up jboss to know about both web services in the web.xml file?