What is SOAP and how it will be utilized in web-components?

Questions by enjoy

Showing Answers 1 - 9 of 9 Answers

james

  • Mar 27th, 2007
 

SOAP stands for Simple Access protocol.  SOAP was first offered in 1990's and has been introduced to W3C in 2000. The main purpose of SOAP to be able to send request to invoke programs on remote computers using XML wrappers.

gikie

  • Dec 13th, 2009
 

SOAP (Simple Access Object Protocol) is a communication protocol, which is platform and language independent. For example, the client side code might have been written using C and the server side is,say, written in Java.Both client and server agree on how to interpret the SOAP message.

SOAP basically structures the message in XML before it could be used to transform the useful information between servers and clients.

The next question that comes to our mind is :Why XML is used to structure the SOAP message?
The answer is pretty straight forward: Becasue of XML's open source nature and widely acceptance it is used by SOAP.

SOAP can use different transfer methods but the simple and the most common is HTTP...because of its universal acceptance(all browsers support HTTP).

HTTPS is also as the transport method if we want the transmission to be secure.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions