Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

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

I think better way than REST API is to use node.js SDK like below - http://www.windowsazure.com/en-us/develop/nodejs/how-to-guides/queue-service/ - http://d.hatena.ne.jp/waritohutsu/20120212/1329021441

share|improve this answer
Thanks, but I don't think that using node.js code from C++ is better way than using raw REST API (basing on others sdks source code) – Ari Feb 12 at 10:34
up vote 0 down vote accepted

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.