Im trying to stop using TcpTrace and start working with Fiddler.
But i just can't setup fiddler to just start listening specified port and redirect all requests to the specified WS with another port.
All i want is just redirect and monitor all traffic from localhost:4747 -> webservice-ip:10000
Is there any solution for my problem ?
Thanks in advance.
Set Fiddler to listen on port 4747, and then edit your
CustomRules.js(menu->Rules->Customize Rules). Putting something like this into theOnBeforeRequestmethod should help:if you want all traffic passing through Fiddler to go to the external host, you can simply use
(where
externalis the hostname of the external host)