HttpWebRequest request = (HttpWebRequest) WebRequest.Create(JournalServiceProxy.GetAppendOperationUri());
I've tried adding the following statement to the request client to force data flowing through fiddler proxy but no change in result.
request.Proxy = new WebProxy("http://127.0.0.1:8888/");
is there a post that covers what i'm overlooking?