问题描述
- 如何验证连接Azure storage是否成功?
-
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString);
CloudTableClient tableClient = storageAccount.CreateCloudTableClient();connectionString里包含的是account和key信息,如何验证这个账户是否有效,因为我后期要往这个Azure账户里存数据。CloudTableClient里面有哪个API可以验证吗?
解决方案
补充一下:使用工具可以排除code中一切异常,不失为一个选择,当然code的方式也可以,如果account和key不正确的话,一般在下面的code就会出现异常,
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
CloudConfigurationManager.GetSetting("StorageConnectionString"));
还需要提醒一下,中国版Azure Storage的连接字符串可能和你查到的资料中不一样(国际版Azure),详细请阅读:http://www.cnblogs.com/ericwen/p/ChinaWindowsAzureStorageConnection.html
解决方案二:
Hi,
如果你需要验证connectionstring里的account和key是否有效的话,你可以借助一些Azure Storage的工具,这篇文章:http://blogs.msdn.com/b/windowsazurestorage/archive/2014/03/11/windows-azure-storage-explorers-2014.aspx提供了好几个工具,如果你是windows系统,你可以尝试使用Azure Storage Explorer,下载地址:http://azurestorageexplorer.codeplex.com/,下载成功把accout和key输入看是否能成功连接即可。
Best Regards,
Jambor
如果您想进一步了解Windows Azure, Windows Azure 官网欢迎您的访问
时间: 2024-12-21 13:19:32