Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Azure SDK for C++

Part of my project is worker application written in C++, running on Linux. I just find out that MS doesn't provide C++ version of Windows Azure SDK. I need to access Windows Azure Storage Queue.

Is there any C++ port of SDK? Is there any chance to use SDK from other language (i.e. python, node.js)? Or the best option is to use REST API?

like image 357
Ari Avatar asked Oct 05 '22 02:10

Ari


1 Answers

Microsoft released a preview of a C++ SDK for Azure; details are available here. Source code is on Github. The currently available preview doesn't compile out-of-the-box for Linux, but the changes required to make it work are pretty minimal.

like image 144
jzions Avatar answered Oct 16 '22 15:10

jzions