What does existingResponse=”PassThrough” mean in IIS?

The documentation says

existingResponse="PassThrough"

Leaves the response untouched if an existing response exists.
http://www.iis.net/configreference/system.webserver/httperrors#005

But what does that mean by “existing response exists”?

E.g. I want my customErrors handler to suppress the ASP.NET response, so that IIS would think that response doesn’t exist. How would I do that?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

There are three possible values, from the schema:

<attribute name="existingResponse" type="enum" defaultValue="Auto">
  <enum name="Auto" value="0" />
  <enum name="Replace" value="1" />
  <enum name="PassThrough" value="2" />
</attribute>

Roughly, here is how I understand this:

PassThrough – leaves the existing response alone, as long as there is one. It is possible that your application logic doesn’t return anything. In that case the error page defined here is used.

Auto – uses the IIS error pages as defined in this node except when in asp.net you did set:

Response.TrySkipIisCustomErrors = true;

if you’ve done that, the response from your code is used.

Replace – always uses the IIS error pages, even if the developer has set TrySkipIisCustomErrors.

The last option seems to be the one you want.


Edit:

Consider:

existingResponse="PassThrough"

now try to open a non-existing asp.net page, you’ll see:

enter image description here

Even though the resource was not there, the runtime provided a response, it is passed through to the browser.

Now, try to open a non-existing html page. This time we still get a 404 status but an empty page.

changing to:

existingResponse="Auto"

the missing asp.net page still displays the asp.net error page, but for the missing html page we now get the IIS one:

enter image description here

So, summarizing: when looking at missing html and aspx pages with different
existingResponse values, we get different error pages:

                .html-404   .aspx-404   .aspx-500
--------------------------------------------------
Auto             IIS         asp.net    asp.net
PassThrough      -           asp.net    asp.net
Replace          IIS         IIS        IIS


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x