Hi guys
I use Fiddler to monitor traffic on our router using my own spare laptop as a server. However I often end up with memory exceptions due to 'updates' on the host server machine. How do I amend the settings so it captures the external data I have it set up for (which works well) but not my 'host' machine (which i don't need) or is this not possible?? . I am not 'that' teccy , so simple terms please of go to......., click........ etc would be helpful and appreciated.
I wonder if there's JMeter extension for import/export sessions to/from Fiddler?
If not, is it in the roadmap/future plan?
Currently only export to HAR file and convert HAR to JMX is available.

when run "mono Fiddler.exe", i am getting below error, any idea?
WARNING: The Carbon driver has not been ported to 64bits, and very few parts of Windows.Forms will work properly, or at all
exception inside UnhandledException handler: The type initializer for 'Fiddler.CONFIG' threw an exception.
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeInitializationException: The type initializer for 'System.Windows.Forms.WindowsFormsSynchronizationContext' threw an exception. ---> System.TypeInitializationException: The type initializer for 'System.Windows.Forms.ThemeEngine' threw an exception. ---> System.TypeInitializationException: The type initializer for 'System.Windows.Forms.ThemeWin32Classic' threw an exception. ---> System.TypeInitializationException: The type initializer for 'System.Drawing.KnownColors' threw an exception. ---> System.TypeInitializationException: The type initializer for 'System.Drawing.GDIPlus' threw an exception. ---> System.DllNotFoundException: libgdiplus.dylib
at (wrapper managed-to-native) System.Drawing.GDIPlus:GdiplusStartup (ulong&,System.Drawing.GdiplusStartupInput&,System.Drawing.GdiplusStartupOutput&)
at System.Drawing.GDIPlus..cctor () <0x109dba840 + 0x001d5> in <filename unknown>:0
--- End of inner exception stack trace ---
at System.Drawing.KnownColors..cctor () <0x109dba5a0 + 0x00064> in <filename unknown>:0
--- End of inner exception stack trace ---
at System.Drawing.Color.get_Black () <0x10a8ca4e0 + 0x0001e> in <filename unknown>:0
at System.Windows.Forms.ThemeWin32Classic..cctor () <0x10a8ca3d0 + 0x00015> in <filename unknown>:0
--- End of inner exception stack trace ---
at System.Windows.Forms.ThemeVisualStyles..ctor () <0x10a8ca2f0 + 0x00014> in <filename unknown>:0
at System.Windows.Forms.ThemeEngine..cctor () <0x10a8ca1d0 + 0x0008f> in <filename unknown>:0
--- End of inner exception stack trace ---
at System.Windows.Forms.SystemInformation.get_MenuAccessKeysUnderlined () <0x10a8c9da0 + 0x00010> in <filename unknown>:0
at System.Windows.Forms.Control..ctor () <0x10a8c86e0 + 0x00288> in <filename unknown>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:.ctor ()
at System.Windows.Forms.WindowsFormsSynchronizationContext..cctor () <0x10a8c9c90 + 0x00031> in <filename unknown>:0
--- End of inner exception stack trace ---
at System.Windows.Forms.Control..ctor () <0x10a8c86e0 + 0x0005e> in <filename unknown>:0
at System.Windows.Forms.ScrollableControl..ctor () <0x10a8c8080 + 0x00017> in <filename unknown>:0
at System.Windows.Forms.ContainerControl..ctor () <0x10a8c7ea0 + 0x0002d> in <filename unknown>:0
at System.Windows.Forms.Form..ctor () <0x10a8c7510 + 0x000f9> in <filename unknown>:0
at ...ctor () <0x10a8c5080 + 0x0002d> in <filename unknown>:0
at (wrapper remoting-invoke-with-check) .:.ctor ()
at Fiddler.frmViewer. (System.String[] ) <0x109db3870 + 0x00136> in <filename unknown>:0
at Fiddler.frmViewer. (System.String[] ) <0x109db2da0 + 0x0009b> in <filename unknown>:0
Browsing to the api https://api.binance.com/api/v1/time returns the appropiate JSON data while using fiddlers composer with standard settings (also tried no proxy) returns 502.
HTTP/1.1 502 Fiddler - Connection Failed
Is there a obvious problem with https that I am missing? Thanks in advance
https://i.imgur.com/FUkEeRs.png

Hi,
I am trying to get the HTTP/WS Calls from the browser driver using the proxy. I have configured chrome driver to use the proxy as shown below.
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
// Create a new proxy object and set the proxy
Proxy proxy = new Proxy();
proxy.setHttpProxy("localhost:8888");
proxy.setSslProxy("localhost:8888");
//Add the proxy to our capabilities
capabilities.setCapability("proxy", proxy);
//Start a new ChromeDriver using the capabilities object we created and added the proxy to
driver = new ChromeDriver(capabilities);
If Fiddler is opened in my machine, it captures all the calls from the driver and i can export the calls manually.
Is there any API for Java to interact with Fiddler so that I can start Fiddler before my execution starts and Export the Calls as HAR whenever I need and Close Fiddler once my execution gets complete.
I found a jar Fiddler 2.3.3 in Maven repo but I don't know the usage of this jar.
https://mvnrepository.com/artifact/org.apache.river/fiddler/2.2.3
can anyone help me on this?
Share me the java code samples to interact with Fiddler.

Hello,
is it possible to redirect traffic with fiddler from "https://one.servername" to "http://another.servername"
I tried to add next to FiddlerScript:
if(oSession.HostnameIs("servername.com") && oSession.isHTTPS){
oSession.hostname="another.servername.com";
}
And it redirects but to HTTPS and not HTTP. Is there a way to set oSession to HTTP? or any other way to handle that redirection?
Thank you.
Hi, I have the following scenario:
Open Chrome browser in proxy using Selenium WebDriver (Selenium 3.9.1, Latest versions of Chrome and ChromeDriver).
Navigate to the page https://www.playbuzz.com/termsofuse
Navigate to the page https://www.playbuzz.com/stephanganev10/which-old-school-dating-show-would-you-have-totally-won
When I navigate to the second page, FiddlerCore doesn't capture any HTTP traffic. If I open Fiddler application, I also don't see any HTTP traffic captured.
However, when I open this page without proxy, I can see all the HTTP traffic.
Can anyone please help me?
Thanks
Hi
When i test our domain URLs with Fiddler I get a 502 error for the pages. Although the pages do exist. If i then test them in Screaming Frog i get the correct status code 200. Has anyone any idea why this could be happening?
Could it be something to do with Akamai and the Bot Manager blocking Fiddler?
Thanks
Mark