Hello,
I have written my WSDL file (Orders.wsdl), and I want to write a spring bean which implements the web service (endpoint).
I have read in the "5.3.1.1. Automatic WSDL exposure" chapter of the documentation (http://static.springframework.org/sp...r.html#d0e1952):
So I have declared the bean spring named "orders", and I can access to the wsdl file (http://localhost:8080/spring-ws/orders.wsdl) but where is the implementation of the service ?Code:<bean id="orders" class="org.springframework.ws.wsdl.wsdl11.SimpleWsdl11Definition"> <constructor-arg value="/WEB-INF/wsdl/Orders.wsdl"/> </bean>
How do I declare my bean spring of the implementation ?
Do you have an example ?
I think that the tutorial is incomplete.
Thanks.



Reply With Quote