dfowler Posted October 24, 2008 Share Posted October 24, 2008 Hey guys, I am completely stuck. I can't figure out how to recreate the following: <con:Account CompanyID="2222222" TimeZone="ESTRN-BASE" ViewCompanyWebReport="true"></con:Account> I've tried doing something like this: $account_info = 'CompanyID="'.$compID.'" TimeZone="ESTRN-BASE" ViewCompanyWebReport="true"'; $account_value = new SOAP_VALUE('{'. Conferencing . '}Account', NULL, NULL, $account_info); But all that does is give me this on the output: <ns4:Account></ns4:Account> Does anybody know how to do this correctly? I've been on Google all day and I'm completely stuck. Thanks for any help. Link to comment https://forums.phpfreaks.com/topic/130005-pearsoap/ Share on other sites More sharing options...
dfowler Posted October 24, 2008 Author Share Posted October 24, 2008 I think I figured it out: $account_info = array( 'CompanyID' => $compID, 'TimeZone' => 'ESTRN-BASE', 'ViewCompanyWebReport' => 'true' ); Link to comment https://forums.phpfreaks.com/topic/130005-pearsoap/#findComment-674015 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.