|
Posted by Treefrog on 05/05/06 17:36
Hi,
I'm having a bit of trouble with NuSOAP. I'm calling a web method that
looks like this (excuse the strange sytax)
public testItem GetTestItem (int aNumber, testObjects[])
So, I need to create NuSOAP call like this.
$arguments = array("aNumber" => 10,"testObjects" => $testObjects);
$data = $this->callAPI('GetTestItem', $arguments);
BUT... nusoap creates the soap request like
<testObjects>
<item>
..... test object contents
</item>
<item>
.... test object contents
</item>
</testObject>
which is incorrect.
How do I get it do properly define
<testObjects>
<testObject>...</testObject>
<testObject>...</testObject>
</textObjects>
I hope that makes sense.
Cheers,
Treefrog
[Back to original message]
|