vishal Kumar
vishal Kumar

Reputation: 95

JAX-WS web service using a JAX-RPC (AXIS1) client

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

Answers (1)

jtahlborn
jtahlborn

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

Related Questions