QueryZoneList
From NETIM
Release |
---|
API >= 2.0 |
Description
Returns all DNS records of a domain name
StructQueryZoneList[] queryZoneList(string idSession, string domain)
Perimeter
Applies only to domain names
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | domain | Domain name |
Return
An array of StructQueryZoneList
Notes
None
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); $ArrayZoneList = $clientSOAP->queryZoneList($idSession, "netim.com"); print_r($ArrayZoneList); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if (isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>
Release | Runtime |
---|---|
API >= 1.0 | Synchronous |
Description
Returns all DNS records of a domain name
StructQueryZoneList[] queryZoneList(string idSession, string domain)
Perimeter
Applies only to domain names
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | domain | Domain name |
Return
An array of StructQueryZoneList
Notes
None
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); $ArrayZoneList = $clientSOAP->queryZoneList($idSession, "netim.com"); print_r($ArrayZoneList); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if (isset($idSession)) { $clientSOAP->logout($idSession); } ?>
JAVA
DRSServiceLocator service = new DRSServiceLocator(); String idSession; StructOptionsZone structOptionsZone; StructQueryZoneList[] arrayStructQueryZoneList; try { DRSPortType port = service.getDRSPort(); idSession = port.login("XXXX", "XXXX", "EN"); arrayStructQueryZoneList = port.queryZoneList(idSession, "netim.com"); for (int i=0; i < arrayStructQueryZoneList.length; i++) { System.out.println(arrayStructQueryZoneList[i].getHost()+" "+arrayStructQueryZoneList[i].getType()+" "+arrayStructQueryZoneList[i].getValue()); structOptionsZone = arrayStructQueryZoneList[i].getOptions(); System.out.println(structOptionsZone.getService() +" "+ structOptionsZone.getProtocol() +" "+ structOptionsZone.getTtl() +" "+ structOptionsZone.getPriority() +" "+ structOptionsZone.getWeight() +" "+ structOptionsZone.getPort() +"\n"); } port.logout(idSession); } catch (RemoteException re) { System.out.println(re.getMessage()); } catch (ServiceException se) { se.printStackTrace(); }