PHP Example
<?php
$clientSOAP = new SoapClient("http://drs.netim.com/1.0/DRS.wsdl");
try
{
$IDSession = $clientSOAP−>login("XXXX", "XXXX","EN");
$strWhois = $clientSOAP−>domainWhois($IDSession, "netim.com");
echo($strWhois);
}
catch(SoapFault $fault)
{
echo "Exception : " .$fault−>getMessage(). "\n";
}
if(isset($IDSession))
$clientSOAP−>logout($IDSession);
?>
JAVA Example
DRSServiceLocator service = new DRSServiceLocator();
String idSession, strWhois;
try
{
DRSPortType port = service.getDRSPort();
idSession = port.login("XXXX", "XXXX", "EN");
strWhois = port.domainWhois(idSession, "netim.com");
System.out.println(strWhois);
port.logout(idSession);
}
catch (RemoteException re)
{
System.out.println(re.getMessage());
}
catch (ServiceException se)
{
se.printStackTrace();
}
C# Example
Non disponible


Returns the information of the domain name published in the Whois database of the registry or the registrar
Signature
string domainWhois(string IDSession, string domain)
Parameters
Return
Returns the result in a string.