Trouble viewing Azure DocumentDB DocumentClient traffic in fiddler -
i'm having trouble viewing viewing communications azure documentdb .net sdk documentclient in fiddler.
edit: specifically, don't see traffic when i'm querying documents. see document creation posts.
i have no filters operating in fiddler , code create 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 connection policy although think default gateway.
any ideas or insights?
thanks, chris.
are iterating through results in query? nature, linq iqueryables use deferred execution: http://blogs.msdn.com/b/charlie/archive/2007/12/09/deferred-execution.aspx.
another possibility if you're looking post in fiddler trace, note in 1 specific case (a query no filters), query executed operation instead of post.
if post code, might further.
Comments
Post a Comment