Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to port a c++ native code program onto azure. So far I've gotten it to sort of work by exporting the C++ program as a .dll and calling it with a webrole similar to this tutorial http://msdn.microsoft.com/en-us/wazplatformtrainingcourse_windowsazurenativecodevs2010_topic2

The thing is, the native code reads local files using ifstream.

Is there a way I can get the native code to read files from the blob storage in azure?

Thanks.

this question How to access an azure storage blob as if it were a local file? seems like it would answer my issue, except the answer doesn't really make sense to me...

share|improve this question

closed as not constructive by Will Dec 12 '12 at 1:57

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

Not sure if you are still interested in accessing Azure storage with C++, but the Microsoft team has been working on this for the last several months. Check out the Casablanca libraries on DevLabs.

http://msdn.microsoft.com/en-us/devlabs/casablanca

share|improve this answer

The scalable way would be to download the blob, process it and then maybe upload the result back. It would require minimal extra code.

share|improve this answer
Thanks for responding. Do you think you can go slightly more in depth with what you're saying? I would like to run the program in azure, and I have gotten the native code to run in azure. I am not sure what you mean by downloading the blob. Can you somehow download the blob so that azure can access it more locally or something? – Haoyang Aug 15 '11 at 23:24
@Haoyang Sure, you can use CloudBlob.DownloadToFile() (msdn.microsoft.com/en-us/library/…) to download the data from the blob to a local file and then feed that file to your program as if nothing happened. – sharptooth Aug 16 '11 at 5:47

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