Ascio DNS

PHP 5 SearchZone

Searches for zones and returns data.

Search for a zone by name by properties and wildcards. eg. Zones with a Record target that is ascio*. ZoneInfoLevel specifies the amount of returned data.

Response SearchZone(SearchZone $searchZone)

Response codes

ResultCodeMessageValue
200OK
400Parameter value error - Null or invalid value
401Authorization failed
416Validation failed
204No results found

SearchZone Request

Property
searchZoneClauses
zoneInfoLevel

SearchZoneResponse

Property
SearchZoneResult
zones

PHP 5 example

<?php
$wsdl = "https://dnsservice.demo.ascio.com/2010/10/30/DnsService.wsdl";
//$wsdl = "https://dnsservice.ascio.com/2010/10/30/DnsService.wsdl";
$client = new SoapClient($wsdl,array( "trace" => 1, "soap_version" => SOAP_1_1));
$headers = []; 
$headers[] = new SoapHeader($ns,"UserName", "user");
$headers[] = new SoapHeader($ns, "Password", "password");
$client->__setSoapHeaders($headers);
//SearchZoneClause

$searchZoneClause =  [
	"Operator" => "Is",
	"SearchZoneField" => "ZoneName",
	"Value" => "Mr."
];
//ArrayOfSearchZoneClause

$searchZoneClauses =  [
	"SearchZoneClause" => [$searchZoneClause]
];
//SearchZone

$searchZone =  [
	"searchZoneClauses" => $searchZoneClauses,
	"zoneInfoLevel" => "Basic"
];
try{	
    $result = $client->searchZone($searchZone);
    echo "ResultCode : ".$result->SearchZoneResult->ResultCode."\r\n";
    echo "ResultMessage : ".$result->SearchZoneResult->ResultMessage."\r\n";
    if(is_array($result->SearchZoneResult->Errors->string)) {
        echo "Errors:\r\n";
        foreach($result->SearchZoneResult->Errors->string as $key => $value) {
            echo " - " . $value."\r\n";
        }
    }
} catch(Exception $e) {
	echo $e->getMessage(); 
}

WSDL AscioDns
https://dnsservice.demo.ascio.com/2010/10/30/DnsService.wsdl (OTE)
https://dnsservice.ascio.com/2010/10/30/DnsService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.