我正在遵循本指南: http://azure.microsoft.com/en-us/documentation/articles/storage-dotnet-how-to-use-tables/
但是,我在步骤如何:创建表格时遇到了问题。
首先,我创建了名为tablestoragetest0
的存储空间。
我成功获得了一个TableClient:
string ConnectionString = "DefaultEndpointsProtocol=https;AccountName=tablestoragetest0;AccountKey=xxxxxxxx";
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(ConnectionString);
var tableClient = storageAccount.CreateCloudTableClient();
但是当我尝试创建一个表时:
CloudTable table = tableClient.GetTableReference("TestTable");
table.CreateIfNotExists();
我得到以下异常:
无法解析远程名称: 'tablestoragetest0.table.core.windows.net'
感谢任何帮助。
答案 0 :(得分:0)
我能够重现您在我在西欧地区创建的存储帐户所遇到的错误。表服务出错,而不是blob服务。似乎Azure层面正在发生一些事情。