-
Bug
-
Resolution: Done
-
Major
-
jbossws-1.0.0
-
None
Currently when I change the web.xml <servlet-mapping><url-pattern> the JSR-181 deployment does not reflect that change in the soap:address entry in the wsdl.
If I modify the wsdl to be consistent with the <servlet-mapping>, all works as expected:
web.xml:
...
<servlet-mapping>
<servlet-name>OrderService</servlet-name>
<url-pattern>/service/*</url-pattern>
</servlet-mapping>
wsdl:
<soap:address location="http://jboss:8080/TestService/OrderService"/>
I would have expected
wsdl:
<soap:address location="http://jboss:8080/TestService/service/OrderService"/>
And this in fact works.
- relates to
-
JBWS-1178 Multiple virtual host and soap:address problem
- Closed