FW: Using Xerces in my Application

2001-01-28 Thread Kevin Jones
Sorry about the cross-post. I posted this is user and I meant to post it here. Could you guys post any replies here please? Thanks Kevin Jones DevelopMentor www.develop.com -Original Message- From: Kevin Jones [mailto:[EMAIL PROTECTED]] Sent: 27 January 2001 08:25 To: Tomcat-User

RE: Filter Chains slow first time it is called

2001-01-31 Thread Kevin Jones
is struggling to reconcile this (that's all I can think of). Netscape has no problems (for once :-) ), Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 31 January 2001 19:21 To: [EMAIL PROTECTED] Subject: Re: Filter

[REPOST] Using Xerces in my Application

2001-02-02 Thread Kevin Jones
want to use a different parser (such as Oracle's) will it work (I haven't tried this BTW)? Kevin Jones DevelopMentor www.develop.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: do filters work ...

2001-02-02 Thread Kevin Jones
-name url-pattern/hello.jsp/url-pattern /filter-mapping Even if demo is asubdirectory I would try the first filter mapping here (i.e. filter everything) and see if that works, Kevin Jones DevelopMentor www.develop.com -Original Message- From: Grobe, Gary [mailto:[EMAIL

Taglibs and Manifests

2001-02-25 Thread Kevin Jones
The current beta-1 of TC4 requires that taglib jar files contain a manifest. TC3.2 doesn't. Is this a requirement anywhere? I've checked the JSP specs and the JAR guide. Thanks, Kevin Jones DevelopMentor www.develop.com

Still have XML loading problems

2001-03-23 Thread Kevin Jones
that what's happening is that my listener loads, loads Xerces and executes OK. The jsp Servlet then tries to load crimson/JAXP and *bang* sealing violation. Sorry about this - the XML stuff had been going so well until then! Kevin Jones DevelopMentor www.develop.com

RE: Still have XML loading problems

2001-03-23 Thread Kevin Jones
SP servlet and loaded it early? Could you preload jasper somewhere else? Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 23 March 2001 19:05 To: Kevin Jones Cc: Tomcat-Dev Subject: Re: Still have XML loadin

RE: Still have XML loading problems

2001-03-23 Thread Kevin Jones
only other possible workaround I can think if is to exhaustively load every single class file out of jaxp.jar and crimson.jar at startup time. That seems horrendously wasteful of memory (especially when you consider that this has to be done for each web app). Agreed Kevin Jones DevelopMentor www.develop.com

RE: Still have XML loading problems

2001-03-23 Thread Kevin Jones
Craig, bear with my ignorance of how Catalina works at this point. I'm assuming that the JSP servlet compiles the 'raw' JSP-XML-Java and then compiles this to a .class file. Why does the Jasper class-loader delegate to the web-apps classloader, isn't the Jasper step entirely independent. If so,

RE: Still have XML loading problems

2001-03-24 Thread Kevin Jones
that would speed up the runtime code as well. What do you think? I think this is a great idea - I'd certainly be interested, Kevin Jones DevelopMentor www.develop.com

RE: Still have XML loading problems

2001-03-25 Thread Kevin Jones
isible in the webapp class loader (or vice versa) -- you get class cast exceptions at that point. Craig, can we do this for now - it will solve these problems in the short term and we can then think about re-writing Jasper? Kevin Jones DevelopMentor www.develop.com

RE: Xalan Tomcat: sealing violation

2001-03-26 Thread Kevin Jones
Robert, this is a well known issue that is being worked on. Check back on the list over the last couple of days for another discussion of this :-) Kevin Jones DevelopMentor www.develop.com -Original Message- From: Robert Petersen [mailto:[EMAIL PROTECTED]] Sent: 26 March 2001 11:20

Listeners

2001-03-27 Thread Kevin Jones
Tomcat 4.0 stops configuring listeners if one of the listeners in the list isn't present, should it carry on configuring the rest of the listeners it finds? The spec is silent on this and it seems odd that if somebody (maybe accidentally) deletes a listener class all other following listeners are

RE: Listeners

2001-03-27 Thread Kevin Jones
also add a note in the spec. about this? Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 28 March 2001 04:14 To: Tomcat-Dev Subject: Re: Listeners On Tue, 27 Mar 2001, Kevin Jones wrote: Tomcat 4.0 stops

FW: Tomcat 4 service

2001-03-27 Thread Kevin Jones
I posted this to tomcat-user with no response. Does such a beast exist? If not I'll volunteer to port the Tomcat 3.2 code. Just point me at it! Kevin Jones DevelopMentor www.develop.com -Original Message- From: Kevin Jones [mailto:[EMAIL PROTECTED]] Sent: 27 March 2001 22:44

RE: problems building the tomcat Source

2001-03-28 Thread Kevin Jones
do you have tools.jar on your classpath? c:\jdk1.3\lib\tools.jar Kevin Jones DevelopMentor www.develop.com -Original Message- From: Anil [mailto:[EMAIL PROTECTED]] Sent: 28 March 2001 10:23 To: [EMAIL PROTECTED] Subject: problems building the tomcat Source I have been trying

RE: FW: Tomcat 4 service

2001-03-28 Thread Kevin Jones
non-roots not being able to run Tomcat on port 80. This is NT/W2K we're talking about right? Or is there some connection between the service code and *nix? Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 28 March

RE: [ANNOUNCE] Tomcat 4.0 Beta 2

2001-03-30 Thread Kevin Jones
Bonza job guys, thank you :-) Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 31 March 2001 08:27 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [ANNOUNCE] Tomcat

Session Persistence

2001-03-31 Thread Kevin Jones
How do I enable the persistence manager in Beta 2. There's no entry in the server.xml file, and I couldn't see anything in the docs. Thanks, Kevin Jones DevelopMentor www.develop.com

RE: loader.html

2001-05-03 Thread Kevin Jones
OK, you've caught me. :-) The reason I wanted the doc is to do with the re-loader problem I'm having. I wanted to know if I'd configured the loader correctly Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 02

class reloading

2001-05-04 Thread Kevin Jones
' be there ? This is with the latest nightly build BTW, Kevin Jones DevelopMentor www.develop.com

Class Reloading

2001-05-11 Thread Kevin Jones
/Browse.class The code should check which 'repository' the class is in and only add that entry to the directory. Of course removing all the jars or putting a break after the first loop (a brutal but effective solution in my case) fixes the problem. Hope this helps, Kevin Jones DevelopMentor

RE: Class Reloading

2001-05-11 Thread Kevin Jones
(is this what you mean?). I believe (I've yet to test this) that the only way reloading works currently (for me) is if I have no jars in web-inf/lib, Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 11 May 2001 18:58

RE: Class Reloading

2001-05-13 Thread Kevin Jones
This now works in the latest nightly drop, thanks guys, Kevin Jones DevelopMentor www.develop.com -Original Message- From: Kevin Jones [mailto:[EMAIL PROTECTED]] Sent: 11 May 2001 22:44 To: [EMAIL PROTECTED] Subject: RE: Class Reloading But, other than efficiency concerns

Beta5 Release

2001-05-15 Thread Kevin Jones
Is there a plan to release Tomcat 4.0 Beta 5 this week? Craig hinted this would happen, Kevin Jones DevelopMentor www.develop.com

RE: [ANNOUNCEMENT] Apache Tomcat 4.0 Final Release

2001-09-18 Thread Kevin Jones
Excellent :-) But where's the servlet API jar? Kevin Jones Developmentor www.develop.com -Original Message- From: craigmcc@localhost [mailto:craigmcc@localhost]On Behalf Of Craig R. McClanahan Sent: 18 September 2001 04:26 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; [EMAIL

RE: [ANNOUNCEMENT] Apache Tomcat 4.0 Final Release

2001-09-18 Thread Kevin Jones
Javadocs). I see that I forgot to put up the binary distributions of jakarta-servletapi-4; will do that in a sec. That's what I meant - thanks Kevin Jones Developmentor www.develop.com -Original Message- From: craigmcc@localhost [mailto:craigmcc@localhost]On Behalf Of Craig R

