DomainInfo
From NETIM
(Difference between revisions)
(Pushed from Centre de support - FranceDNS.) |
|||
Line 1: | Line 1: | ||
− | [[Category: | + | [[Category:Functions]] |
{| class="wikitable" style="width: 200px;" | {| class="wikitable" style="width: 200px;" | ||
− | ! | + | ! Release |
− | ! | + | ! Runtime |
|- | |- | ||
− | |API > 1.0|| | + | |API > 1.0|| Synchronous |
|} | |} | ||
Line 10: | Line 10: | ||
'''Description''' | '''Description''' | ||
− | + | Returns all informations relating to a domain name | |
[[StructDomainInfo]] domainInfo(string idSession, string domain) | [[StructDomainInfo]] domainInfo(string idSession, string domain) | ||
Line 16: | Line 16: | ||
− | ''' | + | '''Parameters''' |
{| class="wikitable" style="width: 700px;" | {| class="wikitable" style="width: 700px;" | ||
! Format | ! Format | ||
Line 23: | Line 23: | ||
! Notes | ! Notes | ||
|- | |- | ||
− | |style="width: 100px;" | string (32)|| style="width: 150px;" | idSession || style="width: 150px" | | + | |style="width: 100px;" | string (32)|| style="width: 150px;" | idSession || style="width: 150px" | Session ID || style="width: 300px" | |
|- | |- | ||
− | |string (255)|| domain || | + | |string (255)|| domain || Domain name || |
|} | |} | ||
− | ''' | + | '''Return''' |
− | + | An object [[StructDomainInfo]] containing the domain information | |
'''Notes''' | '''Notes''' | ||
− | + | None | |
− | |||
− | ''' | + | == Examples == |
+ | |||
+ | ''' PHP ''' | ||
<source lang="php"> | <source lang="php"> | ||
<?php | <?php | ||
Line 65: | Line 66: | ||
− | ''' | + | ''' JAVA''' |
<source lang="java"> | <source lang="java"> | ||
DRSServiceLocator service = new DRSServiceLocator(); | DRSServiceLocator service = new DRSServiceLocator(); |
Revision as of 13:23, 17 July 2013
Release | Runtime |
---|---|
API > 1.0 | Synchronous |
Description
Returns all informations relating to 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 information
Notes
None
Examples
PHP
<?php $clientSOAP = new SoapClient("http://drs.netim.com/1.4/DRS.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(); }