About SOAP ?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sivasaravanan
Simple Object Access Protocol
It is preferred way to encode information such as data
values before sending it to or from a webservice...
Is This Answer Correct ? | 2 Yes | 0 No |
What do you mean by query string?
How do sessions work?
What is web application virtual directory ?
Explain the difference between debug.write and trace.write? When should each be used?
what is <location> tag?
Your ASP.NET application displays sales data on a page. You want to improve performance by holding the page in memory on the server for one hour. You want to ensure that the page is flushed from memory after one hour, and that the page is re-created when the next request for the page is received. What should you do? A . Initialize a new instance of the Cache class in the Application.Start event handler. B . Initialize a new instance of the Timer class in the Page.Load event handler. C . Set the Duration attribute of the OutputCache directive in the page. D . In the Web.config file, set the timeout attribute of the sessionState element.
5 Answers ADITI, Syntax Softtech,
can we call webservice in Html form?
1 Answers Bank Of America, BirlaSoft, Microsoft,
What are the main components of the ADO object model? How are they used?
2 Answers HCL, Syntax Softtech,
What is asp.net? How is it different from asp?
Can we override the enablepartialrendering property of the scriptmanager class?
Can we use a static function with a non-static variable?
How .net CLR works with n-tier application