Re: How to receive Session Manager from servlet?

2002-01-16 Thread Oto Buchta
Dne t 15. leden 2002 13:43 Mika Goeckel napsal(a): I think that is a matter of security. Once it has access to the SessionManager, your servlet has access to other servlets sessions as well. That's one reason for the SessionFacade being in place. The benefit from Tomcat being open source is,

DO NOT REPLY [Bug 5877] New: - Facade of facade.

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5877. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: How to receive Session Manager from servlet?

2002-01-16 Thread Oto Buchta
Dne út 15. leden 2002 18:17 Craig R. McClanahan napsal(a): Within the same webapp, you can track sessions pretty easily -- just create and register an HttpSessionListener that will then here about all session created and session destroyed events. You can keep your own private collection of

Re: jk2 problems with libapr.so

2002-01-16 Thread jean-frederic clere
[EMAIL PROTECTED] wrote: That's a bit problematic... I think it'll work fine if LD_LIBRARY_PATH is set before starting tomcat to include all the libs ( and libapr ) or of libapr ( and the rest ) are installed in the system dirs ( i.e. /usr/lib ). It works better ;-) using

Re: How to receive Session Manager from servlet?

2002-01-16 Thread Oto Buchta
Dne út 15. leden 2002 18:17 Craig R. McClanahan napsal(a): Within the same webapp, you can track sessions pretty easily -- just create and register an HttpSessionListener that will then here about all session created and session destroyed events. You can keep your own private collection of

DO NOT REPLY [Bug 5829] - StandardManager needs to cope with sessions throwing exception in read/write

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5829. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Loading classes

2002-01-16 Thread jean-frederic clere
Hi, I have some problem to load classes in JkConnector.java. I have added the following code: (ct comes from Container ct=service.getContainer();) Class channelclass = ct.getParentClassLoader().loadClass(channelclassname); But it allows throws the following: +++

SOLVED: Re: How to receive Session Manager from servlet?

2002-01-16 Thread Oto Buchta
Dne st 16. leden 2002 11:18 Oto Buchta napsal(a): Dne út 15. leden 2002 18:17 Craig R. McClanahan napsal(a): Within the same webapp, you can track sessions pretty easily -- just create and register an HttpSessionListener that will then here about all session created and session destroyed

Re: Loading classes

2002-01-16 Thread Remy Maucherat
Hi, I have some problem to load classes in JkConnector.java. I have added the following code: (ct comes from Container ct=service.getContainer();) Class channelclass = ct.getParentClassLoader().loadClass(channelclassname); But it allows throws the following:

Re: Loading classes

2002-01-16 Thread jean-frederic clere
Clere, Jean-Frederic wrote: Hi, I have some problem to load classes in JkConnector.java. I have added the following code: (ct comes from Container ct=service.getContainer();) Class channelclass = ct.getParentClassLoader().loadClass(channelclassname); But it

Minimalistic Docs

2002-01-16 Thread Anthony Holland
Hi, From jakarta-tomcat-3.2\doc\uguide\tomcat_ug.html Tomcat - A Minimalistic User's Guide There is no such word as 'minimalistic'. The adjective is 'minimalist', and probably in this case, simply 'minimal' would be even better. Ant = Anthony Holland +27 (0) 21

DO NOT REPLY [Bug 5881] New: - DB2 JDBC: no suitable driver!

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5881. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: Loading classes

2002-01-16 Thread jean-frederic clere
Remy Maucherat wrote: Hi, I have some problem to load classes in JkConnector.java. I have added the following code: (ct comes from Container ct=service.getContainer();) Class channelclass = ct.getParentClassLoader().loadClass(channelclassname); But

DO NOT REPLY [Bug 5881] - DB2 JDBC: no suitable driver!

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5881. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

URL cannot load URLStreamHandlers located in the common/lib directory (was: Please, need help about Tomcat 4.0.x classloader compatibility with custom protocol definition)

2002-01-16 Thread Alberto Garoffolo
Hi, - Original Message - From: Alberto Garoffolo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 14, 2002 4:28 PM Subject: Please, need help about Tomcat 4.0.x classloader compatibility with custom protocol definition Hi, I' ve a problem defining under Tomcat 4.0.x my

Re: Loading classes

2002-01-16 Thread Remy Maucherat
Remy Maucherat wrote: No, except it seems that ct.getLoader().getClassLoader()loadClass(channelclassname); throws a java.lang.NullPointerException. What should I use to load a class? The engine has no loader. Using Class.forName should do it. Remy -- To unsubscribe, e-mail:

Re: Loading classes

