Reputation: 4963
Is it possible to get the storage emulator to listen on every interface rather than the 127.0.0.1?
Upvotes: 4
Views: 1380
Reputation: 40012
You can get this to work by editing the relevant config files.
Refer to the following blog post:
Upvotes: 1
Reputation: 71
Not really. It is meant as a local simulator for local development. It is only meant for local use, and is not written or tested to be a network resource.
Upvotes: 1
Reputation: 30903
First off,
127.0.0.1 is IP Address not port! Than take a look at
%PROGRAMFILES%\Microsoft SDKs\Windows Azure\Emulator\devstore\DSServiceLDB.exe.config
it has configuration settings for all storage services. However, if you change the address of Storage Emulator, than you will no longer be able to use "usedevelopmentstorage=true" as your storage connection string. My personal advise is to not change the IP Address of storage emultator! Depending on the exact need for different IP Address, I would rather suggest testing/developing against real storage service.
Upvotes: 2