Posts
28
Comments
77
Trackbacks
0
Azure Local Storage Endpoints

I’m constantly having to search for the local development storage endpoint Uris when I create a new Azure storage project from scratch, not to mention the account name and shared key, so I’m posting them here for my own reference.  Hopefully others will also find it useful.

   1: <ConfigurationSettings>
   2:         <Setting name="AccountName" 
   3:             value="devstoreaccount1"/>
   4:         <Setting name="AccountSharedKey" 
   5:             value="Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw=="/>
   6:         <Setting name="BlobStorageEndpoint" 
   7:             value="http://127.0.0.1:10000/"/>
   8:         <Setting name="QueueStorageEndpoint" 
   9:             value="http://127.0.0.1:100001/"/>
  10:         <Setting name="TableStorageEndpoint" 
  11:             value="http://127.0.0.1:10002/"/>
  12: </ConfigurationSettings>
posted on Tuesday, May 12, 2009 9:40 AM Print
Comments
No comments posted yet.

Post Comment

Title *
Name *
Email
Url
Comment *  
 
News
Comment and opinions are my own and do not reflect on my company in any way.