DO NOT REPLY [Bug 49793] New: Please publish Tomcat 7.0.2 artifacts on Maven central repository

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49793

   Summary: Please publish Tomcat 7.0.2 artifacts on Maven central
repository
   Product: Tomcat 7
   Version: 7.0.2
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: P2
 Component: Packaging
AssignedTo: dev@tomcat.apache.org
ReportedBy: postmas...@alishomepage.com


Two weeks after its release, the Tomcat 7.0.2 artifacts are still not available
on the Maven2 repository:
http://repo1.maven.org/maven2/org/apache/tomcat/tomcat-catalina/ only shows
version 7.0.0.

Please publish the artifacts for 7.0.2.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49793] Please publish Tomcat 7.0.2 artifacts on Maven central repository

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49793

S. Ali Tokmen  changed:

   What|Removed |Added

 CC||postmas...@alishomepage.com

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49793] Please publish Tomcat 7.0.2 artifacts on Maven central repository

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49793

Pid  changed:

   What|Removed |Added

   Priority|P2  |P5
   Severity|major   |trivial

--- Comment #1 from Pid  2010-08-21 07:16:20 EDT ---
1. Be patient.
2. The mail archive shows 7.0.2 was announced the same day you posted this bug.
3. This isn't a major bug is it?

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49793] Please publish Tomcat 7.0.2 artifacts on Maven central repository

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49793

--- Comment #2 from S. Ali Tokmen  2010-08-21 
07:47:35 EDT ---
Hello

The mail archive indicates: Tomcat 7.0.2 Released 2010-08-11 

2010-08-11 is 10 days ago, normally Maven artifacts make it in at most 48
hours.

It is a major issue for all application servers that integrate Tomcat, as they
cannot ship with a new, shiny, sexy Tomcat 7.0.2 -fixing hundreds of tickets
compared to 7.0.0.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49792] The clearReferencesLogFactoryRelease removes all loggers in the JVM (instead of only removing all loggers of the Web application that is being undeployed)

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49792

--- Comment #2 from S. Ali Tokmen  2010-08-21 
07:55:10 EDT ---
The fix would I guess look like that:

To clean up all of the current Web application's loggers:

get all loggers' names
for each logger
get all handlers
for each handler
if the handler's class can be loaded using the WebAppClassLoader
   AND cannot be loaded using the WebAppClassLoader's parent
then
  remove this handler
else don't touch
  // that logger belongs to some other application or to Tomcat
itself

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49791] The clearReferencesLogFactoryRelease removes all loggers in the JVM (instead of only removing all loggers of the Web application that is being undeployed)

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49791

--- Comment #1 from S. Ali Tokmen  2010-08-21 
07:55:46 EDT ---
The fix would I guess look like that:

To clean up all of the current Web application's loggers:

get all loggers' names
for each logger
get all handlers
for each handler
if the handler's class can be loaded using the WebAppClassLoader
   AND cannot be loaded using the WebAppClassLoader's parent
then
  remove this handler
else don't touch
  // that logger belongs to some other application
  // or to Tomcat itself

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49793] Please publish Tomcat 7.0.2 artifacts on Maven central repository

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49793

--- Comment #3 from Pid  2010-08-21 08:48:27 EDT ---
(In reply to comment #2)
> Hello
> 
> The mail archive indicates: Tomcat 7.0.2 Released 2010-08-11 
> 
> 2010-08-11 is 10 days ago, normally Maven artifacts make it in at most 48
> hours.

"Date: Fri, 20 Aug 2010 08:39:39 +0200
From: Mark Thomas 
Subject: [ANN] Apache Tomcat 7.0.2 beta released

The Apache Tomcat team announces the immediate availability of Apache
Tomcat 7.0.2 beta."

Seems pretty conclusive to me.

> It is a major issue for all application servers that integrate Tomcat, as they
> cannot ship with a new, shiny, sexy Tomcat 7.0.2 -fixing hundreds of tickets
> compared to 7.0.0.

A major issue is when there is something fundamentally wrong with a component
of the software, not when someone wants the software released earlier.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 32424] Redirecting directiories with missing trailing slash breaks web applications

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=32424

--- Comment #18 from franc...@gmail.com 2010-08-21 08:55:53 EDT ---
After having carefully read all comments here, I still do not understand why it
would not make sense to allow disabling rule 7.

Why would you serve the content rather than sending an HTTP 301 to the client.
To my knowledge search engines consider that URLs sans trailing slash and URLs
with trailing slash are different. Consequently tomcat would serve an identical
content for two different URLs which can lead to poor SEO ranking.

I'd like to know if this behavious also apply to tomcat 6.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49793] Please publish Tomcat 7.0.2 artifacts on Maven central repository

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49793

--- Comment #4 from Sebb  2010-08-21 09:12:44 EDT ---
Note that the Tomcat files show the build date.

The release date is always several days later, as the files have to be reviewed
before the release is made.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49793] Please publish Tomcat 7.0.2 artifacts on Maven central repository

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49793

--- Comment #5 from S. Ali Tokmen  2010-08-21 
10:11:59 EDT ---
Sorry, by "mailing list" I had meant the "news" on the Apache Tomcat Web site:
http://tomcat.apache.org/

What I now understand that the web site is always in advance compared to the
product -which is fine.

Is there any date you can give me about the availability of Tomcat 7.0.2 on
Maven central (which is also on Apache, by the way)

Cheers

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49795] Crash in Socket.destroy

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49795

Rainer Jung  changed:

   What|Removed |Added

  Component|APR |Native:Integration
Version|HEAD|6.0.29
 AssignedTo|b...@apr.apache.org |dev@tomcat.apache.org
Product|APR |Tomcat 6
   Target Milestone|--- |default
Summary|seg fault with stack trace  |Crash in Socket.destroy

--- Comment #2 from Rainer Jung  2010-08-22 01:55:18 
EDT ---
Moved from APR to Tomcat. I expect this needs investigation in tcnative.
See also BZ 49796, there's possibly a common root cause.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49796] Crash in SSLSocket.handshake()

2010-08-21 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49796

Rainer Jung  changed:

   What|Removed |Added

  Component|APR |Native:Integration
Version|HEAD|6.0.29
 AssignedTo|b...@apr.apache.org |dev@tomcat.apache.org
Product|APR |Tomcat 6
   Target Milestone|--- |default
Summary|seg fault with stack trace  |Crash in
   |2   |SSLSocket.handshake()

--- Comment #1 from Rainer Jung  2010-08-22 01:57:22 
EDT ---
Moved from APR to Tomcat. I expect this needs investigation in tcnative.
See also BZ 49795, there's possibly a common root cause.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org