Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between message-oriented and RPC oriented web services

JAX-WS allows developers to write message-oriented as well as Remote Procedure Call-oriented (RPC-oriented) web services

I am new to JAX-WS. I want to know what is the difference between message-oriented and remote procedure call-oriented web service.

like image 586
Waqas Ali Avatar asked Oct 03 '22 15:10

Waqas Ali


1 Answers

In RPC based the methods in a Web service are called through a RPC, i.e. in a synchronous way through a specific port and protocol.

But message-oriented is Message based Web Services the methods are called through an HTTP request using SOAP.

Read this excellent article.

like image 195
Masudul Avatar answered Oct 07 '22 16:10

Masudul