.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

Popular posts from this blog

maven fortify plugin : Unable to load build session with ID XXXXX .. See log file for more details -

c# - Primavera WebServices does not return any data -

android - Display emoji panel with genymotion - keyboard/touch input? -