Ascio Web Service v3

C# AutoInstallSslOrderRequest

Renew an AutoInstallSSL token.

Makes the SSL installation automated with CPanel, Plesk

  • Generation of CSR and private keys
  • Approval process
  • Installation of the certificate on the webserver

AutoInstallSslOrderRequestResponse AutoInstallSslOrderRequest(SecurityHeaderDetails securityHeader,AutoInstallSslOrderRequestRequest request)

Response codes

ResultCodeMessageValue
200OK
401Authorization failed
501Syntax error in parameters or arguments
506Required attribute missing in request

AutoInstallSslOrderRequest Request

PropertyDescription
AutoInstallSsl
TypeExample: "owner"
PeriodExample: 1
TransactionComment
CommentsExample: "RegistrarTag"
Documentation
Options

Used in Classes

PropertyValue
OrderTypeRenew
requestAutoInstallSslOrderRequest

C# example

AscioServices services = new ServiceReference1.AscioServiceClient();
SecurityHeaderDetails securityHeader = new SecurityHeaderDetails();
securityHeader.Account = "username";
securityHeader.Password = "password";

AutoInstallSsl autoInstallSsl =  new AutoInstallSsl();
autoInstallSsl.Handle = "JD123";
autoInstallSsl.HandleSpecified = true;

AutoInstallSslOrderRequest request =  new AutoInstallSslOrderRequest();
request.Type = OrderType.Renew;
request.TypeSpecified = true;
request.Period = 1;
request.PeriodSpecified = true;
request.TransactionComment = "TransactionCommentTest";
request.TransactionCommentSpecified = true;
request.AutoInstallSsl = autoInstallSsl;
CreateOrderResponse response = services.CreateOrder(securityHeader, request);
if (response.ResultCode == 200) {
	Console.WriteLine("My new orderId is : " + request.OrderInfo.OrderId);
} else {
	if (response.Errors != null) {
		Console.WriteLine(String.Join(",", response.Errors));
	}
	Console.WriteLine(response.ResultMessage)
}
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.