PEAR::SOAP Error
Posted: Mon Dec 01, 2003 8:28 am
Does anyone know what the following error means, when using the SOAP package from PEAR?
Here's my code:
Thanks Nunners
Is it my code - or the package?Warning: Missing argument 2 for login() in /usr/share/pear/SOAP/WSDL.php(580) : eval()'d code on line 238
Here's my code:
Code: Select all
<?php
require_once('SOAP/Client.php');
$wsdlurl = 'http://englandnet4.touchvision.co.uk/testenglandnetclass/service1.asmx?wsdl';
$WSDL = new SOAP_WSDL($wsdlurl);
$client = $WSDL->getProxy();
$params=array('UserName'=>'****','Password'=>'****');
$response = $client->Login($params);
?>