I need to send a SOAP request. I'm running PHP 5.3 with SOAP Installed.
Can anybody advise me how I would send the following SOAP request?
POST /hAPI.asmx HTTP/1.1
Host: api.example.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<SpecialOffers xmlns="https://api.example.com/hAPI.asmx">
<userName>USERNAME/userName>
<xmlParameters>
<![CDATA[
<productTypeLookup xmlns="http://tempuri.org/DummySchema.xsd">
<authorisation>
<password>PASSWORD</password>
</authorisation>
</productTypeLookup>
]]>
</xmlParameters>
</SpecialOffers>
</soap12:Body>
</soap12:Envelope>