Quantcast
Channel: Telerik Forums RSS
Viewing all articles
Browse latest Browse all 84751

Fiddler listens 8888 but can send any responce to 8888 ?

$
0
0
Hi, Murat--

think you're asking: "How can I configure things so that my program can load http://127.0.0.1:8888/?target=http://example.com/page and Fiddler will download the requested page and send it back to my program as the response"? 

Is that what you're asking?

If so, the task is pretty simple; you'd click Rules > Customize Rules. Scroll to OnBeforeRequest and add code inside it like:

   // If request targeted to Fiddler, change URL to the value of the TARGET= url parameter
   if (oSession.host == "127.0.0.1:8888") 
   {
     oSession.fullUrl = oSession.fullUrl.Substring(oSession.fullUrl.IndexOf("target=")+7);
   }


Regards,
Eric Lawrence
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items

Viewing all articles
Browse latest Browse all 84751

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>