我正在尝试使用 Azure 存储模拟器来处理 blob 存储。我似乎无法让它工作,并且浪费了一整天的时间尝试但没有成功。即使这是开发人员存储,我也会不断收到 403 禁止错误。我希望这里有人可以帮助我。
我之前曾在 Azure 上成功运行过同样的程序。然而,我的 3 个月试用期已过期,而我并没有真正使用它,现在我已经返回查看 Azure,我必须在存储模拟器上运行(在将连接字符串更改为开发存储之后)。
我将详细描述我所做的事情。
首先让我向您保证,我已经安装了所有必要的东西(我认为):
我同时拥有 Visual Studio 2012 Pro 和 Visual Studio 2012 Express for Web(免费)。我已经使用 Web 平台安装程序安装了 Azure 所需的其他东西。如果我查看添加/删除程序,我看到我有
- 适用于 Microsoft Visual Studio 2012 -v2.1 的 Windows Azure 工具
- 适用于 .NET -v2.1 的 Windows Azure 库
- Windows Azure 模拟器 -v2.1
- Windows Azure 创作工具 -v2.1
如果我愿意,我可以在 VS2012 中创建一个云项目,如果我这样做,它会在模拟器上成功启动。所以看来我的问题只是模拟器存储。
这是我所做的:
步骤1。
我创建了一个新的 ASP.NET MVC4 项目。我正在使用 .NET 框架 4.5。这将创建带有 HomeController.cs 和 AccountController.cs 的基本项目模板
第2步。
我使用 NuGet 获取“Windows Azure 存储”。我相信这会将 WindowsAzure.Storage.dll 版本 2.0.6.1 放在我的项目参考中。除此之外,我看到我的参考资料还包括 -Microsoft.WindowsAzure.Configuration v2.0.0.0 -Microsoft.WindowsAzure.Diagnostics v2.1.0.0 -Microsoft.WindowsAzure.ServiceRuntime v2.1.0.0 -Microsoft.WindowsAzure.StorageClient v1 .7.0.0
步骤 3。
在 Web.config 文件中,我在标签中添加以下标签
这基本上是每个人在使用模拟器时都应该使用的帐户名和密钥。
第4步。
在 HomeController.cs 我创建了一个动作。此操作应该在 Azure Blob 存储上创建一个容器,并将文件上传到它。这是代码。如您所见,它几乎是您在初学者示例中找到的标准代码
public ActionResult AddBlobToBlobContainerStorageEmulator()
{
// Retrieve storage account from connection string
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(ConfigurationManager.AppSettings["EmulatorStorageConnectionString"]);
// Create the blob client.
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
// Retrieve a reference to the previously created container.
CloudBlobContainer container = blobClient.GetContainerReference("myemulatortcont");
// Create the container if it doesn't already exist.
container.CreateIfNotExists();
// Retrieve reference to a blob named "mytestblob".
CloudBlockBlob blockBlob = container.GetBlockBlobReference("myemulatortestblob.jpg");
// Create or overwrite the "mytestblob" blob with contents from a local file.
using (var fileStream = System.IO.File.OpenRead(@"E:\TUTORIALS\Windows Azure\Azure NOTES and stuff\table.jpg"))
{
blockBlob.UploadFromStream(fileStream);
}
return Content("Blob uploaded to container on storage emulator");
}
步骤 5。
我确保计算模拟器已启动:开始 > 所有程序 > Windows Azure > 模拟器 > Windows Azure 计算模拟器
步骤 6。
就这样。我没有创建云项目或任何东西,所以当我运行它时,它将根据项目属性(也称为 IIS Express)在“本地 IIS Web 服务器”上运行。
现在我转到 Debug > Start Debugging,它会在浏览器窗口中按预期在 localhost:57810 启动站点。
如果我导航到
http://localhost:57810/Home/AddBlobToBlobContainerStorageEmulator
它应该触发我的 Action 方法。
相反,我看到
第 118 行是红色的......所以基本上无法创建容器。
有人可以告诉我这里出了什么问题。我是否需要以某种方式向开发存储模拟器添加一些权限?我不明白为什么它说禁止。
我想知道我的机器上是否有问题,或者 Azure 之间是否存在冲突。我的项目中的 dll 版本对于开发模拟器是否不正确?还是 v2.1 中存在错误?
我已经准确地解释了我是如何制作我的项目的,但如果有人想尝试运行它,我愿意上传整个东西。
感谢您提供任何帮助。