Jump to content

Help with using SOAP.


idealws

Recommended Posts

Hello,

 

I am new here and also new to using SOAP and would like to see if I can

get any help on how I would use this to create a php function or mini

script to process:

 

POST /webservices/integration.asmx HTTP/1.1
Host: www.decodethis.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.decodethis.com/Decoder"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Decoder xmlns="http://www.decodethis.com/">
      <security>string</security>
      <VIN>string</VIN>
    </Decoder>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DecoderResponse xmlns="http://www.decodethis.com/">
      <DecoderResult>string</DecoderResult>
    </DecoderResponse>
  </soap:Body>
</soap:Envelope>

 

Any help would be greatly appreciated.

 

Best Regards,

Ray

Link to comment
https://forums.phpfreaks.com/topic/97739-help-with-using-soap/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.