Choosing a SOAP service type

Previous Next

When defining your SOAP service, you need to choose either an RPC-oriented approach or a document-oriented approach. RPC is short for Remote Procedure Call.

A web service is described by a WSDL (Web Services Description Language) document. A WSDL document describes how the web service is bound to a messaging protocol, in this case, to the SOAP protocol.

The WSDL document can prescribe an RPC-oriented message format or a document-oriented message format. The main difference lies in how the Body element of the SOAP message is shaped.

 

 

collapseRPC-oriented
collapseDocument-oriented

 

 

See also

Designing a SOAP service

Defining a SOAP service