Re: SOAP Call with multiple occurences of an element
- From: Jonathan Stein <jstein@xxxxxxxx>
- Date: Fri, 03 Oct 2008 12:25:04 +0200
Nick Vargish skrev:
$soapclient->SyncItems($params);
I can't find any "SyncItems" in the PHP SOAP extension. Are you using another SOAP library?
And why $soapCLIENT - it looks like the server side code?
Anyway, you might try using the stdClass object (http://php.net/manual/en/reserved.classes.php) to build your response structure.
$response = new stdClass();
$response->x = 'x';
$response->y[] = 'y1';
$repsonse->y[] = 'y2';
and so on...
Regards
Jonathan
.
- References:
- SOAP Call with multiple occurences of an element
- From: Nick Vargish
- SOAP Call with multiple occurences of an element
- Prev by Date: Re: SimpleXMLElement Object into array
- Next by Date: Re: Simple PHP script?
- Previous by thread: SOAP Call with multiple occurences of an element
- Next by thread: Re: SOAP Call with multiple occurences of an element
- Index(es):