Ascio Web Service v3
Java Axis AutoInstallSslOrderRequest
Makes the SSL installation automated with CPanel, Plesk
Please choose you the ProductCode from this list: SSL Certificates
The php classes can be downloaded here: PHP-Classes
Request an AutoInstallSSL token.

AutoInstallSslOrderRequestResponse AutoInstallSslOrderRequest(SecurityHeaderDetails securityHeader,AutoInstallSslOrderRequestRequest request)Response codes
| ResultCode | Message | Value |
|---|---|---|
| 200 | OK | |
| 401 | Authorization failed | |
| 501 | Syntax error in parameters or arguments | |
| 506 | Required attribute missing in request |
AutoInstallSslOrderRequest Request
| Property | Description |
|---|---|
| AutoInstallSsl | |
| Type | Example: "owner" |
| Period | Example: 1 |
| TransactionComment | |
| Comments | Example: "RegistrarTag" |
| Documentation | |
| Options |
Used in Classes
| Property | Value |
| OrderType | Register |
|---|---|
| request | AutoInstallSslOrderRequest |
Java Axis example
package ascio.v3.examples;
import com.ascio.www._2013._02.*;
import ascio.lib.*;
public class RegisterAutoInstallSslOrderRequestExample {
public static CreateOrderResponse main() {
AscioConfig config = new AscioConfig();
V3 env = config.getTesting().getV3();
AutoInstallSsl autoInstallSsl = new AutoInstallSsl();
autoInstallSsl.setCommonName("ascio-test-domain.com");
autoInstallSsl.setProductCode("positivessl");
autoInstallSsl.setEmail(config.getEmail());
autoInstallSsl.setSanCount(1);
autoInstallSsl.setObjectComment("Example Object Comment");
AutoInstallSslOrderRequest request = new AutoInstallSslOrderRequest();
request.setType(OrderType.Register);
request.setPeriod(1);
request.setTransactionComment("TransactionCommentTest");
request.setComments("RegistrarTag");
request.setAutoInstallSsl(autoInstallSsl);
try {
CreateOrderResponse response = env.getClient().createOrder(request);
System.out.println("response\n");
System.out.println("CreateOrder Code\t:" + response.getResultCode());
System.out.println("CreateOrder Message\t: " + response.getResultMessage());
System.out.println("Created OrderId : "+response.getOrderInfo().getOrderId());
if(response.getResultCode() > 200){
for(String error : response.getErrors()) {
System.out.print(error);
}
}
return response;
} catch (Exception e) {
System.out.print(e);
}
return new CreateOrderResponse();package ascio.v3.examples;
import com.ascio.www._2013._02.*;
import ascio.lib.*;
public class RegisterAutoInstallSslOrderRequestExample {
public static CreateOrderResponse main() {
AscioConfig config = new AscioConfig();
V3 env = config.getTesting().getV3();
AutoInstallSsl autoInstallSsl = new AutoInstallSsl();
autoInstallSsl.setCommonName("ascio-test-domain.com");
autoInstallSsl.setProductCode("positivessl");
autoInstallSsl.setEmail(config.getEmail());
autoInstallSsl.setSanCount(1);
autoInstallSsl.setObjectComment("Example Object Comment");
AutoInstallSslOrderRequest request = new AutoInstallSslOrderRequest();
request.setType(OrderType.Register);
request.setPeriod(1);
request.setTransactionComment("TransactionCommentTest");
request.setComments("RegistrarTag");
request.setAutoInstallSsl(autoInstallSsl);
try {
CreateOrderResponse response = env.getClient().createOrder(request);
System.out.println("response\n");
System.out.println("CreateOrder Code\t:" + response.getResultCode());
System.out.println("CreateOrder Message\t: " + response.getResultMessage());
System.out.println("Created OrderId : "+response.getOrderInfo().getOrderId());
if(response.getResultCode() > 200){
for(String error : response.getErrors()) {
System.out.print(error);
}
}
return response;
} catch (Exception e) {
System.out.print(e);
}
return new CreateOrderResponse();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.