vote up 0 vote down star

Why does using Fiddler break my site sometimes on page transitions.

After a server side redirect -- in the http response (as found in Fiddler) I get this:

Object moved

Object moved to here.

The site is an ASP.NET 1.1 / VB.NET 1.1 [sic] site.

Why doesnt Fiddler just go there for me? i dont get it.

I'm fine with this issue when developing but I'm worried that other proxy servers might cause this issue for 'real customers'. Im not even clear exactly what is going on.

flag

44% accept rate
this could be a Fiddler bug. some of the HTTP WCF services we've created also don't work when I run Fiddler on the client machine, even though the app is not web-based. – cruizer Oct 29 '08 at 6:43

2 Answers

vote up 2 vote down

That's actually what Response.Redirect does. It sends a 302 - Object moved response to the user-agent. The user-agent then automatically goes to the URL specified in the 302 response. If you need a real server-side redirect without round-tripping to the client, try Server.Transfer.

link|flag
yes, but why does Fiddler just stop dead? shouldnt it send me there? is this just Fiddler's behavior or am i liekly to run into this problem with any other type of Proxy? – Simon Oct 29 '08 at 6:57
I am using Fiddler 2.1.0.4 and I am not seeing the behavior you described. It follows the redirects for me just fine. As long as Fiddler forwards the 302 to the browser, the browser should request the new URL and this will show up in Fiddler. Fiddler by itself won't follow the redirect. – maxam Oct 29 '08 at 7:02
1  
Fiddler shouldn't "send" you anywhere, your client is responsible for requesting the information from the new URL. However, Fiddler might have rewritten the information in a way your client doesn't understand. Perhaps you can post the exact raw response, and info about your particular client? – Paul-Jan Feb 14 at 18:47
vote up 0 vote down

If you merely constructed the request using the request builder, you're not going to see Fiddler automatically follow the returned redirect.

In contrast, if you are using IE or another browser, it will generally check the redirect header and follow it.

For IE specifically, I believe there's a timing corner case where the browser will fail to follow the redirect in obscure situations. You can often fix this by clicking Tools / Fiddler Options, and enabling both the "Server" and "Client" socket reuse settings.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.