I'm using PHP SoapClient to consume a webservice..

Everything is working fine when service parameters are simple and something like $client->GetProductById(array('productId' => 'ID')); does the trick...

but one of the services that I need to access to, requires more complex parameters.. I've used SoapUI to test the webservice, and with SoapUI I can easily make it work..

The problem is that I can't make it work with PHP SoapClient, I simply can't find a way to represent all those parameters..

The Soap message that is sent to the server is this (copied from SoapUI)

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:slps="http://www.microsoft.com/slps/">
<soapenv:Header/>
<soapenv:Body>
    <slps:GetLicensesByFilter>
         <slps:filter>
            <slps:ExcludeCommercial>false</slps:ExcludeCommercial>
            <slps:ExcludeTrial>false</slps:ExcludeTrial>
            <slps:IssueDateRange>
           <slps:End>2011-12-31T00:00:00.000Z</slps:End><slps:Start>2011-11-01T00:00:00.000Z</slps:Start>
            </slps:IssueDateRange>
            <slps:ProductId>1275b704-7622-c2xx-922e-76186497f744</slps:ProductId>
            <slps:SkuId>A35138F43-0119-0719-802a-B48CCE6229A4</slps:SkuId>
         </slps:filter>
     <slps:retrievalOptions>LicenseInfo</slps:retrievalOptions><slps:pageIndex>0</slps:pageIndex>
  </slps:GetLicensesByFilter>
</soapenv:Body>
</soapenv:Envelope>

edit: Finally I got it ;)

Probably not the best approach but it works, I've followed a tip that a user left in PHP forums..basicaly I had to create some classes to represent the parameters structure, and then when I had to use the 'classmap' option of SoapClient to map that WSDL type into my PHP classes...

link|improve this question

20% accept rate
What have you tried so far? – Dmitri Snytkine Dec 1 '11 at 21:27
I do the same solution as the author found out. – Ismael Dec 5 '11 at 18:13
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.