Reputation: 95
I am new to web service. Can anyone please tell me if JAX-WS web service can be accessed using a JAX-RPC (AXIS1) generated client stub?
Upvotes: 0
Views: 654
Reputation: 53694
no. "jax-rpc" is so named because it only supports the "rpc/encoded" xml format. jax-ws webservices only support the "document/literal" format, which is not compatible.
Upvotes: 3