DomainZoneCreate
From NETIM
(Difference between revisions)
m (Text replace - "−>" to "->") |
|||
Line 74: | Line 74: | ||
try | try | ||
{ | { | ||
− | $idSession = $ | + | $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); |
− | $trackingID = $ | + | $trackingID = $clientSOAP->domainZoneCreate($idSession, "netim.com", "www", "A", "192.168.0.1", $structOptionsZone); |
echo($trackingID); | echo($trackingID); | ||
Line 81: | Line 81: | ||
catch(SoapFault $fault) | catch(SoapFault $fault) | ||
{ | { | ||
− | echo "Exception : " .$ | + | echo "Exception : " .$fault->getMessage(). "\n"; |
} | } | ||
if (isset($idSession)) | if (isset($idSession)) | ||
{ | { | ||
− | $ | + | $clientSOAP->logout($idSession); |
} | } | ||
?> | ?> |
Revision as of 11:09, 2 October 2013
Release | Runtime |
---|---|
API > 1.0 | Synchronous |
Description
Creates a DNS record into the domain zonefile
int domainZoneCreate(string idSession, string domain, string subdomain, string type, string value, StructOptionsZone options)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | domain | Domain name | |
string (255) | subdomain | Sub domain | |
string | type | Type of DNS record | A / AAAA / MX / CNAME / TXT / NS / SRV |
string (150) | value | Value of the new DNS record | |
StructOptionsZone | options | Settings of the new DNS record |
List of DNS record types and acceptable values
Type | Value |
---|---|
A | IPv4 Address |
AAAA | IPv6 Address |
MX | fully qualified domain name of the mailserver |
CNAME | fully qualified domain name |
NS | fully qualified domain name of the DNS server |
Return
A tracking number
Notes
none
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); $structOptionsZone = array(); try { $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); $trackingID = $clientSOAP->domainZoneCreate($idSession, "netim.com", "www", "A", "192.168.0.1", $structOptionsZone); echo($trackingID); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if (isset($idSession)) { $clientSOAP->logout($idSession); } ?>
JAVA
DRSServiceLocator service = new DRSServiceLocator(); String idSession; int trackingID; StructOptionsZone structOptionsZone = new StructOptionsZone(); try { DRSPortType port = service.getDRSPort(); idSession = port.login("XXXX", "XXXX", "EN"); trackingID = port.domainZoneCreate(idSession, "netim.com", "www", "A", "192.168.0.1", structOptionsZone); System.out.println(trackingID); port.logout(idSession); } catch (RemoteException re) { System.out.println(re.getMessage()); } catch (ServiceException se) { se.printStackTrace(); }