Using fiddler with Azure devstorage

Posted by Lasse on December 15, 2009 at 2:06 pm.

If you need to inspect your developmentstorage traffic with Fiddler, then add DevelopmentStorageProxyUri=http://ipv4.fiddler to your connection string:

1
2
3
4
5
6
<configuration>
  <appSettings>
    <add key="AzureConnectionString"
      value="UseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://ipv4.fiddler" />
  </appSettings>
</configuration>

Comments are closed.