I’ve used this method 3-4 times before and never had an issue with this. I use “soapParam” to generate all those XML children for “serviceJobListRequest” and yet this time when I’m doing it, they parameters won’t nest under it like it always has before. I searched and searched for an answer for the last three days and cannot find anything like this.
this…
[php]
$result = $client->serviceJobList(new SoapParam($sourceSystemName, “sourceSystemName”));
[/php]
generates this…
[php]
ns1:serviceJobListRequest/
SourceTest
[/php]
instead of what it should…this
[php]
ns1:serviceJobListRequest
SourceTest
</ns1:serviceJobListRequest>
[/php]