Rescues in Internet Explorer

2009-03-25 Thread Ryan Scott
Unfortunately, I have to code against Internet Explorer 6 which occasionally presents some interesting issues. One of these is the fact that the option Show Friendly Http Error Messages prevents rescues from rendering properly. Instead it's a general HTTP 500 Internal server error message. I

Re: Rescues in Internet Explorer

2009-03-25 Thread Mauricio Scheffer
Make sure the content length of the rescue response has at least 512 bytes. See http://support.microsoft.com/?scid=kb;en-us;294807 On Mar 25, 4:39 pm, Ryan Scott rscot...@gmail.com wrote: Unfortunately, I have to code against Internet Explorer 6 which occasionally presents some interesting

Re: Rescues in Internet Explorer

2009-03-25 Thread Ryan Scott
Thanks. I don't typically have to target IE 6, so this hasn't popped up before. On Mar 25, 1:48 pm, Mauricio Scheffer mauricioschef...@gmail.com wrote: Make sure the content length of the rescue response has at least 512 bytes. Seehttp://support.microsoft.com/?scid=kb;en-us;294807 On Mar

Re: Rescues in Internet Explorer

2009-03-25 Thread Ryan Scott
It turns out IE7 has the same problem. I was just getting started looking at a new part of our system in IE6 and I was doing an extremely simple rescue (just printing the Exception message). Our standard rescues have enough content on them that they're always over 512 bytes, which is what led