I'm subclassing WsdlDefinitionHandlerAdapter and put it in spring-ws-servlet definition:
also i've configured MessageDispatcherServlet in web.xml with:Code:<bean id="wsdlDefinitionHandlerAdapter" class="my.package.CustomWsdlDefinitionHandlerAdapter"> <property name="transformLocations" value="true"/> <property name="customProperty" value="xxx"/> </bean>
In the log a can see that adapter is in use:Code:<init-param> <param-name>transformWsdlLocations</param-name> <param-value>true</param-value> </init-param>
The problem that it is not my custom class.Code:2007-08-24 13:35:53,165 DEBUG [org.springframework.ws.transport.http.WsdlDefinitionHandlerAdapter] - Transforming [http://localhost:8080/invito/ws/] to [http://10.1.1.137 :8080/invito/ws/]
How to configure servlet to work with my CustomWsdlDefinitionHandlerAdapter, an not with the WsdlDefinitionHandlerAdapter?


Reply With Quote