user663724
user663724

Reputation:

Message Format in WebService

What is meant by Message Format in WebService I have been told that Message Format can be of two styles (RPC / Document )

Please tell me what is meant by Message Format and how it is actually related to the Web services ??

Upvotes: 0

Views: 892

Answers (2)

Rajashekhar
Rajashekhar

Reputation: 479

Message Exchanging Formats means the way in which the client XML structure should look like so that the provider can understand the document. there are 4 MEF's:

  1. RPC-Encoded
  2. RPC-literal
  3. document-encoded (This combination is not recommended by WS-I BP 1.0 & 2.0)
  4. document-literal

RPC-encoded is the default MEF for the JAX-RPC API and document-literal is the default MEF for the JAX-WS API

Upvotes: 1

Related Questions