However for IE6 it is more difficult. The best solution I have found is this one:
- Download Fiddler.
- Open the 'Customize Rules' window (Rules->Customize Rules...)
- find this function: static function OnBeforeRequest(oSession: Session)
- inside this function, add the header values that you would like to add, in this format:
oSession.oRequest["headerName"] = "headerValue";
-save
VoilĂ ! Internet Explorer will now accept your custom header values. You will probably need to clear your browser cookies before it takes effect.
10 comments:
its great. working for me, thanks
where exactly to add that function? i got an error after save it
Add it inside the function named "OnBeforeRequest(oSession: Session)".
Try adding it on the line immediately following that one.
Shame on me i am still gor an error after save it.
I can't seem to get this working.
I'm following the steps:
1) Get Fiddler
2) Rules -> Customize Rules
3) Add header value items
But the headers still don't seem to be modified in IE. I'm using IE7, will it work for that version?
I described the process to set request headers. It should work fine on IE7.
If you want to set response headers, you can use the filters tab in Fiddler. Check "use filters", and the "set response header" option.
tell please, how can i check that my hhtp header was really modified?
Thanks.Appreciate it
Guy, that's great!
it's great.. thanks for your post..
Post a Comment