面向消息和面向RPC的Web服务之间的区别

时间:2013-07-04 10:06:50

标签: java web-services soap jax-ws

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

我是JAX-WS的新手。我想知道面向消息和远程过程调用的Web服务之间有什么区别。

1 个答案:

答案 0 :(得分:4)

在基于RPC的情况下,Web服务中的方法通过RPC调用,即通过特定端口和协议以同步方式调用。

但是面向消息的是基于消息的Web服务,这些方法是通过使用SOAP的HTTP请求调用的。

阅读此优秀article