2002-01-16 Thread costinm
I had similar or worse problems - and I tried all the tricks I could think of. The only solution is to copy the .jar files in CATALINA/server/lib. I think build.xml does that automatically. If you do that,Class.forName should work fine. Using jk as a webapp ( without any additional configuration

DO NOT REPLY [Bug 4551] - Ctx( /tt01 ): IOException in: R( /tt01 + /com/abc/jta/javascripts/abc.js + null) Invalid argument

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4551. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: Minimalistic Docs

2002-01-16 Thread Christopher K. St. John
Anthony Holland wrote: Tomcat - A Minimalistic User's Guide There is no such word as 'minimalistic'. In the style of a member of the art movement Minimalism. In the style of a minimalist. Minimalistic. Works for me. Minimalist User's Guide would imply that the user's guide has to

Threads problem with Apache 1.3.22 + Tomcat 3.3 + Cocoon 1.8.2 on a Solaris x86 2.8 box (with Solaris VM (build Solaris_JDK_1.2.2_05a, native threads, sunwjit))

2002-01-16 Thread Roman Medina
Hi ppl: I'm running Apache 1.3.22 + Tomcat 3.3 + Cocoon 1.8.2 on a Solaris x86 2.8 box (with Sun JDK 1.2), and I'm in trouble. When I thought all was working ok I realized that with some applications my Tomcat crashes!! This happens after receiving several errors (see attached log). Any help

Re: SOLVED: Re: How to receive Session Manager from servlet?

2002-01-16 Thread Craig R. McClanahan
On Wed, 16 Jan 2002, Oto Buchta wrote: Date: Wed, 16 Jan 2002 13:16:31 +0100 From: Oto Buchta [EMAIL PROTECTED] Reply-To: Tomcat Developers List [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Subject: SOLVED: Re: How to receive Session Manager from servlet? Dne st 16.

tomcat 4.0.1 source build issue

2002-01-16 Thread Dana Chee
Hi, I just completed the source code build of tomcat 4.0.1 and ran into a slight problem. I was building it without JSSE and the build failed because (in catalina) org/apache/catalina/startup/Embedded.java is not excluded, but it wants to import

DO NOT REPLY [Bug 5740] - content-type reset to text/html on response with status = 400

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5740. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

RE: Minimalistic Docs

2002-01-16 Thread Arnold Shore
And a minimalistic use of Minimalistic would be Minimal. as -Original Message- From: Christopher K. St. John [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16, 2002 12:47 PM To: Tomcat Developers List Subject: Re: Minimalistic Docs Anthony Holland wrote: Tomcat - A Minimalistic

Re: Possible Explanation - Re: DO NOT REPLY [Bug 5684] - WEB-INF/lib jar file loading and operations problems.

2002-01-16 Thread Bill Barker
I checked in a patch to DependClassLoader12 last night (which should appear in tonight's nightly) that seems to make jar replacement much better at least with my very limited testing. It was leaving the jar file open whenever it had to define a new Package. From your description, it sounds like

cvs commit: jakarta-tomcat-connectors/jk/native/nt_service nt_service.dsp

2002-01-16 Thread costin
costin 02/01/16 11:46:37 Modified:jk/native/apache-2.0 mod_jk.dsp jk/native/common Makefile.in jk/native/nt_service nt_service.dsp Log: Few build fixes. Revision ChangesPath 1.6 +7 -7

RE: DO NOT REPLY [Bug 5881] - DB2 JDBC: no suitable driver!

2002-01-16 Thread Schreibman, David
You have to rename the file db2java.zip to db2java.jar. Previous versions of Tomcat were not as strict about the requirement for classes to be stored in jar files -David -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16, 2002 6:41 AM

RE: Minimalistic Docs

2002-01-16 Thread Tomas Rokicki
Oops; different dictionaries disagree on the possible meanings of minimalist. Sorry. (My OED is at home.) -tom -Original Message- From: Arnold Shore [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16, 2002 11:15 AM To: Tomcat Developers List Subject: RE: Minimalistic Docs And a

RE: Minimalistic Docs

2002-01-16 Thread Tomas Rokicki
Well, if you believe dictionaries: minimal: adj. 1a Smallest in amount or degree. 1b Small in amount or degree. 1c Only barely adequate. 2 often Minimal Of, relating to, or being minimalism minimalist: n. 1 One who advocates a moderate or conservative approach, action, or policy, as in a

Updating the site

2002-01-16 Thread Andy Armstrong
I was going to update this page http://jakarta.apache.org/site/cvsonwin32.html to reflect the fact that PuTTY, a free / open source SSH client, now supports tunnelling. Do I just update the page and commit it or is there more to it? -- Andy Armstrong, Tagish -- To unsubscribe, e-mail:

ApplicationFilterChain, doPrivileged()

2002-01-16 Thread Christopher K. St. John
When a SecurityManager is intalled, ApplicationFilterChain.doFilter() wraps its internalDoFilter() call with AccessController.doPrivileged(), but I'm having trouble figuring out why. doFilter() gets called from: a) StandardWrapperValve.invoke(), in which case (presumably) the

Re: Threads problem with Apache 1.3.22 + Tomcat 3.3 + Cocoon 1.8.2 on a Solaris x86 2.8 box (with Solaris VM (build Solaris_JDK_1.2.2_05a, native threads, sunwjit))

2002-01-16 Thread Bojan Smojver
Without going into this lengthy stack trace and knowing Solaris, here a a few suggestions: - try the latest stable JDK, something like 1.3.x - it helps when error report contains: I think the error is here etc., rather then just leave it to people to read a mile long log file. Bojan Roman

java.io.IOException: Illegal to flush within a custom tag ?

2002-01-16 Thread hhager
Yes, I've seen the bug report on this, and it says that the JSP 1.1 spec makes it illegal to call flush() within a custom tag, and using the pageContext.include(some.jsp) method does just that, thus the error: java.io.IOException: Illegal to flush within a custom tag bug report:

Re: Creating Custom Authenticators, adding to context

2002-01-16 Thread Josh Nylander
As a followup, if this is not currently possible (I don't think it is), I would be willing to work on the code if pointed in the right direction. I believe I would have to modify the configuration classe(s) and figure out where the Authentication classes are called. R. Josh Nylander PC/LAN

DO NOT REPLY [Bug 5829] - StandardManager needs to cope with sessions throwing exception in read/write

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5829. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [VOTE] Tomcat 4.0.2 b2 release

2002-01-16 Thread Craig R. McClanahan
On Wed, 16 Jan 2002, Remy Maucherat wrote: ballot [X] +1 Make the release [ ] +0 Good idea, but I can't help [ ] -0 Bad idea [ ] -1 No, because: /ballot Craig -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [VOTE] Tomcat 4.0.2 b2 release

2002-01-16 Thread Andy Armstrong
Remy Maucherat wrote: Hi, I think it would be good to tag Tomcat 4.0.2 b2 at the end of the week (with the binaries being released by monday). Here's the ballot: ballot [X] +1 Make the release [ ] +0 Good idea, but I can't help [ ] -0 Bad idea [ ] -1 No, because: /ballot The

RE: [VOTE] Tomcat 4.0.2 b2 release

2002-01-16 Thread Kevin Seguin
ballot [X] +1 Make the release [ ] +0 Good idea, but I can't help [ ] -0 Bad idea [ ] -1 No, because: /ballot -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [VOTE] Tomcat 4.0.2 b2 release

2002-01-16 Thread Cavan Morris
Is there a plan to build native webapp for Apache 2.0 as well as 1.3? ballot [ ] +1 Make the release [X ] +0 Good idea, but I can't help [ ] -0 Bad idea [ ] -1 No, because: /ballot -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

cvs commit: jakarta-tomcat-4.0/catalina/src/conf catalina.policy

2002-01-16 Thread patrickl
patrickl02/01/16 16:28:15 Modified:catalina/src/conf catalina.policy Log: Add AllPermissions to admin webapp's classes directory Revision ChangesPath 1.20 +9 -5 jakarta-tomcat-4.0/catalina/src/conf/catalina.policy Index: catalina.policy

Re: [VOTE] Tomcat 4.0.2 b2 release

2002-01-16 Thread Amy Roh
[X] +1 Make the release [ ] +0 Good idea, but I can't help [ ] -0 Bad idea [ ] -1 No, because: Amy -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [VOTE] Tomcat 4.0.2 b2 release

2002-01-16 Thread costinm
+1 if the load balancing code gets in. -0 without it ( since one of the most important functions of jk will not work in 4.0.2 ). Costin The release process will be the following: - Tag j-t-c/webapp with tomcat_402_b2 - Update the Java sources for webapp in the main Tomcat tree to mirror the

Re: Updating the site

2002-01-16 Thread Daniel Rall
I answered this on general@. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [VOTE] Tomcat 4.0.2 b2 release

2002-01-16 Thread Remy Maucherat
+1 if the load balancing code gets in. -0 without it ( since one of the most important functions of jk will not work in 4.0.2 ). I plan to port the jvmRoute patch. Is it enough ? Remy -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

DO NOT REPLY [Bug 4975] - Connection closed before response is sent

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4975. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: Creating Custom Authenticators, adding to context

2002-01-16 Thread Clayton Wheeler
on 1/16/02 2:06 PM, Josh Nylander at [EMAIL PROTECTED] wrote: As a followup, if this is not currently possible (I don't think it is), I would be willing to work on the code if pointed in the right direction. I believe I would have to modify the configuration classe(s) and figure out where

Re: [VOTE] Tomcat 4.0.2 b2 release

2002-01-16 Thread costinm
On Wed, 16 Jan 2002, Remy Maucherat wrote: +1 if the load balancing code gets in. -0 without it ( since one of the most important functions of jk will not work in 4.0.2 ). I plan to port the jvmRoute patch. Is it enough ? Yes, you have my +1 than. ( it should be a trivial thing, I just

RE: Minimalistic Docs

2002-01-16 Thread Anthony Holland
well, minimal meaning 1c and minimalist meaning 2 (below) look pretty similar to me, but as Tom says, the latter suggests intent. Then again, the fact that it is in the title also does a fair job suggesting intent. Let's just steer away from anything pretentious. I vote for minimalist.

DO NOT REPLY [Bug 5894] New: - Manager get IllegalStateException during 'install' command

2002-01-16 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5894. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.