hi there i am new on the forum and here is my first post.
In my project i have to use php nusoap to access DDR (wsdl).
It is my first connection with such project and i do not know exactly how to do.
Here is my code:
require_once("lib/nusoap.php");
$client = new
nusoap_client('https://somedomain/DDRservice.wsdl',"wsdl"); $client->loadWSDL();
$login = array( 'userName' =>
'my_userName', 'my_password' => 'password');
$CreateSession = $client->call('Login',$login); $sessionID =
$CreateSession['LoginResult'];
$branchList =
$client->call('GetBranchList',array('sessionID'=>$sessionID
));
$branchAuctionDates = $client->call('GetAuctionDateListByBranch',
array('branchcode'=>$branchID, 'sessionID'=>$sessionID));
First of all i am interesting if i am doing right. and what should i do to get data.
Thanks in advance.