开发者

deploying Azure webrole to the cloud, but dont understand dataconnection string (for queues)

开发者 https://www.devze.com 2023-02-09 22:26 出处:网络
I have written and successfully deployed a test app to the azure cloud, but I am lost now that I have added a queue to the application.

I have written and successfully deployed a test app to the azure cloud, but I am lost now that I have added a queue to the application.

Currently I using a configuration string:

Setting name="DataConnectionString" value="UseDevelopmentStorage=true" 

then create/open the queue with the following code:

var storageAccount = CloudStorageAccount.FromConfigurationSetting("DataConnectionString");
var queueClient = storageAccount.CreateCloudQueueClient();
var queue = queueClient.GetQueueReference("messagequeue");
queue.CreateIfNotExist();

This works fine in local mode, however, I do not undertsand how to change the DataConnectionString to use the cloud!

I have tried:

Setting name="DataConnectionString" value="DefaultEndpointsProtocol=http;AccountName=*XXXXX*;AccountKey=*YYYYY*"

but this does not work - it wont run l开发者_开发技巧ocally. Help is certainly appreciated!

Thanks


You'll need to make sure you've created a hosted azure storage service via the Windows Azure portal. When creating the storage service, you provide the account name and the system will assign two keys. Use these two values in your connection string settings. You can either manually edit the string in the service configuration, or my preferred approach is to set it via the role's property settings. Simply right click on the role in the cloud service project in visual studio, then select properties. You'll be able to access the role's settings via one of the tabs. Use the provided dialog box to modify the connection string by inputing the account name and connection string for your storage service.

0

精彩评论

暂无评论...
验证码 换一张
取 消