Hi all,
I'm using NuSOAP to try to connect to this WS:
<?php
$wsdl="http://www1.ccni.cl/WS_CT/services/WsCt/wsdl/WsCt.wsdl";
$client=new soapclient($wsdl, 'wsdl');
//$param=array('int1'=>'15.00', 'int2'=>'10');
$params = array(
'LoginCode' => "SQM",
'Cargos' => array ("Cargo" => "ITGOA18435")
);
$result = $client->call('doWork', $params);
print_r($result);
?>
But it return the follow error:
Array (
[faultcode] => Server.generalException
[faultstring] => java.lang.NullPointerException
[detail] =>
)
And I can't connect. I try to connect from website's like:
http://www.mindreef.net/ and it work perfect.
Any help to solve this issue, will be very nice. Thanks in advanced.
--
Esteban
--
PHP Soap Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php