Answer Posted / lakshmi
Simple Object Access Protocol (SOAP) is a protocol used for
messaging and it is completely XML based.
SOAP specifications are standardizes by W3C.
SOAP provides a complete set of rules for the messages,
also called SOAP envelopes, as well as rules for issues
like data encoding, handling of messages, and binding of
messages to other protocols,such as HTTP. A SOAP message is
a simple XML document, which always contains a mandatory
envelope and body element and can also contain a few
optional elements such as header and fault element.
syntax of SOAP message:
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingstyle="http://www.w3.org/2001/12/soap-
encoding">
<soap:Header>
...
...
</soap:Header>
<soap:Body>
...
<soap:fault>
...
</soap:fault>
</soap:Body>
</soap:Envelope>
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What language does asp.net use?
What is asp.net and its advantages?
What are client activated objects and server activated objects?
Where is the view state data stored in asp net?
Describe a bubbled event and how it is used ?
What is session and cookies in asp.net?
How does asp.net page work?
How does output caching work in ASP.NET?
How do I open an ashx file in windows 7?
How many types of triggers are there in update panel?
Can we set which type of comparison we want to perform by the CompareValidator control?
What is the compiled object?
What is a server farm in iis?
Explain State management in asp.net
What are the options in ASP.NET to maintain state?