DomainInfo
From NETIM
Release | Runtime |
---|---|
API > 1.0 | Synchronous |
Description
Returns all informations about a domain name
StructDomainInfo domainInfo(string idSession, string domain)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | domain | Domain name |
Return
An object StructDomainInfo containing the domain informations
Notes
None
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->login("XXXX", "XXXX","EN"); $StructDomainInfo = $clientSOAP->domainInfo($idSession, "netim.com"); print_r($StructDomainInfo); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if(isset($idSession)) { $clientSOAP->logout($idSession); } ?>
JAVA
DRSServiceLocator service = new DRSServiceLocator(); String idSession; StructDomainInfo structDomainInfo; try { DRSPortType port = service.getDRSPort(); idSession = port.login("XXXX", "XXXX", "EN"); structDomainInfo = port.domainInfo(idSession, "netim2108.at"); System.out.println(structDomainInfo.getDomain() +" "+ structDomainInfo.getDateCreate() +" "+ structDomainInfo.getDateExpiration()); port.logout(idSession); } catch (RemoteException re) { System.out.println(re.getMessage()); } catch (ServiceException se) { se.printStackTrace(); }