I'm having trouble viewing viewing the communications from the Azure DocumentDB .NET SDK DocumentClient in Fiddler.
Edit: Specifically, I don't see traffic when i'm querying for documents. I see document creation POSTs.
I have no filters operating in fiddler and this is my code to create the client:
var endpointUri = new Uri(Settings.Default.Endpoint);
_client = new DocumentClient(endpointUri, Settings.Default.AuthKey, new ConnectionPolicy
{
ConnectionMode = ConnectionMode.Gateway,
ConnectionProtocol = Protocol.Https
});
I've explicitly set the connection policy although I think the default is gateway.
Any ideas or insights?
Thanks, Chris.