Hi All
I have often come across the two terms Message based Web Services and RPC Based Web Services. Would any of you be able to define the difference for me ?
I think RPC is simply a stateless web service and Message based is stateful (i.e. it includes different id's in the xml which correlate to specific state held by the application). Is that correct ?
-
Difference between Message and RPC based Web Services ? (5 messages)
- Posted by: Steve Watt
- Posted on: January 17 2003 12:49 EST
Threaded Messages (5)
- Difference between Message and RPC based Web Services ? by Lorenzo Dematte on January 23 2003 04:25 EST
- Difference between Message and RPC based Web Services ? by Venkatesh Srinivasan on January 23 2003 13:32 EST
- Difference between Message and RPC based Web Services ? by Steve Watt on January 23 2003 16:08 EST
- Difference between Message and RPC based Web Services ? by Venkatesh Srinivasan on January 23 2003 11:25 EST
- Difference between Message and RPC based Web Services ? by Steve Watt on January 23 2003 16:08 EST
- Difference between Message and RPC based Web Services ? by ivory tower on April 01 2003 12:20 EST
-
Difference between Message and RPC based Web Services ?[ Go to top ]
- Posted by: Lorenzo Dematte
- Posted on: January 23 2003 04:25 EST
- in response to Steve Watt
In my opinion, the difference is only in how the Web service is called: 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, in Message based Web Services the methods are called through an HTTP request using SOAP. -
Difference between Message and RPC based Web Services ?[ Go to top ]
- Posted by: Venkatesh Srinivasan
- Posted on: January 23 2003 13:32 EST
- in response to Steve Watt
-
Difference between Message and RPC based Web Services ?[ Go to top ]
- Posted by: Steve Watt
- Posted on: January 23 2003 16:08 EST
- in response to Venkatesh Srinivasan
Could someone provide us with an example of each ? i.e.
[web service] <-- synchronous --> [web service] = RPC -
Difference between Message and RPC based Web Services ?[ Go to top ]
- Posted by: Venkatesh Srinivasan
- Posted on: January 23 2003 23:25 EST
- in response to Steve Watt
Have you looked at the demo in OTN site? This uses Document style as well as RPC style web services...
Demo can found at
http://otn.oracle.com/sample_code/tech/java/j2ee/jintdemo/content.html
And the tutorial for the same can be found at
http://otn.oracle.com/sample_code/tech/java/j2ee/jintdemo/tutorials/webservices.html
Cheers
--Venky -
Difference between Message and RPC based Web Services ?[ Go to top ]
- Posted by: ivory tower
- Posted on: April 01 2003 12:20 EST
- in response to Steve Watt
RPC-based web service is similiar to synchronous processing, whereas the msg-based service is moreorless asynchronous.
Hope it helps..