What is the difference between Document style and RPC style communication?

前端 未结 6 1164
甜味超标
甜味超标 2020-12-07 07:48

Can somebody explain to me the differences between Document and RPC style webservices? Apart from JAX-RPC, the next version is JAX-WS, which supports both Document and RPC s

6条回答
  •  借酒劲吻你
    2020-12-07 08:24

    An RPC style web service uses the names of the method and its parameters to generate XML structures representing a method’s call stack. Document style indicates the SOAP body contains an XML document which can be validated against pre-defined XML schema document.

    A good starting point : SOAP Binding: Difference between Document and RPC Style Web Services

提交回复
热议问题