fiddler

IE does not display a .NET Windows Form control.

I have an identical asp.net application hosted on two computers, PC1 and PC3 on the intranet. The .NET control is hosted using the object tag. The following three url when executed on PC1 work properly: http://pc1/test/test.aspx (The other two urls have pc1 replaced with pc3 and localhost) All three urls in IE v8 show the page with t...

Linux-alternative to Fiddler2

I have used Fiddler2 with great results on windows before, but now I have moved to using linux for development. The problem I have, is that I have not been able to find a decent replacement for Fiddler2 that will run on linux. I have tried Wireshark, but it is perhaps too generic in what it does, and I can never really make any sense of...

How to create a simple ASP.NET MVC action method that accepts HTTP-POST data?

Hi folks, i wish to have a simple Action in my controller that accepts a few optional values and some integer values. this is my route i wish to have: HTTP.POST /review/create and this is the Action method i would like... [AcceptVerbs(HttpVerbs.Post)] public JsonResult Create(int userId, int addressId, ...

Introducing testers to HTTP and Fiddler?

Hi, We really need to get our testers into using Fiddler to determin page size and site speed as part of their pre release testing process. I have sat with some of them to talk about fiddler but I'm looking for some easy to understand resources for learning Fiddler. More importantly I think it might be ideal if I can find an easy to re...

POST becomes a GET in Flash Builder 4 beta 2 according to Fiddler monitor?

My HTTPService requests in Flash Builder 4 are working fine for GETs but not for POSTs, where I am sending along params in addition to the name/value pairs on the query string. According to the Fiddler monitor, the header always shows a GET even when I explicitly set the method = "POST". I step through my code and see the method being ...

How to create Man in the Middle instrumentation

I'm trying to see how a certain application is talking to a server in SSL. Basically, the process just hangs when it claims to have done some SSL communication. I want to debug the problem by catching the traffic, but I can't really use a sniffer since SSL will probably look like a hexdump. Is there a good man-in-the-middle tool that ...

FiddlerCore + autoresponder?

I have just discovered FiddlerCore (a .NET API to automate some Fiddler functionality) and I would like to use this in combination with Fiddler's autoresponder to run some automated testing given a set of predefined request-->response sessions (which is how autoresponder works, I believe). I cannot figure out how to set this up with Fid...

How to view ASMX SOAP using Fiddler2?

Does anyone know if Fiddler can display the raw SOAP messages for ASMX web services? I'm testing a simple web service using both Fiddler2 and Storm and the results vary (Fiddler shows plain xml while Storm shows the SOAP messages). See sample request/responses below: Fiddler2 Request: POST /webservice1.asmx/Test HTTP/1.1 Accept: */* ...

Import .webtest file to fiddler?

Is the .webtest file can be imported to fiddler to view the http traffic? ...

fiddler ClientConnected time

When I test some web page using fiddler, sometimes the clientconnected time in the statistics tab is several seconds earlier than the clientDoneReqest time, so it makes the over all time much longer than the actual time it takes to load the page. is this a known issue or I missed something? thanks. ...

Fiddler/C#: search content of request/response for special phrases

Hello, this is my first visit to stackoverflow and right now I feel very comfortable with this site. It already helped me to get the FiddlerCore embedded into MS Visual C# 2008 Express Edition. Just needed to create a reference(Verweis) to the fiddlercore dll from Project Explorer(Projektmappenexplorer) in MS Visual C# EE. Hope this ar...

Fiddler vs Firefox w/ Firebug

Fiddler does look interesting and I've seen people recommending it as a good debugging tool but a quick runthrough I don't see anything all that great that we dont already have in Firebug. What can Fiddler do that Firebug cannot? Conversly what can Firebug do that Fiddler cannot? ...

Fiddler web debugging: Missing time information?

Normally its possible to display a fiddler session on a timeline, to see the sequence of the web requests and how long it took to get a response. However, for some reason a certain session does not contain any time information, therefore the timeline feature does not work. The Statistics of the requests show blank time values: ACTUAL P...

How can I create a working extension-dll for Fiddler with MS V C# 2008 EE?

Hello stackoverflow, this question reltates to TheChange's Question. The requirements changed so I need to use an extension in Fiddler with the same task. How can I create an extension with C# which will be excepted by Fiddler? I can create an dll in C# - I also tried the old .net 2.0 compiler for it.. I first tried to use my extensi...

Fiddler Event Log font operations

Hello again, I'd like to make the Fiddler Event Log more readable. Right now I use #### lines so I can check the different responses and self-made actions. The best thing would be the use of font operations like color, bold or italic. I could just create my own log-frame, but I'd like to use all available Fiddler functionalities. ...

Configure a WinHTTP application to use Fiddler.

I need to see the actual requests being made from a asp page to the webservice(which calls another webservice). All these requests happen on the same local box. I ran the "proxycfg -p http=127.0.0.1:8888;https=127.0.0.1:8888" on the command prompt based on http://www.fiddler2.com/fiddler/help/hookup.asp#Q-WinHTTP: How can I configure a ...

How Can I Determine if HTTP Requests/Responses are compressed in IE7?

I'm trying to use Fiddler (v2.2.2.0) to see if HTTP traffic through IE7 is being compressed. I'm not seeing Accept-Encoding or Content-Encoding request/response headers being sent/returned and I do not need to decode the response data once it's arrived, which leads me to believe that the responses are NOT coming back compressed. Howeve...

Iframe form not submittin in IE but working in Firefox

I have got a form that posts values to a page in a wizard. When i'm loading this form in a Iframe everything is working fine in Firefox, it will get me to the second step of the wizard and maintains the values i filled in. When im testing this in Internet Explorer i am not getting to the second step, instead of that it returns me to the ...

How can I verify that javascript and images are being cached?

I want to verify that the images, css, and javascript files that are part of my page are being cached by my browser. I've used Fiddler and Google Page Speed and it's unclear whether either is giving me the information I need. Fiddler shows the HTTP 304 response for images, css, and javascript which should tell the browser to use the cach...

C# Sniffing https traffic from a 3rd party assembly with fiddler

I want to sniff https traffic with fiddler, but the traffic is generated via a 3rd party assembly instead of a web browser. Are there similar mechanisms available so that I can add the fiddler certificate into the trusted category or would you recommend any other trick? ...