Re: [ANNOUNCE] Domino redirector 1.0.2

2001-06-10 Thread Andy Armstrong
Craig R. McClanahan wrote: On Fri, 8 Jun 2001, Andy Armstrong wrote: GOMEZ Henri wrote: Version 1.0.2 of the Lotus Domino redirector for Win32 and Linux is available now at http://free.tagish.net/domino-tomcat/ The main change is a fix to the SSL handling that

RE: java.lang.outOfMemory Exception

2001-06-10 Thread Martin van den Bemt
Most of the time it's caused by an infinite loop. (put a hashtable in the session attribute, where on of the values is a pointer to iteself).. Very confusing somethimes.. ;-)) Especially if it's not your code ;-)) Mvgr, Martin -Original Message-From: arun [mailto:[EMAIL

Re: In-Process

2001-06-10 Thread cmanolache
My guess: you are starting tomcat from command line, not via invocation. ( so the JNI init method is not called ). I'll try to add some extra checks and error messages in 3.3 ( for graceful failure ) Costin On Fri, 8 Jun 2001, Jonathan Harding wrote: I am trying to setup tomcat-3.2.1 for

J34: Parsing compile errors

2001-06-10 Thread cmanolache
Hi, Next step on line mapping is finding the JSP line that caused the compiler error. For that we need to parse the compile error. Does anyone know any existing code or some magic to get to a consistent format ? Costin

Re: APR on Windows 2000????

2001-06-10 Thread Pier P. Fumagalli
Thom Park at [EMAIL PROTECTED] wrote: Hi, This question pertains to the required APR library for mod_webapp. I understand that this might not be the best mail list to post this question, but if there are any hardy souls out there working with mod_webapp and NT, then they (hopefully)

From Vaskar

2001-06-10 Thread Vaskar Mistri
Hello, I joined this list today. I'll start off with a problem I'm facing. I'm having some problem running the command startup.bat on Win98 SE to start JSDK2.1's servlet runner. I have classpath and everything else set up properly. The problem is that when I issue the command startup.bat at

Jasper34: Manglers

2001-06-10 Thread cmanolache
Another issue: At this moment we have 4 different manglers ( == converters between jsp files and valid class names ): - original ( uses a nice .class file hack to do versioning ) - jspc ( similar with original, but without versioning - AFAIK) - jasper33 ( versioning, simpler names without

Re: Suggested change to JNDIRealm

2001-06-10 Thread John Holman
Casey Unless I misunderstand, I think the existing JNDIRealm will handle this. In the roleSearch parameter, {1} is substituted by the username, so in your example you could have roleBase= [ basedn for user entries ] roleName=memberof roleSearch = (uid={1}) This might involve an additional

Re: cvs commit: jakarta-tomcat-connectors/jk/src/nativeREADME.configure

2001-06-10 Thread Jon Stevens
on 6/7/01 9:58 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: + Building from the cvs tree: (for develloppers only). Typo. -jon -- Open source is not available to commercial companies. -Steve Ballmer, CEO Microsoft http://www.suntimes.com/output/tech/cst-fin-micro01.html

Re: cvs commit: jakarta-tomcat-connectors/jk/src/native buildconf

2001-06-10 Thread Jon Stevens
Most shell scripts have: #!/bin/sh at the top and are also named with a suffix...like buildconf.sh -jon on 6/5/01 4:04 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: jfclere 01/06/05 04:03:59 Added: jk/src/native buildconf Log: Shell script to build the configure tools out of

Re: [ANNOUNCE] Domino redirector 1.0.2

2001-06-10 Thread Craig R. McClanahan
On Sun, 10 Jun 2001, Andy Armstrong wrote: Craig R. McClanahan wrote: On Fri, 8 Jun 2001, Andy Armstrong wrote: GOMEZ Henri wrote: Version 1.0.2 of the Lotus Domino redirector for Win32 and Linux is available now at http://free.tagish.net/domino-tomcat/

[T4] Strange error

2001-06-10 Thread Jon Stevens
Not really sure what caused this, but I just saw it printed to my window that I'm running T4 in...this is from fairly recent CVS... java.util.ConcurrentModificationException at java.util.HashMap$HashIterator.next(HashMap.java:736) at

Re: [T4] Strange error

2001-06-10 Thread Remy Maucherat
Not really sure what caused this, but I just saw it printed to my window that I'm running T4 in...this is from fairly recent CVS... java.util.ConcurrentModificationException at java.util.HashMap$HashIterator.next(HashMap.java:736) at

cvs commit: jakarta-tomcat/src/share/org/apache/jasper Constants.java

2001-06-10 Thread larryi
larryi 01/06/10 20:36:39 Modified:src/share/org/apache/jasper Constants.java Log: Deleted old imports and remaining out of spec import, javax.servlet.jsp.tagext. The tomcat_32 branch of jakarta-watchdog has been updated to not rely on the tagext import. I will try to get

cvs commit: jakarta-tomcat/src/share/org/apache/jasper/servlet JspServlet.java

2001-06-10 Thread larryi
larryi 01/06/10 20:42:31 Modified:src/share/org/apache/jasper/compiler Compiler.java PluginGenerator.java src/share/org/apache/jasper/resources messages.properties src/share/org/apache/jasper/runtime BodyContentImpl.java

Re: Jasper34: Manglers

2001-06-10 Thread Glenn Nielsen
[EMAIL PROTECTED] wrote: Another issue: At this moment we have 4 different manglers ( == converters between jsp files and valid class names ): - original ( uses a nice .class file hack to do versioning ) - jspc ( similar with original, but without versioning - AFAIK) - jasper33 (

Re: Jasper34: Manglers

2001-06-10 Thread cmanolache
On Sun, 10 Jun 2001, Glenn Nielsen wrote: Another advantage of jasper40 using a URLClassLoader for each individual JSP page is that you don't accumulate outdated classes in the classloader that eat up JVM memory when a JSP is recompiled. I haven't looked at jasper33, so please let me know