Hi All,
I need to communicate with Amazon SQS and I could not find and examples/documentation anywhere with regard to Xojo. Has anybody done this before?
- Does anybody have an example class or just some sample code?
I’m quite new to Xojo and any help is much appreciated.
Thanks,
Isuru
There is no Xojo class/modules for Amazon SQS that I know of. So you will have to roll you own. I would look at http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/MakingRequestsArticle.html for references on what you need to do to make the calls to their API. It doesn’t use SOAP anymore but API calls using GET/POST. There is several examples that come with Xojo on doing GET/POST via HttpSocket and HttpSecureSocket.
good luck!