Hi,
We're running nusoap as our webservices server.
We have a problem and we can't really test it, since the problem comes from a client using our webservices and we can't really know what SOAP client he's using and what is his code.
The problem:
We have a function that accept a parameter that is an Array..
Using nusoap as the client, this function receives the parameter like this (print_r() output):
Array
(
[0] => Array
(
[aaa] => hello
[bbb] => 111
[ccc] => -1
[ddd] => Array
(
)
)
)
|
When the problematic SOAP client calls the function, we received:
Array
(
[0] => Array
(
[aaa] => hello
[bbb] => 111
[ccc] => -1
[ddd] =>
)
[!SOAP-ENC:offset] => [0]
)
|
I have no idea what "[!SOAP-ENC:offset]" is but it seems it is
sometimes used.
Does nuSoap support this?
How should we deal with this? Just ignore the extra index?
Thank you
JL