Ascio Web Service v3

PHP 5 Classes GetDnsSecKey

Get a DnsSec Key by handle.

GetDnsSecKeyResponse GetDnsSecKey(SecurityHeaderDetails $securityHeader,GetDnsSecKeyRequest $request)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
501Invalid attribute name
505Syntax error in parameters or arguments
506Required attribute missing in request
506Search criteria must have at least one clause
506Required attribute missing in request
506Too many clauses
554Error during search

GetDnsSecKey Request

Property
request

GetDnsSecKeyResponse

PropertyDescription
GetDnsSecKeyResult
DnsSecKey
ResultCodeExample: 1
ResultMessage
Errors

Used in Classes

PHP 5 Classes example

<?php
namespace ascio\v3\examples;
require("../service/autoload.php");
require("../../lib/AscioConfig.php");
use ascio\v3 as ascio;
use ascio\lib as lib;
function getDnsSecKeyExample() {
	$config = new lib\Config();
	$env = $config->get("testing"); //testing or live
	$credentials = array("Account"=>$env->getAccount(), "Password" => $env->getPassword());
	$header = new \SoapHeader("http://www.ascio.com/2013/02","SecurityHeaderDetails", $credentials, false);
	$ascioClient	 = new ascio\AscioService(array("trace" => true),$env->getWsdl("v3"));
	$ascioClient->__setSoapHeaders($header);

	$request =  new ascio\GetDnsSecKeyRequest();
	$request->setHandle("JD123");
	try {
		 $response = $ascioClient->GetDnsSecKey(new ascio\GetDnsSecKey($request));
        } catch (\Exception $e) {
    		echo ("[".$e->faultcode . "] ". $e->faultstring);
	    	return;
        
        }
	$result = $response->GetDnsSecKeyResult;
	echo "Code: ".$result->getResultCode()."\n";
	echo "Message: ".$result->getResultMessage()."\n";  
	return $result;
}
getDnsSecKeyExample();
WSDL for AWS v3
https://aws.demo.ascio.com/v3/aws.wsdl (OTE)
https://aws.ascio.com/v3/aws.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.