RE: ClassCastException

2001-10-03 Thread Kevin Jones
I had exactly this problem; but I had jdbc2_0-stdext.jar not in the jre/lib/ext but in my webapp/web-inf/lib directory. Putting jdbc2_0-stdext.jar in common/lib along with the tyrex files solved the problem (classloaders, you gotta love 'em) Kevin Jones Developmentor www.develop.com

RE: IIS and TC4

2001-11-15 Thread Kevin Jones
Thank you, Kevin Jones Developmentor www.develop.com -Original Message- From: GOMEZ Henri [mailto:[EMAIL PROTECTED]] Sent: 14 November 2001 22:30 To: Tomcat Developers List Subject: RE: IIS and TC4 sorry to ask on this list as this is really a user question, but I'm

RE: Default classes loaded by Tocmat

2001-12-27 Thread Kevin Jones
Why not implement your own JSP base class that imports the classes/packages you need and have all your pages extend that new class. This would also be portable across implementations! Kevin Jones Developmentor www.develop.com -Original Message- From: Anand Bashyam Narasimham [mailto

Missing CGIServlet from nightly build

2001-06-18 Thread Kevin Jones
I'm trying to use the Tomcat nightly's, and found that the org.apache.catalina.servlets.CGIServlet class is missing from the 16th, 17th and 18th June builds, although it (an its related classes) is in the earlier nightlys, Kevin Jones DevelopMentor www.develop.com

RE: Missing CGIServlet from nightly build

2001-06-19 Thread Kevin Jones
Thanks John. Does this make the nightlies unusable? Is there a plan to move to 1.3? Kevin Jones DevelopMentor www.develop.com -Original Message- From: Reilly, John [mailto:[EMAIL PROTECTED]] Sent: 19 June 2001 13:28 To: '[EMAIL PROTECTED]' Subject: RE: Missing CGIServlet from

RE: Missing CGIServlet from nightly build

2001-06-19 Thread Kevin Jones
The full exception was a ClassNotFoundException. From the 18th June nightly CGIServlet.class is definitely not in catalina.jar I've just downloaded the latest nightly and it's fine. Thank you, Kevin Jones DevelopMentor www.develop.com

RE: New Tomcat 4 installer nightly

2001-07-17 Thread Kevin Jones
is set, offer the user the choice. If you've already done this then ignore my ramblings! Kevin Jones DevelopMentor www.develop.com -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED]] Sent: 17 July 2001 06:10 To: [EMAIL PROTECTED] Subject: New Tomcat 4 installer nightly

Problem starting latest nightly

2001-07-17 Thread Kevin Jones
(org.apache.catalina.WebappLoader, className)); I assume this should be mapper.addRule(prefix + /Loader, new CreateLoaderAction(org.apache.catalina.loader.WebappLoader, className)); Kevin Jones DevelopMentor www.develop.com

RE: Problem starting latest nightly

2001-07-17 Thread Kevin Jones
Thanks Craig, what's the difference between the two (WebappLoader and StandardLoader)? and should I care? Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 17 July 2001 17:34 To: Tomcat-Dev Subject: Re: Problem

Strange looping behaviour in B6

2001-07-24 Thread Kevin Jones
without me doing anything. If I take the .jar.old files out the behaviour stops! If you can't repro this I'll happily send you the entire webapp (it's big) and/or work on reproing this on a simpler scale, Kevin Jones DevelopMentor www.develop.com

Form based logon problems in T4B6

2001-07-24 Thread Kevin Jones
in \course\gjava I get the logon page, if I enter an invalid username and password I get the logon page again - *not* the error page. If I now enter the correct password I get the error page, Kevin Jones DevelopMentor www.develop.com

RE: Form based logon problems in T4B6

2001-07-25 Thread Kevin Jones
OK Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 25 July 2001 00:10 To: Tomcat-Dev Subject: Re: Form based logon problems in T4B6 Sounds like a bug introduced when the functionality was modified recently

RE: Form based logon problems in T4B6

2001-07-26 Thread Kevin Jones
Sorry Craig, I missed this post. I'll try the latest nightly, if it doesn't work I'll try and create a small web-app that shows it, Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 25 July 2001 23:06 To: [EMAIL

RE: Form based logon problems in T4B6

2001-07-26 Thread Kevin Jones
I've tried the latest nightly and I still get the same problem. I've attached a webapp for you to try. Could be I'm doing something stupid of course Kevin Jones DevelopMentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 26 July 2001

pageEncoding and Jasper

2002-01-30 Thread Kevin Jones
can't use %@ page contentType=text/html; charset=windows-1256 % I have to use META HTTP-EQUIV=content-type CONTENT=text/html; charset=windows-1256 Some of this might seem like a user question, but I'm more concerned about how Jasper works and what it should be doing. Thanks, Kevin Jones

RE: pageEncoding and Jasper

2002-01-31 Thread Kevin Jones
So it's only used when compiling the JSP to a servlet? Kevin Jones Developmentor www.develop.com -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED]] Sent: 30 January 2002 21:07 To: Tomcat Developers List Subject: Re: pageEncoding and Jasper - Original

RE: pageEncoding and Jasper

2002-01-31 Thread Kevin Jones
compiler - I think I understand now! Kevin Jones Developmentor www.develop.com -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: 30 January 2002 21:09 To: Tomcat Developers List Subject: Re: pageEncoding and Jasper The rules that cover this stuff

Tyrex exception when using tomcat 4.0.4 (b1 and b2)

2002-04-02 Thread Kevin Jones
://nagoya.apache.org/bugzilla/show_bug.cgi?id=7693). If anybody could say 'do this' and it would fix the problem I'd be grateful, Kevin Jones Developmentor www.develop.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Tyrex exception when using tomcat 4.0.4 (b1 and b2)

2002-04-03 Thread Kevin Jones
but if the tyrex guys are retired who's changed this in TC4.0.4? BTW what is DBCP? Kevin Jones Developmentor www.develop.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Lev Assinovsky Sent: 03 April 2002 09:08 To: Tomcat Developers List

RE: Tyrex exception when using tomcat 4.0.4 (b1 and b2)

2002-04-03 Thread Kevin Jones
Tomcat, as it is a lot easier to use and configure (in addition to the maintenace and visibility problems Tyrex has). Excellent - which version of Tomcat is this going to be in (4.1?). Thanks for the response, Kevin Jones Developmentor www.develop.com -Original Message- From: Remy

Digest Authentication

2002-06-13 Thread Kevin Jones
? Thanks, Kevin Jones Developmentor www.develop.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Digest again

2002-06-13 Thread Kevin Jones
=org.apache.catalina.realm.UserDatabaseRealm debug=0 resourceName=UserDatabase/ then DIGEST doesn't work (BASIC still works) Do I need to add anything else, or should I report this as a bug? Kevin Jones Developmentor www.develop.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

RE: 5.0 proposal

2002-06-24 Thread Kevin Jones
FYI JSR 152 is now in PFD http://jcp.org/aboutJava/communityprocess/review/jsr152/index.html Kevin Jones Developmentor www.develop.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Glenn Nielsen Sent: 25 June 2002 05:34 To: Tomcat

RE: [VOTE] [5.0] Milestones

2002-10-02 Thread Kevin Jones
Not a vote, just wondered when we can expect to see the milestone builds appearing? Kevin Jones Developmentor www.develop.com -Original Message- From: Larry Isaacs [mailto:[EMAIL PROTECTED]] Sent: 30 September 2002 20:14 To: Tomcat Developers List Subject: RE: [VOTE] [5.0

RE: [VOTE] [5.0] Milestones

2002-10-03 Thread Kevin Jones
Thanks Remy, Kevin Jones Developmentor www.develop.com -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED]] Sent: 03 October 2002 11:22 To: Tomcat Developers List Subject: Re: [VOTE] [5.0] Milestones Kevin Jones wrote: Not a vote, just wondered when we can

Manager App

2002-11-28 Thread Kevin Jones
in the webapps directory get merged back into server.xml? Thanks, Kevin Jones Developmentor www.develop.com -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: where to download tomcat 4.1 nightly builds?

2003-01-06 Thread Kevin Jones
ditto for 5.0. Where are the nightlies gone - I've downloaded them in the past but they seem to have disappeared off the site? Kevin Jones Developmentor www.develop.com -Original Message- From: Andreas Schildbach [mailto:[EMAIL PROTECTED]] Sent: 06 January 2003 09:10 To: [EMAIL

RE: where to download tomcat 4.1 nightly builds?

2003-01-07 Thread Kevin Jones
Thanks both, Kevin Jones Developmentor www.develop.com -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED]] Sent: 06 January 2003 18:26 To: Tomcat Developers List Subject: Re: where to download tomcat 4.1 nightly builds? Petr Jiricka wrote: I was able to find

