从 VB6 应用程序访问 Azure Blob 存储
有谁知道是否可以从 VB6 应用程序连接到 Azure blob 存储,如果可以,你会怎么做?
我有一个用 VB6 编写的 CMS,我需要提供将图像和文件上传到网络服务器的功能。我们的想法是,我们将图像和文件存储在 Azure blob 存储中,但看到我没有使用 .Net 框架,我该怎么做呢?如果有的话。
谢谢 史蒂夫
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Azure 的 VB6 CMS? +1,摇滚!
我想我会编写一个 .Net 组件 访问 Blob 存储,使其 COM -visible,并通过 COM 从 VB6 调用它。
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.
我可能完全不在意,但我认为访问 Azure 的最简单方法是通过实际在 Azure 上运行的 Web 服务。因此,我会编写一个位于 Azure 上的 Web 服务,然后从 VB6 访问该 Web 服务。
有许多库允许您从 VB6 访问 Web 服务。
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.
难道不能通过 WinHTTPRequest 等使用简单的 PUT 吗?
http://msdn.microsoft.com/en-us/library/dd179451.aspx
Can't you just use a simple PUT via WinHTTPRequest, etc?
http://msdn.microsoft.com/en-us/library/dd179451.aspx