DomainInfo
From NETIM
(Difference between revisions)
m (Text replace - "API Version 1 (Recommended)" to "API Version 1 (Deprecated)") |
|||
(3 intermediate revisions by one user not shown) | |||
Line 3: | Line 3: | ||
<tabs> | <tabs> | ||
− | <tab name="API Version 2 ( | + | <tab name="API Version 2 (Recommended)"> |
{| class="wikitable" style="width: 200px;" | {| class="wikitable" style="width: 200px;" | ||
Line 53: | Line 53: | ||
try | try | ||
{ | { | ||
− | $idSession = $clientSOAP-> | + | $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX","EN"); |
$StructDomainInfo = $clientSOAP->domainInfo($idSession, "netim.com"); | $StructDomainInfo = $clientSOAP->domainInfo($idSession, "netim.com"); | ||
Line 65: | Line 65: | ||
if(isset($idSession)) | if(isset($idSession)) | ||
{ | { | ||
− | $clientSOAP-> | + | $clientSOAP->sessionClose($idSession); |
} | } | ||
?> | ?> | ||
</source > | </source > | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</tab> | </tab> | ||
− | <tab name="API Version 1 ( | + | <tab name="API Version 1 (Deprecated)"> |
{| class="wikitable" style="width: 200px;" | {| class="wikitable" style="width: 200px;" |
Latest revision as of 14:48, 2 August 2017
Release | Runtime |
---|---|
API >= 2.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
[edit] Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX","EN"); $StructDomainInfo = $clientSOAP->domainInfo($idSession, "netim.com"); print_r($StructDomainInfo); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if(isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>
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
[edit] 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(); }