RE: Implementation of the sessions

2002-05-21 Thread Benjamin Fonzé [benja . be]
Thanks a lot for your answer. I read these documents. But there are not a lot of details. I use session with SSL, and all I can obtain is : - SRV.7.1.2 SSL Sessions Secure Sockets Layer, the encryption technology used in the HTTPS protocol, has a mechanism built into it allowing multiple

RE: Implementation of the sessions

2002-05-21 Thread Bojan Smojver
On Tue, 2002-05-21 at 17:32, Benjamin Fonzé [benja.be] wrote: What is that mechanism ? SSL establishes a session before HTTP protocol gets on top of it (i.e. SSL is a transport layer). Once that happens, the container (Tomcat) might have access to the SSL Session ID (I know that part to be

Re: [Kin-Man] Jasper compiling wrong stuff in the wrong place...

2002-05-21 Thread jean-frederic clere
Pier Fumagalli wrote: Remy Maucherat [EMAIL PROTECTED] wrote: Thanks for the report Pier. I had been wondering for AGES why the CL would reload the webapp randomly after accessing a JSP, telling that a bean class had been modified. I couldn't find a reason why it was a bug (the

Re: Ant1.5B1/TC

2002-05-21 Thread jean-frederic clere
Anthony W. Marino wrote: Are there any side effects to using Ant 1.5B1 with existing TC drops? It works great for me. I am using ant download behind a fire wall that works only with ant-1,5B1. Thanks, Anthony -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

jsp:include a servlet and the servlet forwards to a jsp file

2002-05-21 Thread li xinqian
helloi have a jsp:include and forward problem the scenario is as follows. i have two JSP files and one servlet files. In the First File say "index.jsp" i am including one servlet file say "ServletTest". and in the included servlet file i am forwarding to the other jsp file say

Re: [Kin-Man] Jasper compiling wrong stuff in the wrong place...

2002-05-21 Thread Pier Fumagalli
jean-frederic clere [EMAIL PROTECTED] wrote: Pier Fumagalli wrote: Remy Maucherat [EMAIL PROTECTED] wrote: Thanks for the report Pier. I had been wondering for AGES why the CL would reload the webapp randomly after accessing a JSP, telling that a bean class had been modified. I couldn't

Re: Implementation of the sessions

2002-05-21 Thread Rolf Veen
Benjamin Fonzé [benja.be] wrote: What is that mechanism ? See http://www.mozilla.org/projects/security/pki/nss/ssl/ for links to SSL and TLS specs and other related information. For sessions thru cookies, see RFC-2965 (at rfc-editor.org, for example). Regards. Rolf. -- To unsubscribe,

RE: Implementation of the sessions

2002-05-21 Thread Benjamin Fonzé [benja . be]
Thank you for your help Bojan and Rolf. I'll try to understand all that :) Benja. -Original Message- From: Bojan Smojver [mailto:[EMAIL PROTECTED]] Sent: mardi 21 mai 2002 9:46 To: Tomcat Dev List Subject: RE: Implementation of the sessions On Tue, 2002-05-21 at 17:32, Benjamin

RE: Conncurency issue with tomcat???

2002-05-21 Thread Ghorpade, Rajendra
Hi Remy,Peter After some research I found out that there were no more concurrent session problems and the same request processed twice problem when I changed my simulator(test program) to use HttpClient API. There could be the a bug in implementaion of java.net.HttpUrlConenction. I tried

Re: Ant1.5B1/TC

2002-05-21 Thread Anthony W. Marino
On Tuesday 21 May 2002 05:11 am, jean-frederic clere wrote: Anthony W. Marino wrote: Are there any side effects to using Ant 1.5B1 with existing TC drops? It works great for me. I am using ant download behind a fire wall that works only with ant-1,5B1. I just started using it last evening

RE: [PROPOSAL] Tomcat 4 System.err/System.out logging

2002-05-21 Thread John Trollinger
The other problem with logging is that messages logged without a trace level are not given a default trace level so there is no way to stop those messages from being displayed. Why are messages not given a default log level if they are not created with one. John -Original Message-

Spec change: getting servlet context name / url prefix during init

2002-05-21 Thread chris brown
Hello, I'm aware (or at least, I assume!) that some of the people on this list are involved in developing the specs for the Servlet API. It would be useful to be able to obtain information about the servlet context's name (or specifically, it's URL prefix) during initialisation (either in a

RE: (Known) Problems with WebappClassLoader

2002-05-21 Thread Eriksson, Michael
Hallo Remy, I think I have nailed the problem. As it turns out java.util.jar.JarEntry.getCertificates (), which is used to retrieve the certificates in the first place, is documented thus * Returns the codeCertificate/code objects for this entry, or * codenull/code if none. This

Re: JK2/Coyote Connector Testing Effort

2002-05-21 Thread Anthony W. Marino
On Mon, 20 May 2002, Anthony W. Marino wrote: Costin, I've experienced all kinds of build problems using Ant however it's what I prefer to use and I'll pass along the changes when finished. Ant is what I prefer to use, but the final goal is to make it easy for people to build mod_jk -

Re: Spec change: getting servlet context name / url prefix duringinit

2002-05-21 Thread Craig R. McClanahan
The feedback address for comments on the Servlet Specification is printed on the cover page of the spec itself: [EMAIL PROTECTED]. This message has been cc'd to the feedback address. Servlet 2.4 is indeed the next version -- it is in the Community Review stage of the JCP process at the moment,

[PATCH] Stack based finallies in Generator.java

2002-05-21 Thread Denis Benoit
Hi Kin-Man, Here is the patch as promised. . It follows what we agreed about the two arrays simulating stacks; . It prevents generating any extra code if there is no Tags in the JSP, now this case is easy to determine thanks to pageInfo.getMaxTagNesting :) This is a first draft, I'll

Re: [PROPOSAL] Tomcat 4 System.err/System.out logging

2002-05-21 Thread Remy Maucherat
Problem --- Frequently code running within a web application context will print to System.out, System.err, printStackTrace(), etc. This output ends up getting logged to catalina.out without any timestamps. When you have multiple virtual hosts/contexts it can be a pain to correlate

Re: [Kin-Man] Jasper compiling wrong stuff in the wrong place...

2002-05-21 Thread jean-frederic clere
Pier Fumagalli wrote: jean-frederic clere [EMAIL PROTECTED] wrote: Pier Fumagalli wrote: Remy Maucherat [EMAIL PROTECTED] wrote: Thanks for the report Pier. I had been wondering for AGES why the CL would reload the webapp randomly after accessing a JSP, telling that a bean

Re: [PROPOSAL] Tomcat 4 System.err/System.out logging

2002-05-21 Thread Glenn Nielsen
Remy Maucherat wrote: Problem --- Frequently code running within a web application context will print to System.out, System.err, printStackTrace(), etc. This output ends up getting logged to catalina.out without any timestamps. When you have multiple virtual hosts/contexts it can be a

Re: [PROPOSAL] Tomcat 4 System.err/System.out logging

2002-05-21 Thread Remy Maucherat
Remy Maucherat wrote: How is Ant implemented within Tomcat for doing JSP compiles? I am concerned about Ant running within the same JVM and having to capture the JVM's System.out and System.err. Other output from catalina could get intermixed with the Ant output. Also I saw something

Re: Exception on persisted sessions - SimpleLog

2002-05-21 Thread Dr. BaTien Duong
hello: I am using Tomcat 4 binary version for jdk1.4 as a Standalone server working with Struts 1.1, no cluster. Suddenly, i have this exception popped up at the startup and shutdown of tomcat: On catalina start up - Standalone server: [-] Searching for random number generator has been

j-t-c/jk/native2/build.xml: if=linux

2002-05-21 Thread Anthony W. Marino
Where/when does the linux property get set? Thank You, Anthony -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [Kin-Man] Jasper compiling wrong stuff in the wrong place...

2002-05-21 Thread Kin-Man Chung
Haven't seen that before, and no idea why it's so. You'll need to give me a test case. Test case: touch $CATALINA_HOME/webapps/examples/jsp/colors/colrs.jsp So that Jasper will have to recompile it, and it will try (the first time) to recompile also:

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/ant Tomcat3JSPVersionFile.java

2002-05-21 Thread keith
keith 02/05/21 11:15:02 Modified:.build.xml src/share/org/apache/tomcat/ant Tomcat3JSPVersionFile.java Log: tomcat-ant changes: - move ant.properties to META-INF - add regexpclasspath attribute to version task Revision ChangesPath 1.180

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/ant/META-INF - New directory

2002-05-21 Thread keith
keith 02/05/21 11:15:23 jakarta-tomcat/src/share/org/apache/tomcat/ant/META-INF - New directory -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/ant/META-INF ant.properties

2002-05-21 Thread keith
keith 02/05/21 11:24:45 Added: src/share/org/apache/tomcat/ant/META-INF ant.properties Removed: src/share/org/apache/tomcat/ant ant.properties Log: Move ant.properties Revision ChangesPath 1.1

cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/context ContextForm.java

2002-05-21 Thread manveen
manveen 02/05/21 12:34:38 Modified:webapps/admin/WEB-INF/classes/org/apache/webapp/admin/context ContextForm.java Log: Check for context path validation only while creation of a context. Revision ChangesPath 1.6 +7 -6

DO NOT REPLY [Bug 7488] - JspC generates wrong package with -webapp on PC/DOS/NT/Win2k

2002-05-21 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=7488. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-4.0/webapps/admin/WEB-INF/classes/org/apache/webapp/admin/context ContextForm.java

2002-05-21 Thread manveen
manveen 02/05/21 12:47:10 Modified:webapps/admin/WEB-INF/classes/org/apache/webapp/admin/context ContextForm.java Log: cleaning up. Revision ChangesPath 1.7 +5 -5

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans MBeanFactory.java

2002-05-21 Thread amyroh
amyroh 02/05/21 13:10:53 Modified:catalina/src/share/org/apache/catalina/mbeans MBeanFactory.java Log: Fix to create root context with an empty string instead of '/'. Revision ChangesPath 1.34 +5 -4

Re: [Kin-Man] Jasper compiling wrong stuff in the wrong place...

2002-05-21 Thread Pier Fumagalli
jean-frederic clere [EMAIL PROTECTED] wrote: Pier Fumagalli wrote: jean-frederic clere [EMAIL PROTECTED] wrote: Pier Fumagalli wrote: Remy Maucherat [EMAIL PROTECTED] wrote: Thanks for the report Pier. I had been wondering for AGES why the CL would reload the webapp randomly after

Re: [PROPOSAL] Tomcat 4 System.err/System.out logging

2002-05-21 Thread Pier Fumagalli
Remy Maucherat [EMAIL PROTECTED] wrote: Remy Maucherat wrote: How is Ant implemented within Tomcat for doing JSP compiles? I am concerned about Ant running within the same JVM and having to capture the JVM's System.out and System.err. Other output from catalina could get intermixed

Re: [Kin-Man] Jasper compiling wrong stuff in the wrong place...

2002-05-21 Thread Pier Fumagalli
Kin-Man Chung [EMAIL PROTECTED] wrote: Haven't seen that before, and no idea why it's so. You'll need to give me a test case. Test case: touch $CATALINA_HOME/webapps/examples/jsp/colors/colrs.jsp So that Jasper will have to recompile it, and it will try (the first time) to

Case Sensitivity on Windows systems...

2002-05-21 Thread Steven Velez
Hello All, This question really transcends the users list, but is not really completely development related, but please hear me out. I am using tomcat on a windows server, and I am accessing it through ajp from an IIS server. Now, for reasons that I will go in to if desired, I need to make my

DO NOT REPLY [Bug 9189] - Port specified in doc is incorrect

2002-05-21 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=9189. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: [PROPOSAL] Tomcat 4 System.err/System.out logging

2002-05-21 Thread Kin-Man Chung
However, I'd like to point out that there's no other choice but to upgrade. In many situations, the current Jasper 2 generated servlets don't compile to valid bytecode when using the classic compiler (and you get a VerifyError when loading the class; this happens esp when using JSTL).

DO NOT REPLY [Bug 9071] - JSP page can not find the classes in WEB-INF/lib directory

2002-05-21 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=9071. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: jakarta-tomcat-4.0/webapps/admin/host hosts.jsp

2002-05-21 Thread manveen
manveen 02/05/21 16:45:38 Modified:webapps/admin/context contexts.jsp webapps/admin/host hosts.jsp Log: Look for the host name pattern in the ObjectName to identify the host and context the admin app is running on. Revision ChangesPath 1.6 +2 -2

Re: [VOTE] Rate milestone 4.1.2

2002-05-21 Thread Remy Maucherat
ballot [ ] Alpha [ ] Beta /ballot Ok, so after an apparent lack of interest, I'll release this milestone as an alpha. Remy -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: [PROPOSAL] Tomcat 4 System.err/System.out logging

2002-05-21 Thread Pier Fumagalli
Kin-Man Chung [EMAIL PROTECTED] wrote: However, I'd like to point out that there's no other choice but to upgrade. In many situations, the current Jasper 2 generated servlets don't compile to valid bytecode when using the classic compiler (and you get a VerifyError when loading the

Re: [VOTE] Rate milestone 4.1.2

2002-05-21 Thread Pier Fumagalli
Remy Maucherat [EMAIL PROTECTED] wrote: ballot [ ] Alpha [ ] Beta /ballot Ok, so after an apparent lack of interest, I'll release this milestone as an alpha. I believe you caught us all over a _very_ busy weekend, with (at least from some of us' side, a big huge phat ASF members meeting

cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 CoyoteRequestFacade.java CoyoteResponseFacade.java CoyoteRequest.java CoyoteResponse.java

2002-05-21 Thread remm
remm02/05/21 18:15:18 Modified:coyote/src/java/org/apache/coyote/tomcat4 CoyoteRequest.java CoyoteResponse.java Added: coyote/src/java/org/apache/coyote/tomcat4 CoyoteRequestFacade.java CoyoteResponseFacade.java Log: - Fix

Re: [VOTE] Rate milestone 4.1.2

2002-05-21 Thread Remy Maucherat
Remy Maucherat [EMAIL PROTECTED] wrote: ballot [ ] Alpha [ ] Beta /ballot Ok, so after an apparent lack of interest, I'll release this milestone as an alpha. I believe you caught us all over a _very_ busy weekend, with (at least from some of us' side, a big huge phat ASF

Re: [VOTE] Rate milestone 4.1.2

2002-05-21 Thread Pier Fumagalli
Remy Maucherat [EMAIL PROTECTED] wrote: Originally, I was hopeful that this would be beta-worthy, but it turns out there are some issues with the Jasper 2 build included with it: - problem when more than one TLV is used on a single page - old javac may generate bad bytecode for the generated

Re: [VOTE] Rate milestone 4.1.2

2002-05-21 Thread Remy Maucherat
Remy Maucherat [EMAIL PROTECTED] wrote: Originally, I was hopeful that this would be beta-worthy, but it turns out there are some issues with the Jasper 2 build included with it: - problem when more than one TLV is used on a single page - old javac may generate bad bytecode for the

[VOTE] New committer: Denis Benoit

2002-05-21 Thread Remy Maucherat
I'd like to propose Denis Benoit Denis.Benoit at fbn.ca as a committer on the Tomcat project. Denis has contributed patches to Jasper 2 which brings an impressive performance improvement when using JSP pages which rely heavily on tags, such as the administration web application available in

RE: [VOTE] New committer: Denis Benoit

2002-05-21 Thread Keith Wannamaker
+1 Keith | -Original Message- | From: Remy Maucherat [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, May 21, 2002 9:33 PM | To: [EMAIL PROTECTED] | Subject: [VOTE] New committer: Denis Benoit | | | I'd like to propose Denis Benoit Denis.Benoit at fbn.ca as a committer on | the Tomcat

[Coyote] Coyote 1.0 Release Candidate 2 available

2002-05-21 Thread Remy Maucherat
Coyote 1.0 RC 2 is now available, and includes: - HTTP/1.1 protocol handler - JK 2 protocol handler, with support for the AJP 1.3 protocol - An adapter for Tomcat 3.3.x - An adapter for Tomcat 4.x The only change over RC 1 is fixing compatibility with Tomcat 4.0.x. Note: The version of Coyote