SOAP ইনস্ট্যান্স

একটি SOAP ইনস্ট্যান্স

নিম্নোক্ত উদাহরণে, একটি GetStockPrice রিকোর্ড সার্ভারে পাঠানো হয়েছে। এই রিকোর্ডের একটি StockName পারামিটার থাকে, এবং প্রতিক্রিয়ায় Price পারামিটার ফিরে আসবে। এই ফাংশনের নেমস্পেস নিম্নলিখিত ঠিকানায় নির্ধারিত: "http://www.example.org/stock"

SOAP অনুরোধ:

POST /InStock HTTP/1.1
Host: www.example.org
Content-Type: application/soap+xml; charset=utf-8
Content-Length: nnn
<?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:Body xmlns:m="http://www.example.org/stock">
    <m:GetStockPrice>
      <m:StockName>IBM</m:StockName>
    </m:GetStockPrice>
  </soap:Body>
</soap:Envelope>

SOAP প্রতিক্রিয়াসমূহ:

HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: nnn
<?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:Body xmlns:m="http://www.example.org/stock">
    <m:GetStockPriceResponse>
      <m:Price>34.5</m:Price>
    </m:GetStockPriceResponse>
  </soap:Body>
</soap:Envelope>