1

我正在尝试使用经典 ASP 将文件上传到 Azure Blob 存储(别无选择!)。但是,尽管我可以使用 MSXML2.ServerXMLHTTP 列出容器内容,但我无法创建 blob。我需要用它来上传 PDF 文件,所以我使用 BlockBlob。

我相信我无法正确创建授权密钥。有没有人有在经典 ASP VBScript 中创建授权密钥的代码示例?我有类似下面的内容,但不知道如何在 Classic ASP 中生成密钥。

' replace with your account's settings
' setup the URL
baseUrl = "https://<myaccount>.blob.core.windows.net"

Set http = Server.CreateObject("MSXML2.ServerXMLHTTP")
PathUrl = baseUrl & "/test/myblob"
' setup the request and authorization
http.open "PUT", PathUrl , false  
'How do I generate this key from the headers and path using HMAC-SHA256 and my prim/sec account key
http.setRequestHeader "Authorization", "SharedKey <myaccount>:?????"
http.setRequestHeader "Date", "2011-6-16 9:22"
http.setRequestHeader "x-ms-date", "2011-06-16 9:22"
http.setRequestHeader "x-ms-version", "2009-09-19"
http.setRequestHeader "Content-Length", "11"
http.setRequestHeader "x-ms-blob-type","BlockBlob"
http.setRequestHeader  "Content-Type", "text/plain; charset=UTF-8"

postData = "hello world"

' send the POST data
http.send postData

' optionally write out the response if you need to check if it worked
 Response.Write http.responseText

我收到错误 AuthenticationFailedServer 无法对请求进行身份验证。确保 Authorization 标头的值正确形成,包括签名。

谢谢

格雷姆

4

2 回答 2

3

您必须实现此处定义的算法的等效项:

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

但是,如果可能的话,我推荐一种更简单的方法。我会让您的 ASP 应用程序向 .NET 应用程序发出一个 ASMX(或 WCF 等效调用),该应用程序返回一个生命周期较短(例如 10 分钟到期)的共享访问签名 (SAS)。只需传递您将上传的 PDF 的名称,并让它为您计算具有写入权限的签名。获得签名后,您可以简单地对它进行 PUT,而无需担心计算任何内容。如果 PDF 非常大(> 64MB),您将遇到需要担心分成块的问题,但对于较小的 PDF,您可以在 SAS 上执行非常简单的 PUT 操作而无需担心。

代码很简单:

var blobName = "foo.pdf"; //taken from ASP app

var blob = container.GetBlobReference(blobName);

var sas = blob.GetSharedAccessSignature(new SharedAccessPolicy()
{
    Permissions = SharedAccessPermissions.Write,
    SharedAccessExpiryTime = DateTime.AddMinutes(10)
});

在这种情况下,容器是您希望用户上传的任何地方。'sas' 变量将包含您需要发送的查询字符串部分。您只需要附加它(例如 blob.Uri.AbsoluteUri + sas)。

使用此解决方案,您的 ASP 应用程序不知道 Windows Azure blob 存储和详细信息,只有您的 .NET 应用程序需要知道密钥或如何计算 SAS。

于 2011-06-16T13:35:46.340 回答
-1

您可以使用简单的 C# 应用程序将文件上传到 Azure 存储。请参阅链接了解更多详情。< http://tuvian.wordpress.com/2011/06/24/how-to-upload-blob-to-azure-using-asp-net-tool-for-upload-files-to-azure-using-asp -netc/ >

于 2011-06-28T12:45:20.697 回答