SOAP Voorbeeld
- Vorige Pagina SOAP HTTP Binding
- Volgende Pagina SOAP Samenvatting
Een SOAP-instantie
In het volgende voorbeeld wordt een GetStockPrice-verzoek naar de server gestuurd. Dit verzoek heeft een StockName parameter en in de reactie wordt een Price parameter geretourneerd. De naamruimte van deze functie is gedefinieerd op deze adres: "http://www.example.org/stock"
SOAP Verzoek:
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 Reactie:
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>
- Vorige Pagina SOAP HTTP Binding
- Volgende Pagina SOAP Samenvatting