I am more than comfortable with PHP and OOP but I have a task to complete using WSDL and SOAP and I've never used these technologies before so I need some guidance if there is anyone out there that can help. I downloaded and installed XMLspy and I created a new SOAP request using the url I was given by the data provider. This resulted in the following XML:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.o… xmlns:SOAP-ENC="http://schemas.xmlsoap.o… xmlns:xsi="http://www.w3.org/2001/XMLSch… xmlns:xsd="http://www.w3.org/2001/XMLSch…
<SOAP-ENV:Body>
<m:EnquiryRequest xmlns:m="http://webservices.hpi.co.uk/Co…
<m:Authentication>
<m:ServiceVersion>
<m:MajorVersion>0</m:MajorVersion…
<m:MinorVersion>0</m:MinorVersion…
</m:ServiceVersion>
<m:SubscriberDetails>
<m:CustomerCode>a</m:CustomerCode…
<m:Initials>aa</m:Initials>
<m:Password>a</m:Password>
</m:SubscriberDetails>
</m:Authentication>
<m:Request>
<m:Asset>
<m:Vrm></m:Vrm>
<m:Vin></m:Vin>
<m:Mileage>0</m:Mileage>
<m:Reference>aaaaaaaaaa</m:Refere…
</m:Asset>
<m:PrimaryProduct>
<m:Code>String</m:Code>
</m:PrimaryProduct>
</m:Request>
</m:EnquiryRequest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
I have the account details necessary to fill the blanks above but how do I send a query to this data provider and what form will I receive the response in? A simple example would be really helpful pleeease.
Thanks in advance.