Tuesday 30 October 2012

Windows Azure Storage URLs

Following on from the previous post about accessing the Azure Storage Emulator, you would also need to know what the actual endpoint URLs are.


The following URL formats are used for addressing resources running on Azure and on the storage emulator:

Blob Service

Emulator - http://127.0.0.1:10000/storageaccount/
Azure - http://storageaccount.blob.core.windows.net/

Queue Service

Emulator - http://127.0.0.1:10001/storageaccount/
Azure - http://storageaccount.queue.core.windows.net/

Table Service

Emulator - http://127.0.0.1:10002/storageaccount/
Azure - http://storageaccount.table.core.windows.net/

For your emulator, the "storageaccount" is always "devstoreaccount1".

The "storageaccount" value for Azure is whatever you created. The name is always lowercase and cannot contain spaces or special characters.

0 comments:

About Me