Ascio Web Service v3

Java Axis CreateNameServer

Creating a name server object. The nameserverHandle will be returned in the nameServer object passed by reference.

CreateNameServerResponse CreateNameServer(SecurityHeaderDetails securityHeader,CreateNameServerRequest request)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
501Syntax error in parameters or arguments

CreateNameServer Request

Property
request

CreateNameServerResponse

PropertyDescription
CreateNameServerResult
NameServer
ResultCodeExample: 1
ResultMessage
Errors

Used in Classes

Java Axis example

package ascio.v3.examples;
import com.ascio.www._2013._02.*;
import ascio.lib.*;

public class CreateNameServerExample {
	public static CreateNameServerResponse main() {
		AscioConfig config = new AscioConfig();
		V3 env = config.getTesting().getV3();

		NameServer nameServer =  new NameServer();
		nameServer.setHandle("JD123");
		nameServer.setHostName("HostNameTest");
		nameServer.setIpAddress("IpAddressTest");
		nameServer.setIpV6Address("IpV6AddressTest");
		nameServer.setDetails("DetailsTest");

		CreateNameServerRequest request =  new CreateNameServerRequest();
		request.setNameServer(nameServer);

		try {
			CreateNameServerResponse response = env.getClient().createNameServer(request);			
			System.out.println("response\n");
			System.out.println("CreateNameServer Code\t:" + response.getResultCode());
			System.out.println("CreateNameServer 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 CreateNameServerResponse();package ascio.v3.examples;
import com.ascio.www._2013._02.*;
import ascio.lib.*;

public class CreateNameServerExample {
	public static CreateNameServerResponse main() {
		AscioConfig config = new AscioConfig();
		V3 env = config.getTesting().getV3();

		NameServer nameServer =  new NameServer();
		nameServer.setHandle("JD123");
		nameServer.setHostName("HostNameTest");
		nameServer.setIpAddress("IpAddressTest");
		nameServer.setIpV6Address("IpV6AddressTest");
		nameServer.setDetails("DetailsTest");

		CreateNameServerRequest request =  new CreateNameServerRequest();
		request.setNameServer(nameServer);

		try {
			CreateNameServerResponse response = env.getClient().createNameServer(request);			
			System.out.println("response\n");
			System.out.println("CreateNameServer Code\t:" + response.getResultCode());
			System.out.println("CreateNameServer 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 CreateNameServerResponse();
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.