DomainWebFwdDelete
From FranceDNS
Release | Runtime |
---|---|
API >= 2.0 | Synchronous |
Description
Removes a web forwarding
StructOperationResponse domainWebFwdDelete(string idSession, string fqdn)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | fqdn | Hostname | fully qualified domain name |
Return
A structure StructOperationResponse
Notes
None
Examples
Langage PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); $StructOperationResponse = $clientSOAP->domainWebFwdDelete($idSession, "subdomain.francedns.com"); print_r($StructOperationResponse); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if (isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>
Release | Runtime |
---|---|
API > 1.0 | Synchronous |
Description
Removes a web forwarding
int domainWebFwdDelete(string idSession, string fqdn)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | fqdn | Hostname | fully qualified domain name |
Return
A tracking ID
Notes
None
Examples
Langage PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->login("XXXX", "XXXX", "EN"); $trackingID = $clientSOAP->domainWebFwdDelete($idSession, "subdomain.francedns.com"); 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; try { DRSPortType port = service.getDRSPort(); idSession = port.login("XXXX", "XXXX", "EN"); trackingID = port.domainWebFwdDelete(idSession, "subdomain.francedns.com"); System.out.println(trackingID); port.logout(idSession); } catch (RemoteException re) { System.out.println(re.getMessage()); } catch (ServiceException se) { se.printStackTrace(); }