Picon
Favicon

Re: [ANN] Apache Tomcat 6.0.10 released

Great job all, been waiting so long for this, about wet my pants :)

But really my way of saying thanks is by making Tomcat 6.0.10 (release)
available on Gentoo. Ebuild was just committed to tree, should hit
mirrors and be available for sync ~4hrs or so.

So long as no major bugs are filed, will be stable on Gentoo in ruffly
30 days. It's been pretty solid so far, so likely any bugs would be
Gentoo specific, and likely my fault :)

Otherwise thanks again and congrats.

--

-- 
William L. Thomson Jr.
Gentoo/Java
bugzilla | 1 Mar 01:24
Picon
Favicon

DO NOT REPLY [Bug 41720] - SSL certificate fails after upgrading to 5.5.17

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41720>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41720

markt <at> apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID

------- Additional Comments From markt <at> apache.org  2007-02-28 16:24 -------
Bugzilla is not a support forum. Please use the Tomcat users mailing list.

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
markt | 1 Mar 01:26
Picon
Favicon
Gravatar

svn commit: r513079 - in /tomcat/connectors/trunk: coyote/src/java/org/apache/coyote/Request.java util/java/org/apache/tomcat/util/http/MimeHeaders.java

Author: markt
Date: Wed Feb 28 16:26:12 2007
New Revision: 513079

URL: http://svn.apache.org/viewvc?view=rev&rev=513079
Log:
As per RFC2616, requests with multiple content-length headers are invalid.

Modified:
    tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java
    tomcat/connectors/trunk/util/java/org/apache/tomcat/util/http/MimeHeaders.java

Modified: tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java?view=diff&rev=513079&r1=513078&r2=513079
==============================================================================
--- tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java (original)
+++ tomcat/connectors/trunk/coyote/src/java/org/apache/coyote/Request.java Wed Feb 28 16:26:12 2007
@@ -294,7 +294,7 @@
     public long getContentLengthLong() {
         if( contentLength > -1 ) return contentLength;

-        MessageBytes clB = headers.getValue("content-length");
+        MessageBytes clB = headers.getUniqueValue("content-length");
         contentLength = (clB == null || clB.isNull()) ? -1 : clB.getLong();

         return contentLength;

Modified: tomcat/connectors/trunk/util/java/org/apache/tomcat/util/http/MimeHeaders.java
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/util/java/org/apache/tomcat/util/http/MimeHeaders.java?view=diff&rev=513079&r1=513078&r2=513079
==============================================================================
(Continue reading)

markt | 1 Mar 01:28
Picon
Favicon
Gravatar

svn commit: r513080 - /tomcat/container/tc5.5.x/webapps/docs/changelog.xml

Author: markt
Date: Wed Feb 28 16:28:57 2007
New Revision: 513080

URL: http://svn.apache.org/viewvc?view=rev&rev=513080
Log:
Update change log

Modified:
    tomcat/container/tc5.5.x/webapps/docs/changelog.xml

Modified: tomcat/container/tc5.5.x/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/container/tc5.5.x/webapps/docs/changelog.xml?view=diff&rev=513080&r1=513079&r2=513080
==============================================================================
--- tomcat/container/tc5.5.x/webapps/docs/changelog.xml (original)
+++ tomcat/container/tc5.5.x/webapps/docs/changelog.xml Wed Feb 28 16:28:57 2007
@@ -32,6 +32,13 @@
       </fix>
     </changelog>
   </subsection>
+  <subsection name="Coyote">
+    <changelog>
+      <fix>
+        Requests with multiple content-length headers are now rejected. (markt)
+      </fix>
+    </changelog>
+  </subsection>
 </section>

 <section name="Tomcat 5.5.22 (fhanik)">
(Continue reading)

bugzilla | 1 Mar 01:32
Picon
Favicon

DO NOT REPLY [Bug 38489] - Frequent Broken Pipe Error

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=38489>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38489

apache <at> purvis.ws changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |apache <at> purvis.ws

--

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
Kent Tong | 1 Mar 03:08
Favicon

Re: reload on demand

Filip Hanik - Dev Lists <devlists <at> hanik.com> writes:

> personally I don't see a very high value of it.
> If I remember correctly, a different approach has already been 
> implemented using one more layer of classloaders.
> you'd need to search around or someone might jump in and let you know 
> where it is.

Is that classloader included in Tomcat?
Yoav Shapira | 1 Mar 03:14
Picon
Favicon
Gravatar

Re: reload on demand

Hola,

On 2/28/07, Kent Tong <kent <at> cpttm.org.mo> wrote:
> Filip Hanik - Dev Lists <devlists <at> hanik.com> writes:
>
> > personally I don't see a very high value of it.
> > If I remember correctly, a different approach has already been
> > implemented using one more layer of classloaders.
> > you'd need to search around or someone might jump in and let you know
> > where it is.
>
> Is that classloader included in Tomcat?

There's reloadable as a Context attribute, documented at
http://tomcat.apache.org/tomcat-5.5-doc/config/context.html, and you
can also define a list of static resources (not classes) to be watched
to trigger a reload, via the WatchedResources element.  See the page
above and the default Context.xml that ships with Tomcat for an
example.

Yoav
Kent Tong | 1 Mar 07:53
Favicon

Re: reload on demand

Yoav Shapira <yoavs <at> apache.org> writes:

> There's reloadable as a Context attribute, documented at
> http://tomcat.apache.org/tomcat-5.5-doc/config/context.html, and you
> can also define a list of static resources (not classes) to be watched
> to trigger a reload, via the WatchedResources element.  See the page
> above and the default Context.xml that ships with Tomcat for an
> example.

Yes, I know about the reloadable flag. But what I'd like is to
reload it only when the webapp is accessed again. I don't
want it to keep reloading when I make changes to my Java
files. Only when I am ready to test run it, would I like it
to reload automatically.
Mladen Turk | 1 Mar 08:16
Picon
Favicon
Gravatar

Re: Tagging JK 1.2.21

Rainer Jung wrote:
> 
> I'm travelin at the moment, otherwise I would have suggested to tag even 
> earlier. Anyone planning to apply important changes to trunk before 
> saturday, please show up now :)
> 

No changes.
I would like to double check the IIS builds, but the testing
will be done by Friday.

Regards,
Mladen.
Rajendra Sakpal | 1 Mar 08:36
Picon

Specifying relative path for TOMCAT 5.5 ?

Hi,

I am using TOMCAT 5.5.  I am creating a file in class that is called from a
JSP.  However, the relative path that I have specified in the class doesn't
seem to work.  The path that I have used is
:"/webapps/Jonathon/WEB-INF/etc/subscriber.txt".

Can someone please let me know, what is wrong with the relative path ?

thanks in advance,
Rajendra

Gmane