Ascio Web Service v2
NodeJS PollMessage

Response PollMessage(string sessionId,MessageType msgType)Response codes
| ResultCode | Message | Value |
|---|---|---|
| 200 | Ack to dequeue | |
| 200 | No messages | |
| 401 | Authorization failed |
PollMessage Request
| Property | Description |
|---|---|
| sessionId | Example: o58t9fjgw9bjarp6q7byv13e |
| msgType | Normally this is "Message to Partner". |
PollMessageResponse
| Property | Description |
|---|---|
| PollMessageResult | |
| msgCount | Example: 1 |
| item |
NodeJS example
var soap = require("soap");
var pollMessageExample = function(callback) {
soap.createClient("../AscioServiceTest.wsdl", function(err, client) {
if(err) {
callback(err);
}
else {
client.PollMessage({sessionId: "sessionId", {MessageType :" Message_to_Partner"}, function(err,result) {
if(err) {
callback({error: err, request : result.request.body});
} else {
if(result.PollMessageResult.ResultCode < 400) {
callback(null,result);
} else {
callback({error: result.PollMessageResult,request : request});
}
}
});
};
});
};
pollMessageExample(function(err,result) {
if(err) {
console.log("\n\n Request \n\n",err.request, "\n\n Response \n\n" ,err.error,"\n");
}
else {
console.log(result);
}
});WSDL for AWS v2
https://aws.demo.ascio.com/2012/01/01/AscioService.wsdl (OTE)
https://aws.ascio.com/2012/01/01/AscioService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.
https://aws.demo.ascio.com/2012/01/01/AscioService.wsdl (OTE)
https://aws.ascio.com/2012/01/01/AscioService.wsdl (Live)
Please configure the IP-Whitelisting in the portal/demo-portal.