.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

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -