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

I'm using IIS URL Rewrite 2.0 in IIS 7.5.

I have an outbound rule which rewrites URLs contained within the response for an AJAX partial postback.

The rewrite is successful (I can see the rewritten URLs when examining the response in Firebug, Fiddler etc), but I get the following JavaScript error:

Sys.WebForms.PageRequestManagerParserErrorException: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed.

On debugging the error, it seems it is because the 'Delta' headers in the partial postback responses have not been updated with the correct content lengths, and the JavaScript can't find what it is looking for in the response.

Does anyone know how to fix this while continuing to use the IIS Url Rewriter? I've tried various things (including my own HttpModule set to run after UrlRewrite in IIS, with no luck), and it's starting to look like I'll need to use a Response Filter to do the outbound rewriting so I can manually correct the rewritten response.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.