Ascio Web Service v3
Java Axis GetDnsSecKey
GetDnsSecKeyResponse GetDnsSecKey(SecurityHeaderDetails securityHeader,GetDnsSecKeyRequest request)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
501 | Invalid attribute name | |
505 | Syntax error in parameters or arguments | |
506 | Required attribute missing in request | |
506 | Search criteria must have at least one clause | |
506 | Required attribute missing in request | |
506 | Too many clauses | |
554 | Error during search |
GetDnsSecKey Request
Property |
---|
request |
GetDnsSecKeyResponse
Property | Description |
---|---|
GetDnsSecKeyResult | |
DnsSecKey | |
ResultCode | Example: 1 |
ResultMessage | |
Errors |
Used in Classes
Java Axis example
package ascio.v3.examples;
import com.ascio.www._2013._02.*;
import ascio.lib.*;
public class GetDnsSecKeyExample {
public static GetDnsSecKeyResponse main() {
AscioConfig config = new AscioConfig();
V3 env = config.getTesting().getV3();
GetDnsSecKeyRequest request = new GetDnsSecKeyRequest();
request.setHandle("JD123");
try {
GetDnsSecKeyResponse response = env.getClient().getDnsSecKey(request);
System.out.println("response\n");
System.out.println("GetDnsSecKey Code\t:" + response.getResultCode());
System.out.println("GetDnsSecKey Message\t: " + response.getResultMessage());
if(response.getResultCode() > 200){
for(String error : response.getErrors()) {
System.out.print(error);
}
}
return response;
} catch (Exception e) {
System.out.print(e);
}
return new GetDnsSecKeyResponse();package ascio.v3.examples;
import com.ascio.www._2013._02.*;
import ascio.lib.*;
public class GetDnsSecKeyExample {
public static GetDnsSecKeyResponse main() {
AscioConfig config = new AscioConfig();
V3 env = config.getTesting().getV3();
GetDnsSecKeyRequest request = new GetDnsSecKeyRequest();
request.setHandle("JD123");
try {
GetDnsSecKeyResponse response = env.getClient().getDnsSecKey(request);
System.out.println("response\n");
System.out.println("GetDnsSecKey Code\t:" + response.getResultCode());
System.out.println("GetDnsSecKey Message\t: " + response.getResultMessage());
if(response.getResultCode() > 200){
for(String error : response.getErrors()) {
System.out.print(error);
}
}
return response;
} catch (Exception e) {
System.out.print(e);
}
return new GetDnsSecKeyResponse();
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.
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.