Windows Azure SDK for C ++

Part of my project is a worker application written in C ++ that runs on Linux. I just found out that MS does not provide the C ++ version of the Windows Azure SDK. I need to access the Windows Azure Storage Queue.

Is there a C ++ SDK port? Is it possible to use the SDK from another language (i.e. Python, node.js)? Or is the best option to use a REST API?

+4
source share
3 answers

Casablanca is preparing a library for Linux / C ++. Check out http://casablanca.codeplex.com/wikipage?title=Linux%20Features&referringTitle=FAQ

+1
source

Microsoft has released a preview of the C ++ SDK for Azure; Details are available here . The source code is on Github . The current preview does not compile ready for Linux, but the changes necessary for its operation are quite minimal.

+2
source

You can use Windows Azure Storage through many langueage SDKs - http://blog.smarx.com/posts/windows-azure-storage-libraries-in-many-languages

I think it's better than the REST API to use the node.js SDK as shown below - http://www.windowsazure.com/en-us/develop/nodejs/how-to-guides/queue-service/ - http : //d.hatena.ne.jp/waritohutsu/20120212/1329021441

0
source

All Articles