What Is JAX-RPC?

What Is JAX-RPC?

JAX-RPC stands for Java API for XML-based RPC. It's an API for building Web services and clients that used remote procedure calls (RPC) and XML. Often used in a distributed client/server model, an RPC mechanism enables clients to execute procedures on other systems. In JAX-RPC, a remote procedur

[ read more ]

Spring supports remoting for six different RPC models:

Spring supports remoting for six different RPC models: 1. Remote Method Invocation (RMI) 2. Hessian 3. Burlap 4. HTTP invoker 5. EJB 6. JAX-RPC In all the models, services are configured into the application through spring configuration file as spring managed beans. This

[ read more ]