「azure Webアプリケーション」を開発しています。
次のように、WebRole に drive および drivePath 静的メンバーを作成しました。
public static CloudDrive drive = null;
public static string drivePath = "";
次のように、WebRole.OnStart に開発用ストレージ ドライブを作成しました。
LocalResource azureDriveCache = RoleEnvironment.GetLocalResource("cache");
CloudDrive.InitializeCache(azureDriveCache.RootPath, azureDriveCache.MaximumSizeInMegabytes);
CloudStorageAccount.SetConfigurationSettingPublisher((configName, configSetter) =>
{
// for a console app, reading from App.config
//configSetter(ConfigurationManager.AppSettings[configName]);
// OR, if running in the Windows Azure environment
configSetter(RoleEnvironment.GetConfigurationSettingValue(configName));
});
CloudStorageAccount account = CloudStorageAccount.DevelopmentStorageAccount;
CloudBlobClient blobClient = account.CreateCloudBlobClient();
blobClient.GetContainerReference("drives").CreateIfNotExist();
drive = account.CreateCloudDrive(
blobClient
.GetContainerReference("drives")
.GetPageBlobReference("mysupercooldrive.vhd")
.Uri.ToString()
);
try
{
drive.Create(64);
}
catch (CloudDriveException ex)
{
// handle exception here
// exception is also thrown if all is well but the drive already exists
}
string path = drive.Mount(azureDriveCache.MaximumSizeInMegabytes, DriveMountOptions.None);
IDictionary<String, Uri> listDrives = Microsoft.WindowsAzure.StorageClient.CloudDrive.GetMountedDrives();
drivePath = path;
実行スコープが WebRole.OnStart に残るまで、ドライブは表示され、アクセス可能な状態を保ちます。実行スコープが WebRole.OnStart を離れるとすぐに、ドライブはアプリケーションから使用できなくなり、静的メンバーはリセットされます (drivePath が "" に設定されるなど)。
いくつかの構成またはその他のエラーがありませんか?