Hi all,
I want to access the web service, but i dont know how can i?
Can any one guide and i've php code for accessing that need to just convert.
url: https://ip/webservice/Servicename.wsdl
From that i want to access the methods, but how do i?
The php code is:
<?php
$webservice_login = "loginid";
$webservice_key = "password";
$ipaddress = "ip";
$module = "servicename";
$client = new SOAPClient("https://".$ipaddress."/webservice/".$module.".wsdl",
array('location' => "https://".$ipaddress."/webservice/ws-srv.php?module=".$module,
'uri' => 'urn:".$module."',
'exceptions' => 0,
'encoding' => 'ISO-8859-1')
);
$sysinfo=$client->get_sy ...
Go to the complete details ...