Ascio Web Service v3

C# AutoInstallSslOrderRequest

Request 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

Please choose you the ProductCode from this list: SSL Certificates

The php classes can be downloaded here: PHP-Classes

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
OrderTypeRegister
requestAutoInstallSslOrderRequest

C# example

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

AutoInstallSsl autoInstallSsl =  new AutoInstallSsl();
autoInstallSsl.CommonName = "ascio-test-domain.com";
autoInstallSsl.CommonNameSpecified = true;
autoInstallSsl.ProductCode = "positivessl";
autoInstallSsl.ProductCodeSpecified = true;
autoInstallSsl.Email = email@email.com
autoInstallSsl.SanCount = 1;
autoInstallSsl.SanCountSpecified = true;
autoInstallSsl.ObjectComment = "Example Object Comment";
autoInstallSsl.ObjectCommentSpecified = true;

AutoInstallSslOrderRequest request =  new AutoInstallSslOrderRequest();
request.Type = OrderType.Register;
request.TypeSpecified = true;
request.Period = 1;
request.PeriodSpecified = true;
request.TransactionComment = "TransactionCommentTest";
request.TransactionCommentSpecified = true;
request.Comments = "RegistrarTag";
request.CommentsSpecified = 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.