
I want to read messages from an azure service bus queue or post messages to a queue from x++. There is documentation on how to do this in different languages but there doesn't seem to be anything for X++ except for 2012 but the architecture is different with Dynamics 365 for Operations now that AIF is gone. I could create a library in C# but I would prefer not to if possible. Thanks for any suggestions or references.
*This post is locked for comments
I have the same question (0)Hi NCL3,
In the current version all standard interaction with Azure Queues, Azure Storage and other Azure stuff done through c# libraries and x++ juts calls them, so what stops you ? It's just easier to do this in c sharp because x++ does not have required libraries to call Azure APIs and you will end up with x++ calls to standard c# libraries and a pain because x++ does not support generics and so on.
I have done x++ class that works with Azure File Storage https://github.com/Ievgenm/AX-7-Extensions/tree/master/SysAzureFileStorageClient and it looks ugly, but if you really want to have something similar just take same approach with Azure Bus API.