Re: Error 500 messages

2005-07-26 Thread Tim Funk
Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: July 24, 2005 7:46 AM To: Tomcat Users List Subject: Re: Error 500 messages The response is being comitted before the erro is being thrown. You need to set the buffer size to be larger. Its a page directive. -Tim Adile Abbadi wrote

RE: Error 500 messages

2005-07-25 Thread Adile Abbadi
7:46 AM To: Tomcat Users List Subject: Re: Error 500 messages The response is being comitted before the erro is being thrown. You need to set the buffer size to be larger. Its a page directive. -Tim Adile Abbadi wrote: Hi Tim, Thank you very much - that has helped - however I discovered

Re: Error 500 messages

2005-07-24 Thread Tim Funk
Adile -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: July 22, 2005 12:42 PM To: Tomcat Users List Subject: Re: Error 500 messages flush=false -Tim Adile Abbadi wrote: Hi Tim, Thanx for the information - I forgot about that. I guess the question is why did

RE: Error 500 messages

2005-07-22 Thread Adile Abbadi
Subject: RE: Error 500 messages Hi Adile, I did say it was untested, and I've spotted a problem in my code already (why are bugs so invisible BEFORE you press the send button??!!) On 22 Jul 2005 at 9:41, Rob Hills wrote: Something like the following (untested) in your error.jsp should do the trick

Re: Error 500 messages

2005-07-22 Thread Tim Funk
This line jsp:include page=top.html flush=true will commit the response and send html back to the client. Once that is done - no error messages will be sent back to the client and you will end up with a blank screen. -Tim Adile Abbadi wrote: Hi Rob, Thanx for this - this is great - I may

RE: Error 500 messages

2005-07-22 Thread Adile Abbadi
Users List Subject: Re: Error 500 messages This line jsp:include page=top.html flush=true will commit the response and send html back to the client. Once that is done - no error messages will be sent back to the client and you will end up with a blank screen. -Tim Adile Abbadi wrote: Hi Rob

Re: Error 500 messages

2005-07-22 Thread Tim Funk
] Sent: July 22, 2005 12:20 PM To: Tomcat Users List Subject: Re: Error 500 messages This line jsp:include page=top.html flush=true will commit the response and send html back to the client. Once that is done - no error messages will be sent back to the client and you will end up with a blank screen

RE: Error 500 messages

2005-07-22 Thread Adile Abbadi
still get a blank page - however if I remove the includes within the include then the exception is visible. Any ideas on this? Cheers Adile -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: July 22, 2005 12:42 PM To: Tomcat Users List Subject: Re: Error 500 messages

Error 500 messages

2005-07-21 Thread Adile Abbadi
Hi all, I've got a very simple question to ask and I'm sure someone out there can help me. Ok I just migrated from Tomcat 3 to Tomcat 4 and everything is working great except one little thing. But a little background before I go on. Apache/Tomcat4 configuration - using libapache-mod_jk

Re: Error 500 messages

2005-07-21 Thread Anoop kumar V
It might be easier than you think to output the error right onto the page itself. But would it help if you see the errors (+ other things) on the tomcat console?? It will certainly help in your debugging. To do that edit the server.xml in the conf directory and remove lines similar to this:

RE: Error 500 messages

2005-07-21 Thread Adile Abbadi
To: Tomcat Users List Subject: Re: Error 500 messages It might be easier than you think to output the error right onto the page itself. But would it help if you see the errors (+ other things) on the tomcat console?? It will certainly help in your debugging. To do that edit the server.xml

RE: Error 500 messages

2005-07-21 Thread Rob Hills
Hi Adile, On 21 Jul 2005 at 19:09, Adile Abbadi wrote: Now I did a little more experimenting and discovered something interesting - as I said I can get an exception to be thrown to the page in a simple JSP file (I made it do a null pointer for example) and I can get it do pretty any other

RE: Error 500 messages

2005-07-21 Thread Rob Hills
Hi Adile, I did say it was untested, and I've spotted a problem in my code already (why are bugs so invisible BEFORE you press the send button??!!) On 22 Jul 2005 at 9:41, Rob Hills wrote: Something like the following (untested) in your error.jsp should do the trick: % if (exception ==