【发布时间】:2017-05-09 04:18:31
【问题描述】:
刚刚创建了一个包含以下详细信息的 Azure 存储帐户:
位置:英国西部
订阅:按需付费
性能/访问层:标准/热
复制:本地冗余存储 (LRS)
我做的第一件事是在F# FSI 中执行以下代码(用我的真实帐户名和帐户密钥代替 MyAccountName 和 MyAccountKey)。
open Microsoft.WindowsAzure.Storage
let connectionString = @"DefaultEndpointsProtocol=https;AccountName=MyAccountName;AccountKey=MyAccountKey"
CloudStorageAccount
.Parse(connectionString)
.CreateCloudTableClient()
.ListTables()
|> Seq.toArray
但我收到以下错误:
Microsoft.WindowsAzure.Storage.StorageException: The remote server returned an error: (501) Not Implemented. ---> System.Net.WebException: The remote server returned an error: (501) Not Implemented.
知道为什么吗?
【问题讨论】:
标签: f# azure-storage