Fiddler Reverse Proxy Issue

animanyac77

New Member
We are having an asp .net web application for front end hosted in IIS 7. I am trying to access it from a blackberry website (remote) within the same network connection. However all I see is this:
dAb8J.png
I have setup the reverse proxy in the file CustomRules.js like this:static function OnBeforeRequest(oSession: Session) {if(oSession.host.toLowerCase() == "xxx.xxx.xxx.xxx:8888") oSession.host = "127.0.0.1:80";....}where xxx.xxx.xxx.xxx is the ip address of my computer. Also even when I stop capturing traffic (File -> capture traffic) these messages just keep on coming.However when I use wireshark everything works fine and I can see the messages. But I want to use fiddler because I want to see the differences in the http request and responses when I browse the website locally and remotely. I have saved the fiddler sessions for local browsing already. But don't know what is happening here.ThanksV
 
Back
Top