So I'm trying to iterate over Response.Headers for a custom caching job, but I'm getting the following error when I touch the thing:

This operation requires IIS integrated pipeline mode

It this possible to do in IIS6? Is there a workaround?

var allHeaders = HttpContext.Current.Response.Headers;  
// error thrown as soon as it's accessed
link|improve this question

78% accept rate
feedback

1 Answer

up vote 3 down vote accepted

AFAIK you cannot access the HTTP response headers unless you are running in integrated mode because they are sent by the server at a later stage of the execution of the request when running in standard mode.

link|improve this answer
+1 - msdn.microsoft.com/en-us/library/… – keyboardP Jun 7 '11 at 17:39
feedback

Your Answer

 
or
required, but never shown

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