Re: SOAP differences between PHP and Perl

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Shane Caraveo wrote:

You need to use the SOAP_Value class:

$new = $soapclient->call('{http://soap.rps.com.com}updateSubscription',
$params = Array('WsSubscription' => new SOAP_Value($ret,'WsSubscription')));


or something like that.

this got it:


$new = $soapclient->call(
  'updateSubscription',
  $params = Array('WsSubscription' => new SOAP_Value(
    'WsSubscription',
    '{http://soap.rps.com.com/}WsSubscription',
    $ret)
  ),
  $options);

thanks!

maybe i should try to figure out WSDL after all...

-jsd-

--
PHP Soap Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Kernel Newbies]     [PHP Database]     [Yosemite]

  Powered by Linux