Fiddler not showing WinHttp.WinHttpRequest

729 views
Skip to first unread message

Karl Irvin

unread,
Apr 21, 2014, 5:41:33 PM4/21/14
to
Using Windows 7 and Microsoft Access VBA. Fiddler doesn't show the request and response. 

Dim MyRequest As WinHttp.WinHttpRequest
Set MyRequest = New WinHttpRequest
MyRequest.Open RequestMethod, URL
 MyRequest.send

This gets results from the URL. I just can't see the request and response in Fiddler.

The URL starts with 

I have set 
netsh winhttp set proxy 127.0.0.1:8888

Since I am using https, do I need to set something else?


EricLaw

unread,
Apr 21, 2014, 5:44:06 PM4/21/14
to
You need to set the proxy explicitly.

HTTPREQUEST_PROXYSETTING_PROXY     = 2;
MyRequest.SetProxy( HTTPREQUEST_PROXYSETTING_PROXY, "127.0.0.1:8888");
Reply all
Reply to author
Forward
0 new messages