Implementing a sequential web service call queue

5
Two Mendix applications exchange data via web services. I would like to implement a sequential web service call queue in case a web service isn't executed. Any tips how to realise a queueing web service call system?
asked
1 answers
6

Well, the simple answer is to simply create a "webservice call" metaobject which contains all the info needed for the call (I guess preferable raw XML data, one attribute for the header and one for the body) and then simply create a scheduled event which runs every x seconds and tries to fire off all the webservice calls.

When a call succeeds, delete the object. If it fails, leave it so that you can retry it with the next iteration.

answered