0 Replies Latest reply on Jul 28, 2006 11:04 AM by djhititup

    JBossWS URL changes

    djhititup

      When I go to the JBossWS URL on my server:

      http://server:8000/jbossws/services

      I see my webservice:

      jboss.ws:context=user,endpoint=TestWebService http://server:8080/user/TestWebService?wsdl

      However the FULL url and port is incorrect b/c due to the web.xml of the application the link below is the CORRECT url.

      http://server:8000/user/webservice/TestWebService?wsdl

      Below is my web.xml:

      <?xml version="1.0" encoding="ISO-8859-1"?>

      <web-app version="2.4"
      xmlns="http://java.sun.com/xml/ns/j2ee"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd">

      <!-- The Welcome File List -->
      <welcome-file-list>
      <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>

      <!-- Servlets -->

      <servlet-name>TestWebService</servlet-name>
      <servlet-class>com.company.department.ws.TestWebService</servlet-class>


      <!-- Servlet Mappings -->
      <servlet-mapping>
      <servlet-name>TestWebService</servlet-name>
      <url-pattern>/webservice/TestWebService</url-pattern>
      </servlet-mapping>

      </web-app>

      The question I have is can I change the URL path found in the JBossWS page? Is this a configuration change or a bug?