Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use custom action filter in asp.net mvc app to return http status code 422 and json list of validation errors (basically serialized model state dictionary) to client, where I handle that with global ajaxError handler in jQuery.

All of this works on development enviroment, but my problem is when custom errors mode is on (<system.webServer>/<httpErrors errorMode="Custom">), IIS replaces response (json) with text "The custom error module does not recognize this error."

I'm having hard time properly configuring IIS to pass-through original response if status code is 422. Anyone did something similar?

share|improve this question

1 Answer

up vote 0 down vote accepted

If web server is configured to pass through existing response, it will return json contents to browser.

<httpErrors errorMode="DetailedLocalOnly" existingResponse="PassThrough">
</httpErrors>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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