top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the message format used in SOAP ?

+3 votes
314 views
What is the message format used in SOAP ?
posted Dec 8, 2013 by Anuj Yadav

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The message format is written using XML language. It allows easy transition to deliver the SOAP based implementations. The message that is been given is in the format given below:

POST /InStock HTTP/1.1
Host: localhost
Content-Type: application/soap+xml; charset=utf-8
Content-Length: 299
SOAPAction: "http://www.w3.org/2003/05/soap-envelope"

<?xml version="1.0"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope">
<soap:Header>
</soap:Header>
<soap:Body>
<m:CareerName>Careeride</m:CareerName>
</soap:Body>
</soap:Envelope>
answer Dec 9, 2013 by Kumar Mitrasen
...