soap protocol code example

Example 1: what is soap request

It has strict rule on how to send request and response.

Soap Request use XML format to send and receive response

Only method allowed in SOAP is POST

The content type is always xml

Body is enclosed in envelop like structure for example :

Sample Post request to turn number into word

POST https://www.dataaccess.com/webservicesserver/NumberConversion.wso

Header : text/xml; charset=utf-8

Body :



  
    
      123456789
    
  

Response



    
        
            one hundred and twenty three million four hundred and fifty six thousand seven hundred and eighty nine 
        
    

Example 2: SOAP

SOAP is a messaging protocol specification for exchanging structured
information in the implementation of web services in computer networks.

Its purpose is to provide extensibility, neutrality, verbosity and independence.

Example 3: SOAP

Simple Object Access Protocol

Tags:

Misc Example