0

Azure File Service プレビューを、クラウド サービスの 2 つのインスタンス間でマップされたドライブとして使用しようとしていますが、次のブログ投稿に詳細が記載されています。

http://blogs.msdn.com/b/windowsazurestorage/archive/2014/05/12/introducing-microsoft-azure-file-service.aspx?CommentPosted=true#commentmessage

ストレージ アカウントのプレビュー バージョンにサインアップし、新しいストレージ アカウントを作成して、ファイル エンドポイントが含まれていることを確認しました。次に、次のコードを使用して、プログラムで共有を作成しようとします。

CloudStorageAccount account = CloudStorageAccount.Parse(System.Configuration.ConfigurationManager.AppSettings["SecondaryStorageConnectionString"].ToString());
CloudFileClient client = account.CreateCloudFileClient();
CloudFileShare share = client.GetShareReference("SCORM");
try
{
  share.CreateIfNotExistsAsync().Wait();
}
catch (AggregateException e)
{
  var test = e.Message;
  var test1 = e.InnerException.Message;
}

CreateIfNotExistsAsync().Wait() メソッドで Aggregate 例外が発生しました。内部の詳細を見ると、リモート サーバーがエラーを返しました: (400) Bad Request.

4

1 に答える 1