CARVIEW |
Select Language
HTTP/1.1 200 OK
Server: nginx
Date: Tue, 15 Jul 2025 23:08:11 GMT
Content-Type: text/html;charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
X-XQuery-Cached: true
Set-Cookie: JSESSIONID=node09g80mg4okbw614ybv7e9c2w7a832321.node0; Path=/exist
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Content-Security-Policy: frame-ancestors 'self'
Vary: Accept-Encoding, User-Agent
Content-Encoding: gzip
Get Order - Ascio API v3

Ascio Web Service v3
Java Axis GetOrder

GetOrderResponse GetOrder(SecurityHeaderDetails securityHeader,GetOrderRequest request)
Response codes
ResultCode | Message | Value |
---|---|---|
200 | OK | |
401 | Authorization failed | |
404 | Object not found | |
405 | Access denied | |
501 | Syntax error in parameters or arguments |
GetOrder Request
Property |
---|
request |
GetOrderResponse
Property | Description |
---|---|
GetOrderResult | |
OrderInfo | |
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 GetOrderExample {
public static GetOrderResponse main() {
AscioConfig config = new AscioConfig();
V3 env = config.getTesting().getV3();
GetOrderRequest request = new GetOrderRequest();
request.setOrderId("TEST123456");
try {
GetOrderResponse response = env.getClient().getOrder(request);
System.out.println("response\n");
System.out.println("GetOrder Code\t:" + response.getResultCode());
System.out.println("GetOrder 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 GetOrderResponse();package ascio.v3.examples;
import com.ascio.www._2013._02.*;
import ascio.lib.*;
public class GetOrderExample {
public static GetOrderResponse main() {
AscioConfig config = new AscioConfig();
V3 env = config.getTesting().getV3();
GetOrderRequest request = new GetOrderRequest();
request.setOrderId("TEST123456");
try {
GetOrderResponse response = env.getClient().getOrder(request);
System.out.println("response\n");
System.out.println("GetOrder Code\t:" + response.getResultCode());
System.out.println("GetOrder 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 GetOrderResponse();
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.