I have deployed a service using spring-ws and accessed it using
<bean id="messageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory"/>
<bean id="webServiceTemplate" class="org.springframework.ws.client.core.WebServiceTemplate">
<constructor-arg ref="messageFactory"/>
<property name="defaultUri" value="http://localhost:6060/SpringMVC/ws"/>
</bean>
<bean id="webServiceClient" class="client.EchoTestClient">
<property name="defaultUri" value="http://localhost:6060/SpringMVC/ws/"/>
</bean>
Can we use any of the JAX-RPC client handing method( Static Stub, Dynamic Proxy or Dynamic Invocation Interface) to access these web services? If yes then how? What I understand is that Spring-WS implementation is quite different from JAX-RPC and JAX-WS implementation and we cannot access these using JAX-RPC. Please suggest.
Thanks