Hi everybody!
I'm new in the world of SOAP and web services. I developed a server which returns a string extracted from a database in function of a client script's parameter.
My question is: is it possible to return an array to the client? How do I do that? I use this code to create the service:
$server->register("getPast",
array('year' => 'xsd:int'),
array('return' => 'xsd:string'),
'urn:stockquote',
'urn:stockquote#getPast');
So I guess I should put something like xsd:array but array is not a type in XML specification... So, are there other options?
Thank you for you attention