2

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

Steve
  • 251
  • 4
  • 10

3 Answers3

2

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.

Community
  • 1
  • 1
MarkJ
  • 30,070
  • 5
  • 68
  • 111
1

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.

AngryHacker
  • 59,598
  • 102
  • 325
  • 594
  • Would I be able to upload files and view files from within the blob storage via a webservice though? – Steve Dec 10 '10 at 10:06
  • @Steve, I don't see why not. You could use this one as your starting point: http://weblogs.asp.net/cfranklin/archive/2006/01/29/436838.aspx – AngryHacker Dec 10 '10 at 18:34
0

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

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

Bob77
  • 13,167
  • 1
  • 29
  • 37