We are coding a client in PHP. We're not having any problems with
anything else so our headers, etc. and endpoints are correct. But I
can't figure out how to structure this in my PHP function.
This is what the body of my request should look like:
==============
> <soapenv:Body>
> <v3:getRangeDefinitions>
> <v3:rangeDefinitionRequest>
> <!--Optional:-->
> <v3:market>US</v3:market>
> <!--Optional:-->
> <v3:rangeName>
> <!--Zero or more repetitions:-->
> <v3:RangeNameType>Searches</v3:RangeNameType>
> </v3:rangeName>
> </v3:rangeDefinitionRequest>
> </v3:getRangeDefinitions>
> </soapenv:Body>
==============
How would I structure this in PHP?
I have tried many different things with no luck.
This is what I have now, but it doesn't work:
========================
$rangeParam = array('rangeDefinitionRequest' => array('market'
=> $market,'rangeName' => array('RangeNameType' => $range_names)));
==============
Thanks in advance for any help anyone can offer.
.