Question

Does anyone know if its possible to connect to Azure blob storage from a VB6 App and, if so, how would you do it?

I've got a CMS written in VB6 and I need to offer uploading images and files to the web server. The idea is that we'll store images and files in Azure blob storage but seeing how I'm not using the .Net framework how could I do it? If at all.

Thanks Steve

Was it helpful?

Solution

I might be completely off, but I think the easiest way to access Azure is from a web service that is actually running on Azure. So I would write a web service that's sitting on Azure and then hit the web service from VB6.

There are a number of libraries out there that allow you to access Web Services from VB6.

OTHER TIPS

A VB6 CMS that uses Azure? +1, Rock and roll!

I think I would write a .Net component to access the Blob storage, make it COM-visible, and call it from VB6 via COM.

Can't you just use a simple PUT via WinHTTPRequest, etc?

http://msdn.microsoft.com/en-us/library/dd179451.aspx

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top