what is the difference between jax-rpc and jax-ws web services?
How to migrate legacy code using jax-rpc to jax-ws?
what is the difference between jax-rpc and jax-ws web services?
How to migrate legacy code using jax-rpc to jax-ws?
One of the main difference between JAX-RPC and JAX-WS is the programming model. A JAX-WS based service uses annotations (such @WebService) to declare webservice endpoints. Use of these annotations obviates the need for deployment descriptors. With JAX-WS, you can have a webservice deployed on a Java EE compliant application server without a single deployment descriptor. Apart from these, other additional features (such asynchronous callbacks etc) are also present.
To migrate your PRC base project to WS you need to follow below steps -