Re: changes in jsp included file dont refreshed

2001-06-28 Thread Jeff Waugh
That is correct. When you '%@ include' a file it is included at translation time. The server is allowed to notice that included files have been changed, but most do not (tomcat does not). If you 'jsp:include' the file it will be included at request time so changes will be apparent immediately.

Re: changes in jsp included file dont refreshed

2001-06-28 Thread Jeff Waugh
refreshed That's not right, of course those pages can contain code. The code must be syntactically independend from the including page. (You can't share variables or methods across the pages). -Ursprüngliche Nachricht- Von: Jeff Waugh [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag

Re: how to determine if tomcat is running

2001-06-24 Thread Jeff Waugh
If tomcat is running it will be listening on the ports specified in the Connectors in server.xml. These will show up as listening in netstat, can be queried with lsof or fuser. Even that is no guarantee that it is tomcat listening, but it would be fairly trivial to retrieve a test page via a

Re: Problem with Postgresql JDBC driver

2001-06-18 Thread Jeff Waugh
;, "password"); Try playing with that. -Jeff - Original Message - From: "Ryszard Lach" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 7:20 AM Subject: Re: Problem with Postgresql JDBC driver On Mon, Jun 18, 2001 at 07:21:21AM -040

Re: Should we do moderation on this mailinglist??

2001-06-05 Thread Jeff Waugh
Unfortunately, we are dealing with 'people' here. It is a shame that there is not a 'filter' to eliminate 'stupid' people, but as hard as I've tried, I just can't program it. If someone else can, please make it an Opensource project But, then again, we would probably get 'stupid' people

Re: autostarting apache/tomcat

2001-05-29 Thread Jeff Waugh
Your key file is encrypted. Use openssl to create an unencryted key: openssl rsa -in server.key -out run.key Change your httpd.conf to use run.key as your SSLCertificateKeyFile. HTH, -Jeff - Original Message - From: Tim O'Neil [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday,

Re: Connector

2001-05-28 Thread Jeff Waugh
Yes. - Original Message - From: Andrea Mari [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 28, 2001 8:44 AM Subject: Connector Hi, I've a simple question. If I use Tomcat 3.2.1 with Apache, can I disable the http connector on port 8080 without any problems? I'm not

Re: openbsd and mod_jk.so build problem

2001-05-26 Thread Jeff Waugh
These constants are defined in /usr/include/dlfcn.h (or something included from there). They are also defined in $APACHE_HOME/include/os.h You definitely need them to build a shared library. -Jeff - Original Message - From: Joan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday,

Re: trusted application

2001-05-07 Thread Jeff Waugh
In $TOMCAT_HOME/conf/server.xml Context path=/admin docBase=webapps/admin crossContext=true debug=0 reloadable=true trusted=true /Context -Jeff - Original Message - From: Erik Hellman