Hi!
I'm trying to figure out how to structure data properly in PHP in order to make a SOAP XML request like this:
<typ:saveRequest locationName="example.com">
<typ:datatype owner="ME" class="OPEN">
<typ:order>1</typ:order>
<typ:datavalue>[email protected]</typ:datavalue>
</typ:datatype>
</typ:saveRequest>
The PHP function looks like this:
$this->soapclient->saveRecord($dataparams);
How do I structure $dataparams to fit the above saveRequest? ie, something like:
$dataparams= array(
'locationName' => $domain,
...
);