Re: Reload on Tomcat 5.5

2005-05-22 Thread Stephen Souness
Please post a snippet of your config from server.xml with the relevant Host entry so that we can eliminate that as a possible cause of the problem. -- Stephen - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional command

Tomcat 5.0.25 session persistence

2004-09-21 Thread Stephen Souness
Hi all, I have a Tomcat 5.0.25 system running behind apache under linux, which produces the following exception whenever I restart it: java.io.FileNotFoundException: /usr/local/jakarta-tomcat-5.0.25/work/Catalina/www.my-sitename.co.nz/_/SESSIONS.ser (No such file or directory) Does anyone know

Re: Upgrading from Java 1.3 and Tomcat 4.0 to Java 1.4 and Tomcat 5.0.27

2004-08-15 Thread Stephen Souness
n Windows with just a JRE and not a JDK (including tools.jar in common/lib for compiling JSPs). -- Stephen Souness alan sparago wrote: Are both instances of Tomcat trying to run on the same port? You cannot have two processes trying to run on the same port for the same ip address. -Original Me

Upgrading from Java 1.3 and Tomcat 4.0 to Java 1.4 and Tomcat 5.0.27

2004-08-14 Thread Stephen Souness
clash with the existing Tomcat service? When I try to run the newly installed Tomcat 5 from a dos shell it closes immediately with no feedback presented or logged. Has anyone encountered this before, or does anyone have some tips as to what I could be doing wrong? -- Stephen So

Re: SV: Tomcat virtualhost bug?

2004-07-22 Thread Stephen Souness
Would it work if you just had separate absolute paths for each host appBase? I'm seeing a similar issue on my development system and need to come up with something thast will be suitable for deploying to live systems - while preferably allowing for some configuration changes without having to br

Re: mod_jk2: .so versus .dll

2004-07-20 Thread Stephen Souness
If the naming of these files follows the usual conventions - mod_jk2.dll is a library for Windows, mod_jk2.so is a library for unix/linux. They're probably equivalents to eachother but will not be interchangable. -- Stephen Hirode, Kartheek V. wrote: Hello all We have the following config workin

Re: Enabling EL on Tomcat 5.0

2004-06-21 Thread Stephen Souness
I had a similar problem recently Assuming that you have the appropriate jar files in the appropriate locations you will need the following in your application's web.xml http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java

Re: character encoding of jsp output in Tomcat 5.24 JRE 1.4.2_04 jvm.dll

2004-06-01 Thread Stephen Souness
+ systemProperties.getProperty(key) + ""); } %> Stephen Souness wrote: Hi, Does anyone have any hints as to why Tomcat would replace some characters with a question mark when being run inside the JVM dll on Windows, yet display the s

character encoding of jsp output in Tomcat 5.24 JRE 1.4.2_04 jvm.dll

2004-06-01 Thread Stephen Souness
Hi, Does anyone have any hints as to why Tomcat would replace some characters with a question mark when being run inside the JVM dll on Windows, yet display the same characters correctly when run with java.exe ? - To unsubscribe