Tomcat shutdown and processes

2005-09-16 Thread Adile Abbadi
Hi all, Maybe someone has experienced this issue I'm having - I am running Apache/Tomcat4 on Debian using JDK1.4. I have done this install on a number of different machines - however this is the first install I've done on the 2.6 kernel. Everything seems to be working fine - tomcat and apache

RE: can I put JDBC connection information in the webapps web.xml file?

2005-08-02 Thread Adile Abbadi
Hi Mark, Yep I'm pretty sure you can - you can even do pooling - check the tomcat docs. Adile -Original Message- From: Mark [mailto:[EMAIL PROTECTED] Sent: August 2, 2005 10:21 AM To: Tomcat Users List; [EMAIL PROTECTED] Subject: can I put JDBC connection information in the webapps

RE: confused

2005-07-27 Thread Adile Abbadi
It's really quite simple - you first need a JDBC driver for Mysql - once you have that place it in the common/lib directory under tomcat. Restart tomcat and the driver will be loaded into memory. Once you have that - use Java code to connect to your db. That's it - you don't have to fool around

RE: Multiple Hosts using dyndns

2005-07-25 Thread Adile Abbadi
I'm doing a very similar thing through but my configuration is a little different. I'm using an apache/tomcat configuration with Mod_jk as the connector. Apache handles the bulk of the http requests so to do what you want to do I set it up through apache. I do it by doing one thing only in the

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: jsp stuff

2005-07-22 Thread Adile Abbadi
You don't need to change anything in tomcat to make it access a database except one thing - you need is a compliant JDBC driver which you through into the Common Library directory of tomcat. Once tomcat starts it will load the driver and then at that point you can use code to access the Database.

RE: Error 500 messages

2005-07-22 Thread Adile Abbadi
Hi Rob, Thanx for this - this is great - I may have to use this because I think I have truly found a bug in Tomcat as this issue is not happening on my Tomcat 3 server. I did a bit more investigation and I found some interesting things. This is going to be a long email with code and stuff but

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 Adile Abbadi
flush=false -Tim Adile Abbadi wrote: Hi Tim, Thanx for the information - I forgot about that. I guess the question is why did it work in Tomcat 3 and not Tomcat 4 and second is there a workaround to get it to work? Adile -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED

Error 500 messages

2005-07-21 Thread Adile Abbadi
to the screen. So any ideas?? Thanx Adile Mr. Adile Abbadi-MacIntosh - Chief Technical Officer A: Suite 500 - 400 Crowfoot Cres NWCalgary, Alberta, CanadaT3G 5H6 P: 403.693.2609 F: 403.693.2604 E: [EMAIL PROTECTED] C

RE: Error 500 messages

2005-07-21 Thread Adile Abbadi
on *nix servers (pity windows!!)... HTH, Anoop On 7/21/05, Adile Abbadi [EMAIL PROTECTED] wrote: 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