RE: Unable to compile class for JSP

2003-01-07 Thread Kevin Jones
, set java_home to c:\j2sdk1.4.1 and add c:\j2sdk1.4.1\bin to your path, then try it again Kevin Jones Developmentor www.develop.com -Original Message- From: news [mailto:[EMAIL PROTECTED]] On Behalf Of Costin Manolache Sent: 07 January 2003 00:53 To: [EMAIL PROTECTED] Subject: Re

RE: Strange Cookie behavior with ie 6 and subdomains

2003-01-13 Thread Kevin Jones
Unfortunately the name of the session cookie isn't configurable - it's set by the Servlet specification to be jsessionid, Kevin Jones Developmentor www.develop.com -Original Message- From: Michael Wyraz [mailto:[EMAIL PROTECTED]] Sent: 13 January 2003 13:26 To: [EMAIL PROTECTED

Building TC5

2003-01-17 Thread Kevin Jones
org.apache.catalina classes can't be found. I've seen various comments on here that building from sources is easy, so what am I missing? :-) Thanks, Kevin Jones Developmentor -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Broken TC5 Nightly builds

2003-01-17 Thread Kevin Jones
As I've just posted I can't (yet) build TC from sources. The reason I want to build from sources is that the nightly builds seem to be broken. The directory is being created (so Jan 17th is there) but the files aren't there. The latest date for the nightly's is Jan 14th Kevin Jones Developmentor

