You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Fiddler
Is it possible to change response header using fiddler?
I tried using utilReplaceInResponse, but I don't think it accepts
regular expression.
For example, changing
Cache-Control: no-cache, must-revalidate, no-store
or
Cache-Control: no-cache
or
Cache-Control: no-store
into
Cache-Control: public
--
Endy
EricLaw
unread,
Jun 21, 2009, 4:36:01 PM6/21/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Fiddler
If you want to change a response header, change the response
header. ;-)
oSession.oResponse["HeaderName"] = "value";
...will do the trick. Call that inside OnBeforeResponse.
endy_tj
unread,
Jun 22, 2009, 11:49:44 PM6/22/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Fiddler
Thanks! I didn't know oResponse can be used like a dictionary.
EricLaw
unread,
Jun 23, 2009, 11:53:22 AM6/23/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Fiddler
Indeed, the default indexer for oRequest and oResponse indexes into
their respective HTTP header collections. The default indexer for the
Session object indexes into its oFlags dictionary.
> > > Endy- Hide quoted text -
>
> - Show quoted text -