iis - How to access Azure Storage Emulator (Local) over wifi? -



iis - How to access Azure Storage Emulator (Local) over wifi? -

i next info in documentation access azure storage emulator (locally)

http://msdn.microsoft.com/en-us/library/azure/hh403989.aspx

in storage emulator, because local computer not perform domain name resolution, business relationship name part of uri path. uri scheme resource running in storage emulator follows format:

http://<local-machine-address>:<port>/<account-name>/<resource-path>

the next format used addressing resources running in storage emulator:

blob service:

http://127.0.0.1:10000/<account-name>/<resource-path>

queue service:

http://127.0.0.1:10001/<account-name>/<resource-path>

table service:

http://127.0.0.1:10002/<account-name>/<resource-path>

for example, next address might used accessing blob in storage emulator:

http://127.0.0.1:10000/myaccount/mycontainer/myblob.txt

it works fine if seek access running on computer, illustration local iis server etc, that's because has access 127.0.0.1 on pc

but if seek access mobile device on same wifi network ?

i can access local iis servers mobile device going applicationhost.config , binding local iis server computer lan ip illustration 192.168.1.5 etc

any thought how can binding azure storage emulator ? i.e. how expose lan ?

thanks

the local emulation services not intended remote access. recall reports of folks setting "loop back" connections help enable this. imho, in cases easier , more cost affective run services in cloud. helps avoid issues differences between cloud , on-premises.

if @ doing mobile device development... spend several hours trying set loopback. if set cost on this... $25/hr.. , spent 3 hours setting up. spent $75 build out. comparison, have used same $75 our dev against cloud storage business relationship improve part of year.

iis azure windows-azure-storage azure-storage-blobs azure-storage-emulator

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -