I am trying to stop using TcpTrace and get started with Fiddler.
But I just canβt configure the violinist to just start listening to the specified port and redirect all requests to the specified WS with a different port.
All I want is to simply redirect and monitor all traffic from localhost: 4747 -> webservice-ip: 10000Is there a solution for my problem?
Thanks in advance.
Fiddler 4747, CustomRules.js (menu- > Rules- > Customize Rules). - OnBeforeRequest :
CustomRules.js
OnBeforeRequest
if (oSession.host=="localhost:4747") { oSession.host="external:1000"; }
, , Fiddler, ,
oSession.host="external:1000";
( external - )
external
Source: https://habr.com/ru/post/1765585/More articles:Visual Studio Report Designer only shows HTML - htmlHow can I install `Thread :: Pool` from CPAN? - moduleHow can I monitor the status of the GPS adapter using the Android SDK? - androidHow to automatically insert the last menu item in the right corner? - cssNSMutableArray arrayWithArray: vs initWithArray: - objective-cadding jQuery to an ASP.NET MVC application - jqueryAdding a command column to jqGrid in Asp.Net MVC - commandQt: Mobility GeoLocation works on Simulator, but not on N900 - qtGeneral approach for signing files without PE - signingFunction Modifier Order in C # - syntaxAll Articles