Telerik Forums
Fiddler Forum
2 answers
1.0K+ views
I'm using fiddler to debug the http requests of a program that I'm currently writing. So I'm constantly closing and recompiling the program and get a different exe everytime. 
I tried the "Select process" feature, but it seems to get sticked to a specific PID, so I would have to select my program every time I run it again. 
The problem with that: My program does an http request right after it's started, so this isn't gonna work. 

So for now the best thing I can do is to set Fiddler to ignore browsers. But for some reason, some applications just send their traffic through Fiddler even though I haven't configured then to do so. 
For example Skype and TeamViewer do a lot of http requests in the background and while you download a game on Steam it gets really insane...

So how can blacklist Skype, TeamViewer and Steam? Or how can I simply disallow programs from using Fiddler without me allowing it?

Best regards,
Fabian W.
Fabian
Top achievements
Rank 1
 answered on 19 Sep 2014
1 answer
150 views

Hi ! I manage to capture the selected session in auto responder and manipulate the same URL offline.
The session I have is involved client and server , this is a game. I am here to ask some question.

A.) I have extracted the selection session in auto responder in Raw file. Mean (Dump all the file in my dekstop)
      I have try to launch the file in my dekstop but it does not allow me to play back the session, maybe there is a client and server involved.

B.) Can the Raw file created by Auto responder - move all the files to IIS2. I am running Windows 7 professional.


Eric Lawrence
Telerik team
 answered on 19 Sep 2014
14 answers
1.9K+ views
I'm tired of manually adding "dog" every time I search the web.

For example:

I do not want the "dog" appearing in my search results

https://www.google.com/search?q=cat+-dog

https://www.google.com/search?q=baseball+-dog

I'm new to Fiddler,So please give me a good hint.

Thanks
nasekt
Top achievements
Rank 1
 answered on 19 Sep 2014
1 answer
199 views
After installing the Fiddler Cert Maker plugin, I'm greeted by a warning when opening Fiddler that my software is out of date for the Cert Maker. The CM wants version 4.4.9.4 but the most recent one on the Fiddler site is 4.4.9.3.
Eric Lawrence
Telerik team
 answered on 18 Sep 2014
7 answers
2.0K+ views
I have an ASP.NET WebForms app (sender) which sends a WebClient post request to another ASP.NET app (receiver) on the same dev machine. The WebClient post is initiated by clicking a button in the sender app. It's a test app and the form has only the button. I can see the post from the button in Fiddler but I don't see the post request from the WebClient method. Why?

I know the WebClient post runs successfully because the breakpoint is hit in the receiver app and the Forms collection has the value of the input field from the WebClient request from the sender app. (Using Windows 8.1)

This is the call:

using (var client = new WebClient())
{
client.Headers[HttpRequestHeader.ContentType] = "application/x-www-form-urlencoded";
var data = "FirstName=John";
var result = client.UploadString("http://localhost/testform/default.aspx", "POST", data);
Console.WriteLine(result);
}
Tony
Top achievements
Rank 1
 answered on 18 Sep 2014
1 answer
367 views
Hi,

Is there a simple way to manipulate / replace elements in a XML document using FiddlerScript?

BR Pär 
Eric Lawrence
Telerik team
 answered on 17 Sep 2014
3 answers
251 views
Eric:

I tried Timer request following this topic: https://groups.google.com/forum/?fromgroups#!searchin/httpfiddler/reissue/httpfiddler/8r9Hop7LMXg/0GROyv2HXWwJ.
Everything is ok at first, it runs as expecting few days. Until this morning. The Timer started, but does not raise the tick!
What is mysterious is if I put a MessageBox following the oTimer.Start() and keep the MessageBox on, it runs quite normal. But once I click the OK button to turn off the MessageBox, the oTimer stop raising tick again.
The code looks like as following: 

static var oTimer: System.Windows.Forms.Timer;
static function TimerStart(){
   
oTimer = new System.Windows.Forms.Timer();
   oTimer.add_Tick( OnTimer );
   oTimer.Interval = 3000;
   oTimer.Start();
   MessageBox.Show(
'Timer Started: ' + oTimer.Interval.toString()  );
}

What the problem is it? What happened?
thx a lot!

Eric Lawrence
Telerik team
 answered on 16 Sep 2014
7 answers
359 views
the Exception info:


{System.TypeInitializationException: An exception was thrown by the type initializer for Fiddler.Proxy ---> System.EntryPointNotFoundException: GetTickCount64
  at (wrapper managed-to-native) Fiddler.Utilities:GetTickCount64 ()
  at Fiddler.Utilities.GetTickCount () [0x00000] in <filename unknown>:0 
  at Fiddler.PeriodicWorker+taskItem..ctor (Fiddler.SimpleEventHandler oTask, UInt32 iPeriod) [0x00000] in <filename unknown>:0 
  at Fiddler.PeriodicWorker.assignWork (Fiddler.SimpleEventHandler workFunction, UInt32 iMS) [0x00000] in <filename unknown>:0 
  at Fiddler.PipePool..ctor () [0x00000] in <filename unknown>:0 
  at Fiddler.Proxy..cctor () [0x00000] in <filename unknown>:0 
  --- End of inner exception stack trace ---
  at Fiddler.FiddlerApplication.Startup (Int32 iListenPort, FiddlerCoreStartupFlags oFlags) [0x00000] in <filename unknown>:0 
Data: Count=0
HResult: -2146233087
HelpLink: (null)
InnerException: {System.EntryPointNotFoundException: GetTickCount64
  at (wrapper managed-to-native) Fiddler.Utilities:GetTickCount64 ()
  at Fiddler.Utilities.GetTickCount () [0x00000] in <filename unknown>:0 
  at Fiddler.PeriodicWorker+taskItem..ctor (Fiddler.SimpleEventHandler oTask, UInt32 iPeriod) [0x00000] in <filename unknown>:0 
  at Fiddler.PeriodicWorker.assignWork (Fiddler.SimpleEventHandler workFunction, UInt32 iMS) [0x00000] in <filename unknown>:0 
  at Fiddler.PipePool..ctor () [0x00000] in <filename unknown>:0 
  at Fiddler.Proxy..cctor () [0x00000] in <filename unknown>:0 }
Message: "An exception was thrown by the type initializer for Fiddler.Proxy"
Source: "FiddlerCore4"
StackTrace: "  at Fiddler.FiddlerApplication.Startup (Int32 iListenPort, FiddlerCoreStartupFlags oFlags) [0x00000] in <filename unknown>:0 \n  at
TargetSite: {Void Startup(Int32, Fiddler.FiddlerCoreStartupFlags)}
TypeName: "Fiddler.Proxy"
Static members: 
Non-public members: 
Eric Lawrence
Telerik team
 answered on 15 Sep 2014
4 answers
121 views
Hello,
I would like to test the new version of FiddlerCore but when I want to build the new Sample AppDemo, I obtain some errors :

Le composant référencé 'Ionic.Zip.Reduced' est introuvable.

Le fichier de configuration de l'application "app.config" n'est pas valide. Impossible de trouver le fichier 'C:\Users\Desktop\FiddlerCoreAPI\SampleApp\app.config'.

Can you help me to fix this problems ? I have another question, what are the news with this new version ?
Thanks a lot.
Eric Lawrence
Telerik team
 answered on 15 Sep 2014
3 answers
386 views
How to hide the url in the address bar?, or rather make it fixed, like if someone searches for Bing or Google or Youtube the address bar should always show www.test.com. And no, I'm not talking about redirection.

Any ideas?How do I write the script?

Thank you
nasekt
Top achievements
Rank 1
 answered on 15 Sep 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?