创建队列时Azure存储模拟器出错

时间:2017-03-10 09:01:36

标签: c# visual-studio azure azure-storage

创建cloudqueue时出错。在本地计算机中使用存储模拟器。

这是堆栈跟踪:

  at Microsoft.WindowsAzure.Storage.Core.Executor.Executor.ExecuteSync[T](RESTCommand`1 cmd, IRetryPolicy policy, OperationContext operationContext) in c:\Program Files (x86)\Jenkins\workspace\release_dotnet_master\Lib\ClassLibraryCommon\Core\Executor\Executor.cs:line 604
   at Microsoft.WindowsAzure.Storage.Queue.CloudQueue.Create(QueueRequestOptions options, OperationContext operationContext) in c:\Program Files (x86)\Jenkins\workspace\release_dotnet_master\Lib\ClassLibraryCommon\Queue\CloudQueue.cs:line 52
   at Microsoft.WindowsAzure.Storage.Queue.CloudQueue.CreateIfNotExists(QueueRequestOptions options, OperationContext operationContext) in c:\Program Files (x86)\Jenkins\workspace\release_dotnet_master\Lib\ClassLibraryCommon\Queue\CloudQueue.cs:line 176

enter image description here

编辑:队列名称为copyprojectqueue

结论:由于Gaurav评论说最新的库版本不支持旧版本的存储模拟器。

1 个答案:

答案 0 :(得分:0)

根据400错误,我认为queue name不正确。以下是该文档的摘录。

  

帐户中的每个队列都必须具有唯一的名称。队列名称必须是有效的DNS名称,并且一旦创建就无法更改。队列名称必须符合以下规则:

     

队列名称必须以字母或数字开头,并且只能包含字母,数字和短划线( - )字符。

     

队列名称中的第一个和最后一个字母必须是字母数字。短划线( - )字符不能是第一个或最后一个字符。队列名称中不允许使用连续的短划线字符。

     

队列名称中的所有字母必须为小写。

     

队列名称长度必须为3到63个字符。

其他相关信息:

Azure Storage Naming Rules