.net - Send associated Objects using SoapClient (PHP) -



.net - Send associated Objects using SoapClient (PHP) -

i want send object trough soapclient in php. how handle associations correctly? don't know if right format. on wcf side, null person.

lets want send person next construction (capitalized complex info types):

person --> personid --> name --> age --> gender --> address --> addressid --> street --> city --> country

this how have tried far...

$soapclient = getsoapclient(); $person = array( 'personid' => 123, 'name' => 'tom' 'age' => 45 'gender' => 'male', 'address' => array( 'addressid' => 424 'street' => 'washington street 2' 'city' => 'washington' 'country' => 'us' ) ); $soapclient->updateperson($person);

php .net wcf soap

Comments