Re: Building TC5

2003-01-17 Thread Kevin Jones
Thanks Remy, I assume you mean I should start from scratch again? Kevin On Fri, 2003-01-17 at 17:12, Remy Maucherat wrote: Kevin Jones wrote: I'm trying to build TC 5 from sources and failing horribly. Firstly I connected to cvs and checked out jakarta-tomcat-5 this contains

Re: Building TC5

2003-01-17 Thread Kevin Jones
Maucherat wrote: Kevin Jones wrote: Thanks Remy, I assume you mean I should start from scratch again? Yes, follow these instructions: http://jakarta.apache.org/tomcat/building.html Remy -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto

Re: Building TC5

2003-01-19 Thread Kevin Jones
Thanks, that's worked great, Kevin Jones On Fri, 2003-01-17 at 20:33, Jeanfrancois Arcand wrote: Hi Kevin, I've just commited a fix for build.properties.default. You should try: cvs checkout jakarta-tomcat-5 cd jakarta-tomcat-5 ant download ant checkout ant dist I've just did

RE: Webapp classloader question.

2003-10-10 Thread Kevin Jones
in here assuming I know the whole thread, and this is also a subject dear to my heart as I've had so many go arounds of this on so many different Tomcat versions. BTW2 the Servlet specification was written with exactly this problem in mind, i.e. making sure the 'right' XML parser was loaded Kevin Jones