OutOfMemoryError under high load

2003-06-11 Thread Ian McFarland
nd /proc/sys/kernel/threads-max, for example,) or at least all the ones we could think of. I think we're missing something obvious, and the OS is not letting us spawn more threads. Anyone know what we're doing wrong? Tha

Re: AJP13 encryption

2003-02-21 Thread Ian McFarland
Can't you just tunnel your AJP connection using ssh or stunnel or similar? I suppose you could hack the AJP connector to use TLS, but of course then you'd have to also rewrite your plugin (IIS or NSAPI) to know about TLS, too. Do you need something more than a secure pipe to pass your data thro

Re: Mac os x and class files

2003-02-21 Thread Ian McFarland
Are you using JDK1.3.1 or 1.4.1 on your OS X box? You know the default configuration for OS X is to use 1.3.1, and you should be doing so for production anyway. In any case, I use Tomcat 4.1.12 (not the LE version) on OS X 10.2.4 all the time. (And have on 10.2.3, 10.2.2, 10.2.1, 10.1.x...) and

Re: Bizarre startup problem on Mac OS X server, with 4.1.12

2002-11-13 Thread Ian McFarland
> Note that JavaXML.framework also contains the org.xml.sax.HandlerBase > class. > > Any pointers or hints would be great. If anyone else is running OS X > Server, it would be good to know if you have the same problems, or not > ... > >

Re: tomcat and OSX

2002-10-21 Thread Ian McFarland
-installed! (And since mod_webapp is such a pain to configure correctly, that's actually a pretty nice thing!) One of the reasons you don't see OS X-specific posts is 'cause there aren't all that many OS X-specific issues. :-) -Ian McFarland On Monday, October 21, 2002, at 11

Re: Tomcat 4.0 - SSL DOES NOT WORK!

2002-09-23 Thread Ian McFarland
that's the easiest solution. > > Thanks. > Neal > > > -Original Message- > From: Ian McFarland [mailto:[EMAIL PROTECTED]] > Sent: Monday, September 23, 2002 4:14 PM > To: Tomcat Users List > Cc: neal > Subject: Re: Tomcat 4.0 - SSL DOES NOT WORK! > > > Did you b

Re: Tomcat 4.0 - SSL DOES NOT WORK!

2002-09-23 Thread Ian McFarland
Did you build it yourself, with the necessary libraries on the classpath? 4.0 doesn't support SSL out of the box; you have to compile it with the libraries on the classpath, and I forget what else. I've done it before, and it worked fine for me. Finding the docs on how to do it was the hard pa

Re: DESPAIR : missing tomcat-apache.conf & mod_jk.conf-auto

2002-09-18 Thread Ian McFarland
On the Apache box. On Wednesday, Sep 18, 2002, at 04:54 US/Pacific, [EMAIL PROTECTED] wrote: > Yes John, but Apache and Tomcat are on different boxes. > All the doco's I read sofar subsume one box for both functions. > Questions : > (1) Should mod_jk be on the web-server (Apache) or > (2) Shoul

What does WARP stand for, anyway?

2002-09-09 Thread Ian McFarland
Web Application Routing Protocol? Couldn't find it on the Apache site, via Google, nor in the source code. (Perhaps I overlooked it there?) Thanks, -Ian -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: java-compiler for Mac?

2002-08-19 Thread Ian McFarland
Yes, there are a few! What version of the OS are you talking about? OS X comes with a complete JDK 1.3.1 installed. OS 9 and before had a downloadable Java runtime, called Mac Runtime for Java, or MRJ, that could be installed. (The current incarnation is also called MRJ, btw, but since it's no

Question on differences between spec and Tomcat class library

2002-07-26 Thread Ian McFarland
Hey, I was just noticing that the names of two of the interfaces defined in the Tomcat 2.3 spec (two of the Lifecycle listeners) don't match the classnames in the Tomcat library. Which one is right? According to the spec (servlet-2_3-fcs-spec.pdf page 70, marked final, dated 8/13/01) the class

Need help deciphering the docs for

2002-07-18 Thread Ian McFarland
Hello, The docs say that the Host tag can take a deployXML attribute, and has the following explanation: "Set to false if you want to disable deploying applications using a Context XML config file. Applications are deployed with the security permissions of catalina, for security this may need

What happened to the mod webapp binaries?

2002-07-11 Thread Ian McFarland
, isn't what I want. (see http://jakarta.apache.org/builds/jakarta-tomcat- connectors/webapp/release/v1.2.0/src/) Am I just looking in the wrong place? I promise I read the directions and looked in what seemed to be the appropriate places. Thanks in advance, -Ian McFarland -- To unsubscribe,

Re: How to hide a download file

2002-07-11 Thread Ian McFarland
Why don't you just handle it by putting something in their session saying that they filled out the form correctly, and write a downloader servlet that looks for that something, and will only send them the bits if they've filed out the form? Writing a servlet to send a file is pretty darned tri