Configuring Azure development storage for team development scenarios
By default the Azure development fabric is configured as follows:
•Blob Service: http://127.0.0.1:10000
•Queue Service: http://127.0.0.1:10001
•Table Service: http://127.0.0.1:10002
To access the Azure development storage from another machine, follow these steps:
1.Open the devstore configuration file ~Program Files\Windows Azure SDK\v1.3\bin\devstore\DSService.exe.config:
<services>
<service name="Blob" url="http://[IPAddress]:10000/"/>
<service name="Queue" url="http://[IPAddress]:10001/"/>
<service name="Table" url="http://[IPAddress]:10002/"/>
</services>
2.Update "IPAddress" tag of the Blob,Queue and Table URLs, pointing to the machine running the devstorage
<services>
<service name="Blob" url="http://202.75.100.89:10000/"/>
<service name="Queue" url="http://202.75.100.89:10001/"/>
<service name="Table" url="http://202.75.100.89:10002/"/>
</services>
3. Shutdown / Start the Development Fabric
The development teams are now in a position to access a shared dev storage from their local development environments
Note: Check the devstore on the remote machine is in a "Running" state before trying to access it from your application


