I've never used SOAP before (lets just get that out of the way) and I'm running into one hurdle, accessing the data in the response:
stdClass Object
(
[GetAllDomainsResult] => stdClass Object
(
[Result] => 1
[ResultCode] => 0
[Message] =>
[DomainNames] => stdClass Object
(
[string] => domainexample.com
)
)
)
$client is my SOAP instance
I've tried:
$client->GetAllDomainsResult->DomainNames;
and other variations but I can't seem to get that string value...
lil help for the SOAP newb :p
Thanks