Tag: 蓝色的azure storage

Blob容器创buildexception

每次我尝试为blob创build一个容器时,都会收到一个exception 使用下面的代码 CloudStorageAccount storageAccInfo; CloudBlobClient blobStorageType; CloudBlobContainer ContBlob; blobStorageType = storageAccInfo.CreateCloudBlobClient(); //then I initialize storageAccInfo ContBlob = blobStorageType.GetContainerReference(containerName); //everything fine till here ; next line creates an exception ContBlob.CreateIfNotExist(); Microsoft.WindowsAzure.StorageClient.StorageClientException was unhandled Message="One of the request inputs is out of range." Source="Microsoft.WindowsAzure.StorageClient" StackTrace: at Microsoft.WindowsAzure.StorageClient.Tasks.Task`1.get_Result() at Microsoft.WindowsAzure.StorageClient.Tasks.Task`1.ExecuteAndWait() at Microsoft.WindowsAzure.StorageClient.TaskImplHelper.ExecuteImplWithRetry[T](Func`2 impl, RetryPolicy policy) at Microsoft.WindowsAzure.StorageClient.CloudBlobContainer.CreateIfNotExist(BlobRequestOptions options) […]

无法加载文件或程序集“msshrtmi”或其某个依赖项(Azure表存储访问)

我有一个HTTPModule,用于在我的数据中心网站和运行在Azure平台上的网站之间redirectstream量。 此HTTPModule从Azure表存储中检索其redirect规则。 在本地开发机器上以及在Azure上运行时,redirect都能正常工作。 但是,当我将模块部署到我的数据中心服务器(IIS 7,WS 2008 R2标准64位,.NET 4.0,ASP.NET 4.0)时收到以下错误 Parser Error Message: Could not load file or assembly 'msshrtmi' or one of its dependencies. An attempt was made to load a program with an incorrect format. Line 124: <add assembly="System.Web.DynamicData, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> Line 125: <add assembly="System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> Line 126: <add assembly="*" […]

如何过滤Azure日志或WCF数据服务filter的傻瓜

我正在查看WADLogsTable中的Azure日志,并希望过滤结果,但是我不知道如何去做。 有一个文本框,说: “input一个WCF数据服务filter来限制返回的实体” 什么是“WCF数据服务filter”的语法? 以下给我一个InvalidValueType错误说:“指定的值是无效的。”: Timestamp gt '2011-04-20T00:00' 我甚至closures? 是否有方便的语法参考?

如何在不编写自己的程序的情况下将某个file upload到Azure blob存储?

我创build了一个Azure存储帐户。 我有一个400兆字节的.zip文件,我想把它放到blob存储中供以后使用。 我怎么能不写代码呢? 有一些接口吗?

Azure表Vs Azure上的MongoDB

我想在Windows Azure上使用NoSQL数据库,数据量将非常大。 使用Workerangular色运行的Azure表存储或MongoDB数据库是否可以提供更好的性能和可伸缩性? 有没有人使用工作者angular色在Azure上使用MongoDB? 请分享您在Azure上使用Azure上的MongoDB的想法。

如何删除包含租用blob的Azure存储帐户?

我正在玩Windows Azure持久的虚拟机。 最后,我删除了虚拟机(成功),并试图删除关联的存储帐户。 删除存储帐户的请求失败。 在预览门户(manage.windowsazure.com)上删除存储帐户时出现此错误: Failed to delete Storage account 'portalvhdscwtwycpsxxxxx' Details: Storage account portalvhdscwtwycpsxxxxx has 1 container(s) which have an active image and/or disk artifacts. Ensure those artifacts are removed from the image repository before deleting this storage account. 在以前的门户(windows.azure.com)我得到这个错误: Submit Failed Storage account portalvhdscwtwycpsxxxxx has 1 container(s) which have an active image and/or […]