RE: PJA Library, BootClasspath, Configuring JVM -- Tomcat 4.x and JDK1.3

2002-06-18 Thread Chris Newland
=com.eteks.awt.PJAToolkit \ -Djava.awt.graphicsenv=com.eteks.java2d.PJAGraphicsEnvironment \ -Djava.awt.fonts=$JAVA_HOME/jre/lib/fonts/ (assuming that $JAVA_HOME contains the location of your JDK installation directory) Hope this helps, Best Regards, Chris Newland -Original Message- From: Carlos

RE: error 404

2002-04-03 Thread Chris Newland
Hi, Did you restart Apache after you started Tomcat? Regards, Chris -Original Message- From: Yunce Gunawan [mailto:[EMAIL PROTECTED]] Sent: 03 April 2002 13:22 To: Tomcat Users List Subject: error 404 hi all, i have added this charakters to my configuration on

RE: 100% cpu on one of two processor

2002-03-14 Thread Chris Newland
using (in catalina.sh) (this is for Tomcat 4) CATALINA_OPTS= -Xms64M -Xmx256M Hope this helps, Best Regards, Chris Newland -Original Message- From: Guillaume Radenkovic [mailto:[EMAIL PROTECTED]] Sent: 14 March 2002 15:36 To: [EMAIL PROTECTED] Subject: 100% cpu on one of two

multiple mod_webapp connections?

2002-01-22 Thread Chris Newland
Hi All, I would like to set up multiple tomcat 4.0.1 instances (each running a cocoon webapp) all behind a single Apache server and use mod_webapp to connect between a URL path and a specific tomcat instance. E.g. http://www.server.com/foo --- localhost:8080/cocoon (first tomcat instance)

Re: Repost: Can't get it working: TC4.0.x + warp + Apache 1.3.20 + SuSE Linux 7.3

2002-01-16 Thread Chris Newland
127.0.0.1:8008 WebAppDeploy cocoon warpConnection /cocoon AddHandler default-handler .gif .jpeg -- I did not have to change my tomcat/conf/server.xml file at all to enable mod_webapp. Hope this helps, Best Regards, Chris Newland

RE: security issue: tomcat on port 80

2001-12-06 Thread Chris Newland
Hi, There are security implications for running *any* server process on *any* port that is accessible by the public internet. To run a server on UNIX/Linux on a port number of less than 1024 requires root privileges. I would strongly recommend you do *NOT* run Tomcat as the root user since if

Re: newbiew question : memory usage

2001-11-30 Thread Chris Newland
Hi Karl, From my understanding (I'd welcome any corrections): -Xms is the initial size of the JVM heap (the pool of memory available for allocation as variables/objects) -Xmx is a hard limit on the maximum size of the JVM heap. When an object needs to be created the JVM requests memory from

Re: Hinding information from the URL (during the request)

2001-11-29 Thread Chris Newland
Hi Mike, Your form method is GET right? The HTTP GET method of passing parameters works by appending them to the form target URL. If you change the form method to POST then they will be sent as POSTDATA with the request for the target and will not appear in the browser URL. See the HTTP

RE: Tomcat 3.2.3 Memory Exception running on HP-UX 11

2001-11-29 Thread Chris Newland
Hi Mike, If you are not explicitly setting the JVM initial heap size and maximum heap size then they will take the default values which are quite small (64MByte max I think?). If you want the JVM to use more of the system's memory then start it up using the switches: -Xms initial heap size