Re: Shutdown not working under SLES8 and FC2

2005-02-02 Thread Carl Howells
Al Sutton wrote: Has anyone else had problems with the shutdown script not shutting down Tomcat on Fedora Core 2 and/or SuSE Linux Enterprise Server 8 using Suns JDK 1.4.2? I've tried reporting it to the dev list as a bug all, but I got was the bug closed when someone couldn't get the same thing

Re: SSL and form-based login

2004-11-23 Thread Carl Howells
footh wrote: Now that I think about it, most (if not all) of my non-SSL links are in include files. So, it is easy enough to just place the full link in there. What bugs me is I've seen other sites with relative links on SSL pages that go to the non-SSL version (even when you hover over the link

Re: How do I get an intermediary proxy from caching?

2004-08-31 Thread Carl Howells
[EMAIL PROTECTED] wrote: Can I ask Tomcat if it has flushed it's output buffer yet? As part of the servlet spec... HttpServletResponse has an isCommitted() method. That will tell you whether it's flushed the buffer. But really, it seems like a bad design to rely on that method.

Programmatic Authentication?

2004-06-01 Thread Carl Howells
. Thanks for any solutions... Carl Howells - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Pass info between Tomcat Valve and Filter

2004-05-21 Thread Carl Howells
Rui Zhang wrote: Hi Jon All, Thanks for your information. It's very helpful. I've been looking at ValveContext but did not find anything useful. Yes, I tried to pass the info object along as an attribute of ServletRequest. But problem occured with the retrieval of the object in the Filter,

Re: Tomcat 4.1.29 - Tomcat 4.0.1 - App Problems

2004-05-07 Thread Carl Howells
Shapira, Yoav wrote: [snip] This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied,

Importing an existing ssl *KEY* into my keystore

2004-04-15 Thread Carl Howells
Since my company use using SSL for several different functions on our target machine, we used openSSL to generate the key and certificate signing request that we got our signed certificate made from. Only after that did I discover that keytool is braindamaged, and it won't import a key into a

tar 1.13.93 and jakarta-tomcat-5.0.19.tar.gz errors.

2004-03-08 Thread Carl Howells
Running version 1.13.93 of tar on linux (debian unstable)... Attempting to untar jakarta-tomcat-5.0.19.tar.gz fails. I confirmed that the file is uncorrupted, and it untars correctly with other versions of tar. This is of course a bug with version 1.13.93 of tar, but I thought I'd point it

web.xml and schema document.

2004-02-25 Thread Carl Howells
I'm pretty new to XML, and I can't seem to find any good resources on using schema in an XML document. Finding resources on writing schema is trivial. But no one seems to want to explain how to *use* them. Can someone give me an example of how to set up my web.xml file to use the 2.4 schema,

Re: web.xml and schema document.

2004-02-25 Thread Carl Howells
I can't get my file with that intro to validate, because it lacks a DOCTYPE declaration... I'd like to be able to validate my web.xml file, if at all possible. What should the DOCTYPE be for this? Shapira, Yoav wrote: ?xml version=1.0 encoding=ISO-8859-1? web-app

Re: What's the problem with Tomcat 4.1.29 and Switch?

2004-02-23 Thread Carl Howells
Because the switch statement has different syntax. % switch (day) { % % case 1: // and so on... % Could be translated to: switch (day) { out.print(\n ); case 1: // and so on... Which is clearly illegal syntax. There is no equivalent illegal form of any other block construct, which