Re: [RESULT][VOTE] Release Apache Tomcat 7.0.70

2016-06-19 Thread Violeta Georgieva
Hi,

2016-06-15 22:47 GMT+03:00 Violeta Georgieva :
>
> The proposed Apache Tomcat 7.0.70 release is now available for voting.
>
> It can be obtained from:
> https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.70/
> The Maven staging repo is:
> https://repository.apache.org/content/repositories/orgapachetomcat-1088/
> The svn tag is:
> http://svn.apache.org/repos/asf/tomcat/tc7.0.x/tags/TOMCAT_7_0_70/
>
> The proposed 7.0.70 release is:
> [ ] Broken - do not release
> [ ] Stable - go ahead and release as 7.0.70 Stable


+1 (binding):   violetagg, mgrigorov, fschumacher, kfujino

No other voters were cast.

The vote has passed.

I'll do the release shortly and announce it once the mirrors catch up.


> Regards,
> Violeta


[GitHub] tomcat-maven-plugin pull request #24: fix path resolution under windows

2016-06-19 Thread ptzafrir
GitHub user ptzafrir opened a pull request:

https://github.com/apache/tomcat-maven-plugin/pull/24

fix path resolution under windows

URL translate spaces to %20 and thus is unable to resolve jar paths located 
in directory with spaces in the path (as is the case under windows).

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/ptzafrir/tomcat-maven-plugin tc8.x

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/tomcat-maven-plugin/pull/24.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #24


commit 11dd14798670585e0e73ddfae4407426e57c3ccf
Author: Tzafrir Poupko 
Date:   2016-06-20T06:17:27Z

fix path resolution under windows




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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



svn commit: r1749257 - /tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java

2016-06-19 Thread kfujino
Author: kfujino
Date: Mon Jun 20 02:43:05 2016
New Revision: 1749257

URL: http://svn.apache.org/viewvc?rev=1749257&view=rev
Log:
No-functional change.
Fix code format.

Modified:
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java

Modified: 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java?rev=1749257&r1=1749256&r2=1749257&view=diff
==
--- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java 
(original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java 
Mon Jun 20 02:43:05 2016
@@ -35,7 +35,7 @@ import org.apache.juli.logging.LogFactor
  * A channel to handle RPC messaging
  * @author Filip Hanik
  */
-public class RpcChannel implements ChannelListener{
+public class RpcChannel implements ChannelListener {
 private static final Log log = LogFactory.getLog(RpcChannel.class);
 
 public static final int FIRST_REPLY = 1;
@@ -98,7 +98,7 @@ public class RpcChannel implements Chann
 }
 } catch ( InterruptedException ix ) {
 Thread.currentThread().interrupt();
-}finally {
+} finally {
 responseMap.remove(key);
 }
 return collector.getResponses();
@@ -127,7 +127,7 @@ public class RpcChannel implements Chann
 }
 }//synchronized
 }//end if
-} else{
+} else {
 boolean finished = false;
 final ExtendedRpcCallback excallback = (callback instanceof 
ExtendedRpcCallback)?((ExtendedRpcCallback)callback) : null;
 boolean asyncReply = ((replyMessageOptions & 
Channel.SEND_OPTIONS_ASYNCHRONOUS) == Channel.SEND_OPTIONS_ASYNCHRONOUS);
@@ -157,7 +157,7 @@ public class RpcChannel implements Chann
 channel.send(new Member[] {sender}, 
rmsg,replyMessageOptions & ~Channel.SEND_OPTIONS_SYNCHRONIZED_ACK);
 }
 finished = true;
-}catch ( Exception x )  {
+} catch ( Exception x )  {
 if (excallback != null && !asyncReply) {
 excallback.replyFailed(rmsg.message, reply, sender, x);
 } else {
@@ -185,7 +185,7 @@ public class RpcChannel implements Chann
 if ( msg instanceof RpcMessage ) {
 RpcMessage rmsg = (RpcMessage)msg;
 return Arrays.equals(rmsg.rpcId,rpcId);
-}else return false;
+} else return false;
 }
 
 public Channel getChannel() {
@@ -255,7 +255,7 @@ public class RpcChannel implements Chann
 this(key, options, destcnt, 0);
 }
 
-public void addResponse(Serializable message, Member sender){
+public void addResponse(Serializable message, Member sender) {
 Response resp = new Response(sender,message);
 responses.add(resp);
 }



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



svn commit: r1749256 - /tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java

2016-06-19 Thread kfujino
Author: kfujino
Date: Mon Jun 20 02:42:01 2016
New Revision: 1749256

URL: http://svn.apache.org/viewvc?rev=1749256&view=rev
Log:
No-functional change.
Fix code format.

Modified:
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java

Modified: 
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java?rev=1749256&r1=1749255&r2=1749256&view=diff
==
--- tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java 
(original)
+++ tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java 
Mon Jun 20 02:42:01 2016
@@ -35,7 +35,7 @@ import org.apache.juli.logging.LogFactor
 /**
  * A channel to handle RPC messaging
  */
-public class RpcChannel implements ChannelListener{
+public class RpcChannel implements ChannelListener {
 private static final Log log = LogFactory.getLog(RpcChannel.class);
 protected static final StringManager sm =
 StringManager.getManager(RpcChannel.class.getPackage().getName());
@@ -50,8 +50,7 @@ public class RpcChannel implements Chann
 private byte[] rpcId;
 private int replyMessageOptions = 0;
 
-private final HashMap responseMap =
-new HashMap<>();
+private final HashMap responseMap = new 
HashMap<>();
 
 /**
  * Create an RPC channel. You can have several RPC channels attached to a 
group
@@ -101,7 +100,7 @@ public class RpcChannel implements Chann
 }
 } catch ( InterruptedException ix ) {
 Thread.currentThread().interrupt();
-}finally {
+} finally {
 responseMap.remove(key);
 }
 return collector.getResponses();
@@ -130,7 +129,7 @@ public class RpcChannel implements Chann
 }
 }//synchronized
 }//end if
-} else{
+} else {
 boolean finished = false;
 final ExtendedRpcCallback excallback = (callback instanceof 
ExtendedRpcCallback)?((ExtendedRpcCallback)callback) : null;
 boolean asyncReply = ((replyMessageOptions & 
Channel.SEND_OPTIONS_ASYNCHRONOUS) == Channel.SEND_OPTIONS_ASYNCHRONOUS);
@@ -160,7 +159,7 @@ public class RpcChannel implements Chann
 channel.send(new Member[] {sender}, 
rmsg,replyMessageOptions & ~Channel.SEND_OPTIONS_SYNCHRONIZED_ACK);
 }
 finished = true;
-}catch ( Exception x )  {
+} catch ( Exception x )  {
 if (excallback != null && !asyncReply) {
 excallback.replyFailed(rmsg.message, reply, sender, x);
 } else {
@@ -188,7 +187,7 @@ public class RpcChannel implements Chann
 if ( msg instanceof RpcMessage ) {
 RpcMessage rmsg = (RpcMessage)msg;
 return Arrays.equals(rmsg.rpcId,rpcId);
-}else return false;
+} else return false;
 }
 
 public Channel getChannel() {
@@ -240,7 +239,7 @@ public class RpcChannel implements Chann
 this.destcnt = destcnt;
 }
 
-public void addResponse(Serializable message, Member sender){
+public void addResponse(Serializable message, Member sender) {
 Response resp = new Response(sender,message);
 responses.add(resp);
 }



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



svn commit: r1749255 - /tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java

2016-06-19 Thread kfujino
Author: kfujino
Date: Mon Jun 20 02:41:12 2016
New Revision: 1749255

URL: http://svn.apache.org/viewvc?rev=1749255&view=rev
Log:
No-functional change.
Fix code format.

Modified:
tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java

Modified: 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java?rev=1749255&r1=1749254&r2=1749255&view=diff
==
--- tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java 
(original)
+++ tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java 
Mon Jun 20 02:41:12 2016
@@ -35,7 +35,7 @@ import org.apache.juli.logging.LogFactor
 /**
  * A channel to handle RPC messaging
  */
-public class RpcChannel implements ChannelListener{
+public class RpcChannel implements ChannelListener {
 private static final Log log = LogFactory.getLog(RpcChannel.class);
 protected static final StringManager sm = 
StringManager.getManager(RpcChannel.class);
 
@@ -49,8 +49,7 @@ public class RpcChannel implements Chann
 private byte[] rpcId;
 private int replyMessageOptions = 0;
 
-private final HashMap responseMap =
-new HashMap<>();
+private final HashMap responseMap = new 
HashMap<>();
 
 /**
  * Create an RPC channel. You can have several RPC channels attached to a 
group
@@ -100,7 +99,7 @@ public class RpcChannel implements Chann
 }
 } catch ( InterruptedException ix ) {
 Thread.currentThread().interrupt();
-}finally {
+} finally {
 responseMap.remove(key);
 }
 return collector.getResponses();
@@ -129,7 +128,7 @@ public class RpcChannel implements Chann
 }
 }//synchronized
 }//end if
-} else{
+} else {
 boolean finished = false;
 final ExtendedRpcCallback excallback = (callback instanceof 
ExtendedRpcCallback)?((ExtendedRpcCallback)callback) : null;
 boolean asyncReply = ((replyMessageOptions & 
Channel.SEND_OPTIONS_ASYNCHRONOUS) == Channel.SEND_OPTIONS_ASYNCHRONOUS);
@@ -159,7 +158,7 @@ public class RpcChannel implements Chann
 channel.send(new Member[] {sender}, 
rmsg,replyMessageOptions & ~Channel.SEND_OPTIONS_SYNCHRONIZED_ACK);
 }
 finished = true;
-}catch ( Exception x )  {
+} catch ( Exception x )  {
 if (excallback != null && !asyncReply) {
 excallback.replyFailed(rmsg.message, reply, sender, x);
 } else {
@@ -187,7 +186,7 @@ public class RpcChannel implements Chann
 if ( msg instanceof RpcMessage ) {
 RpcMessage rmsg = (RpcMessage)msg;
 return Arrays.equals(rmsg.rpcId,rpcId);
-}else return false;
+} else return false;
 }
 
 public Channel getChannel() {
@@ -239,7 +238,7 @@ public class RpcChannel implements Chann
 this.destcnt = destcnt;
 }
 
-public void addResponse(Serializable message, Member sender){
+public void addResponse(Serializable message, Member sender) {
 Response resp = new Response(sender,message);
 responses.add(resp);
 }



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



svn commit: r1749254 - /tomcat/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java

2016-06-19 Thread kfujino
Author: kfujino
Date: Mon Jun 20 02:40:23 2016
New Revision: 1749254

URL: http://svn.apache.org/viewvc?rev=1749254&view=rev
Log:
No-functional change.
Fix code format.

Modified:
tomcat/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java

Modified: tomcat/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java?rev=1749254&r1=1749253&r2=1749254&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/tribes/group/RpcChannel.java Mon Jun 
20 02:40:23 2016
@@ -35,7 +35,7 @@ import org.apache.juli.logging.LogFactor
 /**
  * A channel to handle RPC messaging
  */
-public class RpcChannel implements ChannelListener{
+public class RpcChannel implements ChannelListener {
 private static final Log log = LogFactory.getLog(RpcChannel.class);
 protected static final StringManager sm = 
StringManager.getManager(RpcChannel.class);
 
@@ -49,8 +49,7 @@ public class RpcChannel implements Chann
 private byte[] rpcId;
 private int replyMessageOptions = 0;
 
-private final HashMap responseMap =
-new HashMap<>();
+private final HashMap responseMap = new 
HashMap<>();
 
 /**
  * Create an RPC channel. You can have several RPC channels attached to a 
group
@@ -100,7 +99,7 @@ public class RpcChannel implements Chann
 }
 } catch ( InterruptedException ix ) {
 Thread.currentThread().interrupt();
-}finally {
+} finally {
 responseMap.remove(key);
 }
 return collector.getResponses();
@@ -129,7 +128,7 @@ public class RpcChannel implements Chann
 }
 }//synchronized
 }//end if
-} else{
+} else {
 boolean finished = false;
 final ExtendedRpcCallback excallback = (callback instanceof 
ExtendedRpcCallback)?((ExtendedRpcCallback)callback) : null;
 boolean asyncReply = ((replyMessageOptions & 
Channel.SEND_OPTIONS_ASYNCHRONOUS) == Channel.SEND_OPTIONS_ASYNCHRONOUS);
@@ -159,7 +158,7 @@ public class RpcChannel implements Chann
 channel.send(new Member[] {sender}, 
rmsg,replyMessageOptions & ~Channel.SEND_OPTIONS_SYNCHRONIZED_ACK);
 }
 finished = true;
-}catch ( Exception x )  {
+} catch ( Exception x )  {
 if (excallback != null && !asyncReply) {
 excallback.replyFailed(rmsg.message, reply, sender, x);
 } else {
@@ -187,7 +186,7 @@ public class RpcChannel implements Chann
 if ( msg instanceof RpcMessage ) {
 RpcMessage rmsg = (RpcMessage)msg;
 return Arrays.equals(rmsg.rpcId,rpcId);
-}else return false;
+} else return false;
 }
 
 public Channel getChannel() {
@@ -239,7 +238,7 @@ public class RpcChannel implements Chann
 this.destcnt = destcnt;
 }
 
-public void addResponse(Serializable message, Member sender){
+public void addResponse(Serializable message, Member sender) {
 Response resp = new Response(sender,message);
 responses.add(resp);
 }



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



svn commit: r1749253 - /tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java

2016-06-19 Thread kfujino
Author: kfujino
Date: Mon Jun 20 02:30:29 2016
New Revision: 1749253

URL: http://svn.apache.org/viewvc?rev=1749253&view=rev
Log:
Remove unused debug code.

Modified:
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java

Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java?rev=1749253&r1=1749252&r2=1749253&view=diff
==
--- tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java 
(original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java Mon 
Jun 20 02:30:29 2016
@@ -188,9 +188,6 @@ public class Arrays {
 int idx = indexOf(member,members)+1;
 if (idx >= members.length ) idx = ((members.length>0)?0:-1);
 
-//System.out.println("Next index:"+idx);
-//System.out.println("Member:"+member.getName());
-//System.out.println("Members:"+toNameString(members));
 return idx;
 }
 



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



svn commit: r1749252 - /tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java

2016-06-19 Thread kfujino
Author: kfujino
Date: Mon Jun 20 02:29:47 2016
New Revision: 1749252

URL: http://svn.apache.org/viewvc?rev=1749252&view=rev
Log:
Remove unused debug code.

Modified:
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java

Modified: tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java?rev=1749252&r1=1749251&r2=1749252&view=diff
==
--- tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java 
(original)
+++ tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java Mon 
Jun 20 02:29:47 2016
@@ -184,9 +184,6 @@ public class Arrays {
 int idx = indexOf(member,members)+1;
 if (idx >= members.length ) idx = ((members.length>0)?0:-1);
 
-//System.out.println("Next index:"+idx);
-//System.out.println("Member:"+member.getName());
-//System.out.println("Members:"+toNameString(members));
 return idx;
 }
 



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



svn commit: r1749251 - /tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java

2016-06-19 Thread kfujino
Author: kfujino
Date: Mon Jun 20 02:29:13 2016
New Revision: 1749251

URL: http://svn.apache.org/viewvc?rev=1749251&view=rev
Log:
Remove unused debug code.

Modified:
tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java

Modified: tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java?rev=1749251&r1=1749250&r2=1749251&view=diff
==
--- tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java 
(original)
+++ tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/util/Arrays.java Mon 
Jun 20 02:29:13 2016
@@ -184,9 +184,6 @@ public class Arrays {
 int idx = indexOf(member,members)+1;
 if (idx >= members.length ) idx = ((members.length>0)?0:-1);
 
-//System.out.println("Next index:"+idx);
-//System.out.println("Member:"+member.getName());
-//System.out.println("Members:"+toNameString(members));
 return idx;
 }
 



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



svn commit: r1749250 - /tomcat/trunk/java/org/apache/catalina/tribes/util/Arrays.java

2016-06-19 Thread kfujino
Author: kfujino
Date: Mon Jun 20 02:28:42 2016
New Revision: 1749250

URL: http://svn.apache.org/viewvc?rev=1749250&view=rev
Log:
Remove unused debug code.

Modified:
tomcat/trunk/java/org/apache/catalina/tribes/util/Arrays.java

Modified: tomcat/trunk/java/org/apache/catalina/tribes/util/Arrays.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/tribes/util/Arrays.java?rev=1749250&r1=1749249&r2=1749250&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/tribes/util/Arrays.java (original)
+++ tomcat/trunk/java/org/apache/catalina/tribes/util/Arrays.java Mon Jun 20 
02:28:42 2016
@@ -184,9 +184,6 @@ public class Arrays {
 int idx = indexOf(member,members)+1;
 if (idx >= members.length ) idx = ((members.length>0)?0:-1);
 
-//System.out.println("Next index:"+idx);
-//System.out.println("Member:"+member.getName());
-//System.out.println("Members:"+toNameString(members));
 return idx;
 }
 



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



svn commit: r1749249 - in /tomcat/site/trunk: docs/migration-85.html docs/migration-9.html xdocs/migration-85.xml xdocs/migration-9.xml

2016-06-19 Thread kfujino
Author: kfujino
Date: Mon Jun 20 02:08:32 2016
New Revision: 1749249

URL: http://svn.apache.org/viewvc?rev=1749249&view=rev
Log:
Add description about removal of InstanceListener support to the migration 
guides.

Modified:
tomcat/site/trunk/docs/migration-85.html
tomcat/site/trunk/docs/migration-9.html
tomcat/site/trunk/xdocs/migration-85.xml
tomcat/site/trunk/xdocs/migration-9.xml

Modified: tomcat/site/trunk/docs/migration-85.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-85.html?rev=1749249&r1=1749248&r2=1749249&view=diff
==
--- tomcat/site/trunk/docs/migration-85.html (original)
+++ tomcat/site/trunk/docs/migration-85.html Mon Jun 20 02:08:32 2016
@@ -242,6 +242,9 @@
 
 Clustering
 
+
+InstanceListener removed
+
 
 
 
@@ -455,6 +458,36 @@ of Apache Tomcat.
   
 
 
+
+  
+
+InstanceListener removed
+
+
+
+The support of InstanceListener has been removed in 8.5.x.
+Specifically, the following classes have been removed.
+
+
+
+
+  
+
+org.apache.catalina.InstanceListener
+
+  
+
+org.apache.catalina.InstanceEvent
+
+  
+
+org.apache.catalina.util.InstanceSupport
+
+
+
+  
+
+
 
 
 

Modified: tomcat/site/trunk/docs/migration-9.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-9.html?rev=1749249&r1=1749248&r2=1749249&view=diff
==
--- tomcat/site/trunk/docs/migration-9.html (original)
+++ tomcat/site/trunk/docs/migration-9.html Mon Jun 20 02:08:32 2016
@@ -260,6 +260,9 @@
 
 Clustering
 
+
+InstanceListener removed
+
 
 
 
@@ -603,6 +606,41 @@ of Apache Tomcat.
   
 
 
+
+  
+
+InstanceListener removed
+
+
+
+
+The following change is present in 8.5.0 onwards.
+
+
+
+The support of InstanceListener has been removed in 8.5.x.
+Specifically, the following classes have been removed.
+
+
+
+
+  
+
+org.apache.catalina.InstanceListener
+
+  
+
+org.apache.catalina.InstanceEvent
+
+  
+
+org.apache.catalina.util.InstanceSupport
+
+
+
+  
+
+
 
 
 

Modified: tomcat/site/trunk/xdocs/migration-85.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-85.xml?rev=1749249&r1=1749248&r2=1749249&view=diff
==
Binary files - no diff available.

Modified: tomcat/site/trunk/xdocs/migration-9.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/migration-9.xml?rev=1749249&r1=1749248&r2=1749249&view=diff
==
--- tomcat/site/trunk/xdocs/migration-9.xml (original)
+++ tomcat/site/trunk/xdocs/migration-9.xml Mon Jun 20 02:08:32 2016
@@ -207,6 +207,21 @@ of Apache Tomcat.
 
   
 
+  
+
+The following change is present in 8.5.0 onwards.
+
+The support of InstanceListener has been removed in 8.5.x.
+Specifically, the following classes have been removed.
+
+
+
+  org.apache.catalina.InstanceListener
+  org.apache.catalina.InstanceEvent
+  org.apache.catalina.util.InstanceSupport
+
+  
+
 
 
 



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



Re: [VOTE] Release Apache Tomcat 7.0.70

2016-06-19 Thread Keiichi Fujino
2016-06-16 4:47 GMT+09:00 Violeta Georgieva :

> The proposed Apache Tomcat 7.0.70 release is now available for voting.
>
> It can be obtained from:
> https://dist.apache.org/repos/dist/dev/tomcat/tomcat-7/v7.0.70/
> The Maven staging repo is:
> https://repository.apache.org/content/repositories/orgapachetomcat-1088/
> The svn tag is:
> http://svn.apache.org/repos/asf/tomcat/tc7.0.x/tags/TOMCAT_7_0_70/
>
> The proposed 7.0.70 release is:
> [ ] Broken - do not release
> [X] Stable - go ahead and release as 7.0.70 Stable
>
> +1
Tested on test apps (enable session replication).



> Regards,
> Violeta
>
> --
> Keiichi.Fujino
>


svn commit: r1749175 - /tomcat/native/trunk/native/src/sslutils.c

2016-06-19 Thread rjung
Author: rjung
Date: Sun Jun 19 13:44:52 2016
New Revision: 1749175

URL: http://svn.apache.org/viewvc?rev=1749175&view=rev
Log:
Remove use of OCSP_F_OCSP_SENDREQ_BIO for OpenSSL
1.1.0. It is no longer available there and the generated
error message is questionable anyhow.

Fix comment typo.

Add comment about possibly missing error handling.

Modified:
tomcat/native/trunk/native/src/sslutils.c

Modified: tomcat/native/trunk/native/src/sslutils.c
URL: 
http://svn.apache.org/viewvc/tomcat/native/trunk/native/src/sslutils.c?rev=1749175&r1=1749174&r2=1749175&view=diff
==
--- tomcat/native/trunk/native/src/sslutils.c (original)
+++ tomcat/native/trunk/native/src/sslutils.c Sun Jun 19 13:44:52 2016
@@ -771,7 +771,9 @@ static OCSP_RESPONSE *parse_ocsp_resp(ch
 
 BIO_write(mem, buf, len);  /* write the buffer to the bio */
 if (BIO_gets(mem, tmpbuf, 512) <= 0) {
+#if OPENSSL_VERSION_NUMBER < 0x1010L
 OCSPerr(OCSP_F_OCSP_SENDREQ_BIO,OCSP_R_SERVER_RESPONSE_PARSE_ERROR);
+#endif
 goto err;
 }
 /* Parse the HTTP response. This will look like this:
@@ -828,12 +830,13 @@ static OCSP_RESPONSE *parse_ocsp_resp(ch
 goto err;
 }
 err:
+/* XXX No error logging? */
 BIO_free(mem);
 return resp;
 }
 
 
-/* Reads the respnse from the APR socket to a buffer, and parses the buffer to
+/* Reads the response from the APR socket to a buffer, and parses the buffer to
return the OCSP response  */
 #define ADDLEN 512
 static OCSP_RESPONSE *ocsp_get_resp(apr_socket_t *sock)



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



[GUMP@vmgump]: Project tomcat-tc7.0.x-test-nio (in module tomcat-7.0.x) failed

2016-06-19 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-tc7.0.x-test-nio has an issue affecting its community 
integration.
This issue affects 1 projects,
 and has been outstanding for 22 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- tomcat-tc7.0.x-test-nio :  Tomcat 7.x, a web server implementing Java 
Servlet 3.0,
...


Full details are available at:

http://vmgump.apache.org/gump/public/tomcat-7.0.x/tomcat-tc7.0.x-test-nio/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on tomcat-tc7.0.x-dbcp exists, no need to add for property 
tomcat-dbcp-src.jar.
 -DEBUG- Dependency on commons-daemon exists, no need to add for property 
commons-daemon.native.src.tgz.
 -DEBUG- Dependency on commons-daemon exists, no need to add for property 
tomcat-native.tar.gz.
 -DEBUG- Dependency on tomcat-tc7.0.x-dbcp exists, no need to add for property 
tomcat-dbcp.home.
 -INFO- Failed with reason build failed
 -INFO- Project Reports in: 
/srv/gump/public/workspace/tomcat-7.0.x/output/logs-NIO
 -INFO- Project Reports in: 
/srv/gump/public/workspace/tomcat-7.0.x/output/test-tmp-NIO/logs



The following work was performed:
http://vmgump.apache.org/gump/public/tomcat-7.0.x/tomcat-tc7.0.x-test-nio/gump_work/build_tomcat-7.0.x_tomcat-tc7.0.x-test-nio.html
Work Name: build_tomcat-7.0.x_tomcat-tc7.0.x-test-nio (Type: Build)
Work ended in a state of : Failed
Elapsed: 45 mins 43 secs
Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only org.apache.tools.ant.Main 
-Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dbase.path=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-build-libs 
-Dcommons-pool.home=/srv/gump/public/workspace/commons-pool-1.x 
-Dtest.temp=output/test-tmp-NIO 
-Djunit.jar=/srv/gump/public/workspace/junit/target/junit-4.13-SNAPSHOT.jar 
-Dobjenesis.jar=/srv/gump/public/workspace/objenesis/main/target/objenesis-2.5-SNAPSHOT.jar
 -Dexamples.sources.skip=true 
-Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/dist/commons-daemon-20160619.jar
 
-Dtomcat-dbcp-src.jar=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps/tomcat-dbcp-src.jar
 -Dtomcat-dbcp.home=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps 
-Dtest.excludePerformance=true 
-Dhamcrest.jar=/srv/gump/packages/hamcrest/hamcrest-core-1.3.jar 
-Dcommons-dbcp.home=/srv/gump/public/workspace/commons-dbcp-1.x 
-Dexecute.test.apr=false -Dexe
 cute.test.bio=false 
-Dcommons-daemon.native.src.tgz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20160619-native-src.tar.gz
 -Dtest.reports=output/logs-NIO 
-Dtomcat-native.tar.gz=/srv/gump/public/workspace/apache-commons/daemon/dist/bin/commons-daemon-20160619-native-src.tar.gz
 -Djdt.jar=/srv/gump/packages/eclipse/plugins/R-4.5-201506032000/ecj-4.5.jar 
-Dtest.relaxTiming=true -Dexecute.test.nio=true -Dtest.accesslog=true 
-Dtomcat-dbcp.jar=/srv/gump/public/workspace/tomcat-7.0.x/tomcat-deps/tomcat-dbcp-20160619.jar
 
-Deasymock.jar=/srv/gump/public/workspace/easymock/core/target/easymock-3.5-SNAPSHOT.jar
 -Dcglib.jar=/srv/gump/packages/cglib/cglib-nodep-2.2.jar test 
[Working Directory: /srv/gump/public/workspace/tomcat-7.0.x]
CLASSPATH: 
/usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/webapps/examples/WEB-INF/classes:/srv/gump/public/workspace/tomcat-7.0.x/output/testclasses:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/bin/bootstrap.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/bin/tomcat-juli.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/annotations-api.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/servlet-api.ja
 
r:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/jsp-api.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/el-api.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/catalina.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/catalina-ant.jar:/srv/gump/public/workspace/tomcat-7.0.x/output/build/lib/tomcat-coyote.jar:/srv/gump/public/workspace/tomcat-7.

Bug report for Tomcat Native [2016/06/19]

2016-06-19 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|48655|Inf|Nor|2010-02-02|Active multipart downloads prevent tomcat shutdown|
|49038|Inf|Nor|2010-04-02|Crash in tcnative |
|52319|Inf|Maj|2011-12-12|Tomcat 6 crashes with [libapr-1.so.0+0x196da]  sig|
|52627|New|Min|2012-02-08|Segmentation fault in org.apache.tomcat.jni.File.i|
|53605|Inf|Nor|2012-07-26|use tcnative-1.1.24 Tomcat shutdown still crash   |
|53940|New|Enh|2012-09-27|Added support for new CRL loading after expiration|
|54085|New|Nor|2012-11-01|ssl_socket_recv sometimes loops infinitely with no|
|54664|New|Reg|2013-03-11|[1.1.27 branch] Poll.remove incorrectly reports AP|
|55087|New|Cri|2013-06-10|tomcat crashes in tcnative-1.dll with OCSP when OC|
|55113|Inf|Nor|2013-06-18|FIPS-compatible OpenSSL fails fingerprint test in |
|55114|New|Nor|2013-06-18|BUILDING file in win32 source package contains UNI|
|55771|New|Maj|2013-11-12|Memory leak and then crash in org.apache.tomcat.jn|
|55797|Inf|Nor|2013-11-19|Tomcat 7.0.47 crashes using server jvm.dll and APR|
|55938|New|Nor|2013-12-29|clang-analyzer report for 1.1.31  |
|56027|Opn|Nor|2014-01-17|Unable to use TCN on RHEL6 boxes if box is booted |
|56378|New|Nor|2014-04-09|Cert load fails if cert is located in path with no|
|56415|New|Maj|2014-04-16|EXCEPTION_ACCESS_VIOLATION (0xc005) in tcnativ|
|57140|New|Cri|2014-10-24|tcnative-1.dll 1.1.31 indicated in fatal error|
|57521|New|Cri|2015-02-02|Tomcat randomly crashes with [libtcnative-1.so.0.1|
|57815|New|Enh|2015-04-15|Improve error message when OpenSSL does not suppor|
|58082|New|Nor|2015-06-29|Old version of JUnit specified|
|58194|New|Maj|2015-07-30|Tomcat crash EXCEPTION_ACCESS_VIOLATION in tcnativ|
|58244|New|Nor|2015-08-14|two way SSL loses client certificate after a few r|
|58263|New|Nor|2015-08-19|APR SSL connector crashes |
|58434|New|Nor|2015-09-21|Make Fails Against LibreSSL   |
|59163|New|Nor|2016-03-10|TC Native 1.2.0 & later does not compile with open|
|59286|New|Nor|2016-04-07|Socket binding failures when using APR|
|59616|New|Reg|2016-05-23|SSLVerifyClient="optionalNoCA" stops working betwe|
+-+---+---+--+--+
| Total   28 bugs   |
+---+

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



Bug report for Taglibs [2016/06/19]

2016-06-19 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|38193|Ass|Enh|2006-01-09|[RDC] BuiltIn Grammar support for Field   |
|38600|Ass|Enh|2006-02-10|[RDC] Enable RDCs to be used in X+V markup (X+RDC)|
|42413|New|Enh|2007-05-14|[PATCH] Log Taglib enhancements   |
|46052|New|Nor|2008-10-21|SetLocaleSupport is slow to initialize when many l|
|48333|New|Enh|2009-12-02|TLD generator |
|57434|New|Nor|2015-01-11|Race condition in EL1.0 validation|
|57548|New|Min|2015-02-08|Auto-generate the value for org.apache.taglibs.sta|
|57684|New|Min|2015-03-10|Version info should be taken from project version |
|59359|New|Enh|2016-04-20|(Task) Extend validity period for signing KEY - be|
|59668|New|Nor|2016-06-06|x:forEach retains the incorrect scope when used in|
+-+---+---+--+--+
| Total   10 bugs   |
+---+

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



Bug report for Tomcat 7 [2016/06/19]

2016-06-19 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|18500|New|Enh|2003-03-30|Host aliases to match by regular expression   |
|41007|Opn|Enh|2006-11-20|Can't define customized 503 error page|
|43866|New|Enh|2007-11-14|add support for session attribute propagation with|
|49395|New|Enh|2010-06-06|manager.findLeaks : display the date when the leak|
|49589|New|Enh|2010-07-12|Tag handlers with constant attribute values are al|
|49821|New|Enh|2010-08-25|Tomcat CLI [PATCH/Contribution]   |
|50019|New|Enh|2010-09-28|Adding JNDI "lookup-name" support In XML and Resou|
|50175|New|Enh|2010-10-28|Enhance memory leak detection by selectively apply|
|50234|New|Enh|2010-11-08|JspC use servlet 3.0 features |
|50670|New|Enh|2011-01-27|Tribes | RpcChannel | Add option to specify extern|
|50944|Ver|Blk|2011-03-18|JSF: java.lang.NullPointerException at com.sun.fac|
|51195|New|Enh|2011-05-13|"Find leaks" reports a false positive memory/class|
|51423|Inf|Enh|2011-06-23|[Patch] to add a path and a version parameters to |
|51463|New|Enh|2011-07-01|Tomcat.setBaseDir  (package org.apache.catalina.st|
|51496|New|Enh|2011-07-11|NSIS - Warn that duplicate service name will resul|
|51587|New|Enh|2011-07-29|Implement status and uptime commands  |
|51953|New|Enh|2011-10-04|Proposal: netmask filtering valve and filter [PATC|
|52381|New|Enh|2011-12-22|Please add OSGi metadata  |
|52448|New|Enh|2012-01-11|Cache jar indexes in WebappClassLoader to speed up|
|52489|New|Enh|2012-01-19|Enhancement request for code signing of war files |
|52688|New|Enh|2012-02-16|Add ability to remove old access log files [PATCHE|
|52952|New|Enh|2012-03-20|Improve ExtensionValidator handling for embedded s|
|53085|New|Enh|2012-04-16|[perf] [concurrency] DefaultInstanceManager.annota|
|53387|New|Enh|2012-06-08|SSI: Allow to use $1 to get result of regular expr|
|53411|Opn|Enh|2012-06-13|NullPointerException in org.apache.tomcat.util.buf|
|53492|New|Enh|2012-07-01|Make JspC shell multithreaded |
|53553|New|Enh|2012-07-16|[PATCH] Deploy uploaded WAR with context.xml from |
|53620|New|Enh|2012-07-30|[juli] delay opening a file until something gets l|
|54499|New|Enh|2013-01-29|Implementation of Extensible EL Interpreter   |
|54802|New|Enh|2013-04-04|Provide location information for exceptions thrown|
|55104|New|Enh|2013-06-16|Allow passing arguments with spaces to Commons Dae|
|55470|New|Enh|2013-08-23|Help users for ClassNotFoundExceptions during star|
|55477|New|Enh|2013-08-23|Add a solution to map an realm name to a security |
|56148|New|Enh|2014-02-17|support (multiple) ocsp stapling  |
|56181|New|Enh|2014-02-23|RemoteIpValve & RemoteIpFilter: HttpServletRequest|
|56300|New|Enh|2014-03-22|[Tribes] No useful examples, lack of documentation|
|56438|New|Enh|2014-04-21|If jar scan does not find context config or TLD co|
|56614|New|Enh|2014-06-12|Add a switch to ignore annotations detection on ta|
|56787|New|Enh|2014-07-29|Simplified jndi name parsing  |
|57367|New|Enh|2014-12-18|If JAR scan experiences a stack overflow, give the|
|57827|New|Enh|2015-04-17|Enable adding/removing of members via jmx in a sta|
|57870|New|Enh|2015-04-29|backport GzipOutputFilter #doWrite to Tomcat 7 to |
|57872|New|Enh|2015-04-29|Do not auto-switch session cookie to version=1 due|
|57892|New|Enh|2015-05-05|Log once a warning if a symbolic link is ignored (|
|58338|New|Nor|2015-09-07|BasicDataSourceFactory uses wrong attribute name  |
|59701|New|Nor|2016-06-14|Improve the documentation when maxPostSize=0  |
|59715|New|Blk|2016-06-17|Getting ClassCircularityError on using javaagent i|
|59716|New|Nor|2016-06-17|Allow JNDI configuration of CorsFilter|
+-+---+---+--+--+
| Total   48 bugs   |
+---+

--

Bug report for Tomcat 6 [2016/06/19]

2016-06-19 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|41679|New|Enh|2007-02-22|SemaphoreValve should be able to filter on url pat|
|43400|New|Enh|2007-09-14|enum support for tag libs |
|43979|New|Enh|2007-11-27|Add abstraction for Java and Classfile output |
|44199|New|Enh|2008-01-10|expose current backlog queue size |
|44225|New|Enh|2008-01-14|SSL connector tries to load the private keystore f|
|44294|New|Enh|2008-01-25|Support for EL functions with varargs |
|44312|Opn|Enh|2008-01-28|Warn when overwritting docBase of the default Host|
|44645|New|Enh|2008-03-20|[Patch] JNDIRealm - Doesn't support JNDI "java.nam|
|44787|New|Enh|2008-04-09|provide more error context on "java.lang.IllegalSt|
|45014|New|Enh|2008-05-15|Request and Response classes should have wrappers |
|45832|New|Enh|2008-09-18|add DIGEST authentication support to Ant tasks|
|45879|Opn|Enh|2008-09-24|Windows installer fails to install NOTICE and RELE|
|45931|Opn|Enh|2008-10-01|trimSpaces incorrectly modifies output|
|46173|New|Enh|2008-11-09|Small patch for manager app: Setting an optional c|
|46284|New|Enh|2008-11-24|Add flag to DeltaManager that blocks processing cl|
|46350|New|Enh|2008-12-05|Maven repository should contain source bundles|
|46558|Opn|Enh|2009-01-19|Shutdown port with address binding|
|47214|New|Enh|2009-05-17|Inner classes that are explicitly referenced - sho|
|47242|New|Enh|2009-05-22|request for AJP command line client   |
|47407|New|Enh|2009-06-23|HttpSessionListener doesn't operate in the session|
|47467|New|Enh|2009-07-02|Deployment of the war file by URL when contextpath|
|47834|New|Enh|2009-09-14|TldConfig throws Exception when exploring unpacked|
|48358|Opn|Enh|2009-12-09|JSP-unloading reloaded|
|48543|New|Enh|2010-01-14|[Patch] More flexibility in specifying -Dcatalina.|
|48672|New|Enh|2010-02-03|Tomcat Virtual Host Manager (/host-manager) have b|
|48743|New|Enh|2010-02-15|Make the SLEEP variable in catalina.sh settable fr|
|49176|Opn|Enh|2010-04-23|Jasper in Dev Mode Is Memory Inefficient  |
|49464|New|Enh|2010-06-18|DefaultServlet and CharacterEncoding  |
|49531|New|Enh|2010-06-30|singlesignon failover not working on DeltaManager/|
|49804|New|Enh|2010-08-23|Allow Embedded.redirectStreams value to be configu|
|49943|New|Enh|2010-09-16|Logging (via juli) does not reread configuration c|
|50285|New|Enh|2010-11-17|Standard HTTP and AJP connectors silently ignore a|
|50677|Opn|Enh|2011-01-27|Allow system property variables in catalina.proper|
|50692|New|Enh|2011-01-31|Improve log message in ThreadPool.logFull |
|51142|New|Enh|2011-05-03|Offer possible resolution of StringIndexOutOfBound|
|51513|New|Enh|2011-07-15|GzipInterceptor: Do not compress small packages   |
|52791|New|Enh|2012-02-28|[PATCH] read windows installer default values from|
|52924|New|Enh|2012-03-15|Add support for per-application JSP compile config|
|53011|New|Enh|2012-03-31|Ant Jasper task fails after one error |
|53031|New|Enh|2012-04-03|Ant Jasper task should support Fork option|
|53677|New|Nor|2012-08-07|ArrayIndexOutOfBoundsException when response heade|
|54007|New|Nor|2012-10-15|Improve handling of failed web application deploym|
|56607|New|Enh|2014-06-09|shutdown.bat exits before shutdown|
|56653|New|Nor|2014-06-21|Concurrency issue with Mapper$ContextList when sto|
+-+---+---+--+--+
| Total   44 bugs   |
+---+

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



Bug report for Tomcat 9 [2016/06/19]

2016-06-19 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|53602|Opn|Enh|2012-07-25|Support for HTTP status code 451  |
|57505|New|Enh|2015-01-27|Add integration tests for JspC|
|57661|New|Enh|2015-03-04|Delay sending of 100 continue response until appli|
|57767|New|Enh|2015-03-27|Websocket client proprietary configuration|
|58242|New|Enh|2015-08-13|Scanning jars in classpath to get annotations in p|
|58530|New|Enh|2015-10-23|Proposal for new Manager HTML GUI |
|58548|New|Enh|2015-10-26|support certifcate transparency   |
|58590|New|Enh|2015-11-05|org.apache.catalina.realm.MemoryRealm can use back|
|58859|New|Enh|2016-01-14|Allow to limit charsets / encodings supported by T|
|59179|New|Enh|2016-03-14|HTTP Public Key Pinning for Tomcat|
|59203|New|Enh|2016-03-21|Try to call Thread.interrupt before calling Thread|
|59233|New|Enh|2016-03-24|support unlimited SSL certificates stored in datab|
|59344|Ver|Enh|2016-04-18|PEM file support for JSSE |
|59649|Inf|Maj|2016-06-01|org.apache.coyote.http11.Http11Processor.service E|
|59661|Opn|Enh|2016-06-03|MailSessionFactory ignores system properties  |
|59672|New|Min|2016-06-08|Documentation followup to enabling RemoteAddrValve|
|59706|New|Enh|2016-06-15|HTTP/2 load testing performance   |
+-+---+---+--+--+
| Total   17 bugs   |
+---+

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



Bug report for Tomcat Modules [2016/06/19]

2016-06-19 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|48240|New|Nor|2009-11-19|Tomcat-Lite missing @Override markers |
|48268|New|Nor|2009-11-23|Patch to fix generics in tomcat-lite  |
|48861|New|Nor|2010-03-04|Files without AL headers  |
|49685|New|Nor|2010-08-02|Unsafe synchronization in class ManagedBean   |
|49686|New|Nor|2010-08-02|Using an instance lock to protect static shared da|
|50571|Inf|Nor|2011-01-11|Tomcat 7 JDBC connection pool exception enhancemen|
|51595|Inf|Nor|2011-08-01|org.apache.tomcat.jdbc.pool.jmx.ConnectionPool sho|
|51879|Inf|Enh|2011-09-22|Improve access to Native Connection Methods   |
|52024|Inf|Enh|2011-10-13|Custom interceptor to support automatic failover o|
|53199|Inf|Enh|2012-05-07|Refactor ConnectionPool to use ScheduledExecutorSe|
|54437|New|Enh|2013-01-16|Update PoolProperties javadoc for ConnectState int|
|54929|Inf|Nor|2013-05-05|jdbc-pool cannot be used with Java 1.5, "java.lang|
|55078|New|Nor|2013-06-07|Configuring a DataSource Resource with dataSourceJ|
|55662|New|Enh|2013-10-17|Add a way to set an instance of java.sql.Driver di|
|56046|New|Enh|2014-01-21|org.apache.tomcat.jdbc.pool.XADataSource InitSQL p|
|56088|New|Maj|2014-01-29|AbstractQueryReport$StatementProxy throws exceptio|
|56310|Inf|Maj|2014-03-25|PooledConnection and XAConnection not handled corr|
|56586|New|Nor|2014-06-02|initSQL should be committed if defaultAutoCommit =|
|56775|New|Nor|2014-07-28|PoolCleanerTime schedule issue|
|56779|New|Nor|2014-07-28|Allow multiple connection initialization statement|
|56790|New|Nor|2014-07-29|Resizing pool.maxActive to a higher value at runti|
|56798|New|Nor|2014-07-31|Idle eviction strategy could perform better (and i|
|56804|New|Nor|2014-08-02|Use a default validationQueryTimeout other than "f|
|56805|New|Nor|2014-08-02|datasource.getConnection() may be unnecessarily bl|
|56837|New|Nor|2014-08-11|if validationQuery have error with timeBetweenEvic|
|56970|New|Nor|2014-09-11|MaxActive vs. MaxTotal for commons-dbcp and tomcat|
|56974|New|Nor|2014-09-12|jdbc-pool validation query defaultAutoCommit statu|
|57460|New|Nor|2015-01-19|[DB2]Connection broken after few hours but not rem|
|57729|New|Enh|2015-03-20|Add QueryExecutionReportInterceptor to log query e|
|58816|New|Enh|2016-01-07|additional jdbc pool mbean attributes - CreatedCou|
|59077|New|Nor|2016-02-26|DataSourceFactory creates a neutered data source  |
|59569|New|Nor|2016-05-18|isWrapperFor/unwrap implementations incorrect |
+-+---+---+--+--+
| Total   32 bugs   |
+---+

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



Bug report for Tomcat Connectors [2016/06/19]

2016-06-19 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|35959|Opn|Enh|2005-08-01|mod_jk not independant of UseCanonicalName|
|43303|New|Enh|2007-09-04|Versioning under Windows not reported by many conn|
|45063|New|Nor|2008-05-22|JK-1.2.26 IIS ISAPI filter issue when running diff|
|45313|New|Nor|2008-06-30|mod_jk 1.2.26 & apache 2.2.9 static compiled on so|
|46767|New|Enh|2009-02-25|mod_jk to send DECLINED in case no fail-over tomca|
|47327|New|Enh|2009-06-07|Return tomcat authenticated user back to mod_jk (A|
|47678|New|Cri|2009-08-11|Unable to allocate shared memory when using isapi_|
|47714|Opn|Cri|2009-08-20|Response mixed between users  |
|47750|New|Maj|2009-08-27|ISAPI: Loss of worker settings when changing via j|
|47795|New|Maj|2009-09-07|service sticky_session not being set correctly wit|
|48490|Inf|Nor|2010-01-05|Changing a node to stopped in uriworkermap.propert|
|48513|New|Enh|2010-01-09|IIS Quick setup instructions  |
|48564|New|Enh|2010-01-18|Allow to turn off retries for LB worker   |
|48830|New|Nor|2010-03-01|IIS shutdown blocked in endpoint service when serv|
|49063|New|Enh|2010-04-07|Please add JkStripSession status in jk-status work|
|49135|New|Enh|2010-04-16|SPDY Connector for The Tomcat |
|49732|Inf|Nor|2010-08-10|reply_timeout can't wait forever. |
|49822|New|Enh|2010-08-25|Add hash lb worker method |
|49903|New|Enh|2010-09-09|Make workers file reloadable  |
|52483|New|Enh|2012-01-18|Print JkOptions's options in log file and jkstatus|
|53883|New|Maj|2012-09-17|isapi_redirect v 1.2.37 crashes w3wp.exe  on the p|
|53977|New|Maj|2012-10-07|32bits isapi connector cannot work in wow64 mode  |
|54027|New|Cri|2012-10-18|isapi send request to outside address instead of i|
|54117|New|Maj|2012-11-08|access violation exception in isapi_redirect.dll  |
|54596|Opn|Nor|2013-02-22|Relative path functionality truncates last charact|
|54621|New|Nor|2013-02-28|[PATCH] custom mod_jk availability checks |
|54923|New|Nor|2013-05-03|nsapi_redirect.so does not work with iPlanet on So|
|56489|New|Enh|2014-05-05|Include a directory for configuration files   |
|56576|New|Enh|2014-05-29|Websocket support |
|57066|New|Cri|2014-10-08|isapi_redirect.dll is crashing intermittently when|
|57402|New|Enh|2014-12-30|Provide correlation ID between mod_jk log and acce|
|57403|New|Enh|2014-12-30|Persist configuration changes made via status work|
|57407|New|Enh|2014-12-31|Make session_cookie, session_path and session_cook|
|57485|New|Nor|2015-01-23|mod_jk passed the incomplete chunked transferred r|
|57790|New|Enh|2015-04-03|Check worker names for typos  |
|57946|New|Nor|2015-05-23|Configuration example for mod_jk should be updated|
|58249|New|Nor|2015-08-17|Documentation regarding max_packet_size parameter |
|58287|New|Nor|2015-08-26|Questionable use of "Global" objects on Windows   |
|58425|New|Nor|2015-09-17|validate::jk_ajp12_worker.c always returns JK_FALS|
|58481|New|Nor|2015-10-05|JAX WS Request fails with "Premature end of file" |
|58504|New|Nor|2015-10-19|Maintenance process skipped occasionally  |
|58608|New|Nor|2015-11-13|Issue with IIS7+ buffered response|
|58813|New|Reg|2016-01-06|Incoming requests hang after a website using the I|
|58895|New|Nor|2016-01-20|wrong log message "attempt=0" |
|59092|New|Cri|2016-03-01|Shutdown of ISAPI filter leads to infinite wait an|
|59164|New|Nor|2016-03-11|If tomcat server can not be resolved, crash occurr|
|59184|New|Nor|2016-03-15|mod_jk segmentation fault at jk_shm.c:875 |
|59192|New|Nor|2016-03-17|Negotiate user now contains the ACTIVE DIRACTORY D|
|59334|New|Nor|2016-04-15|.NET Application Pools requests hang because Jakar|
+-+---+---+--+--+
| Total   49 bugs   |
+--

Bug report for Tomcat 8 [2016/06/19]

2016-06-19 Thread bugzilla
+---+
| Bugzilla Bug ID   |
| +-+
| | Status: UNC=Unconfirmed NEW=New ASS=Assigned|
| | OPN=ReopenedVER=Verified(Skipped Closed/Resolved)   |
| |   +-+
| |   | Severity: BLK=Blocker CRI=Critical  REG=Regression  MAJ=Major   |
| |   |   MIN=Minor   NOR=NormalENH=Enhancement TRV=Trivial |
| |   |   +-+
| |   |   | Date Posted |
| |   |   |  +--+
| |   |   |  | Description  |
| |   |   |  |  |
|43925|Opn|Enh|2007-11-21|org.apache.jasper.runtime.BodyContentImpl causing |
|51497|New|Enh|2011-07-11|Use canonical IPv6 text representation in logs|
|53737|Opn|Enh|2012-08-18|Use ServletContext.getJspConfigDescriptor() in Jas|
|53930|New|Enh|2012-09-24|allow capture of catalina stdout/stderr to a comma|
|54700|New|Enh|2013-03-15|Improvement: Add support for system property to sp|
|54741|New|Enh|2013-03-22|Add org.apache.catalina.startup.Tomcat#addWebapp(S|
|55243|New|Enh|2013-07-11|Add special search string for nested roles|
|55252|New|Enh|2013-07-12|Separate Ant and command-line wrappers for JspC   |
|55383|New|Enh|2013-08-07|Improve markup and design of Tomcat's HTML pages  |
|9|New|Enh|2013-09-14|UserDatabaseRealm enhacement: may use local JNDI  |
|55675|New|Enh|2013-10-18|Checking and handling invalid configuration option|
|55770|New|Enh|2013-11-12|Allow the crlFile to be reloaded  |
|55788|New|Enh|2013-11-16|TagPlugins should key on tag QName rather than imp|
|55969|New|Enh|2014-01-07|Security-related enhancements to the Windows Insta|
|56166|New|Enh|2014-02-20|Suggestions for exception handling (avoid potentia|
|56361|New|Enh|2014-04-08|org.apache.tomcat.websocket.WsWebSocketContainer#b|
|56398|New|Enh|2014-04-11|Support Arquillian-based unit testing |
|56399|New|Enh|2014-04-11|Re-factor request/response recycling so Coyote and|
|56402|New|Enh|2014-04-11|Add support for HTTP Upgrade to AJP components|
|56448|New|Enh|2014-04-23|Implement a robust solution for client initiated S|
|56522|Opn|Enh|2014-05-14|jasper-el 8 does not comply to EL Spec 3.0 regardi|
|56546|New|Enh|2014-05-19|Improve thread trace logging in WebappClassLoader.|
|56676|New|Enh|2014-06-26|Normalize access to native library|
|56713|New|Enh|2014-07-12|Limit time that incoming request waits while webap|
|56724|New|Enh|2014-07-15|Restart Container background thread if it died une|
|56890|Inf|Maj|2014-08-26|getRealPath returns null  |
|56966|New|Enh|2014-09-11|AccessLogValve's elapsed time has 15ms precision o|
|57130|New|Enh|2014-10-22|Allow digest.sh to accept password from a file or |
|57287|New|Enh|2014-11-29|Sort files listed by DefaultServlet   |
|57345|New|Enh|2014-12-12|APR/Native HTTPS Connector Should Support All Open|
|57421|New|Enh|2015-01-07|Farming default directories   |
|57486|New|Enh|2015-01-23|Improve reuse of ProtectedFunctionMapper instances|
|57665|New|Enh|2015-03-05|support x-forwarded-host  |
|57701|New|Enh|2015-03-13|Implement "[Redeploy]" button for a web applicatio|
|57830|New|Enh|2015-04-18|Add support for ProxyProtocol |
|58052|Opn|Enh|2015-06-19|RewriteValve: Implement additional RewriteRule dir|
|58072|New|Enh|2015-06-23|ECDH curve selection  |
|58433|New|Enh|2015-09-21|RemoteIpValve not activated on redirect from mappi|
|58577|New|Enh|2015-11-03|JMX Proxy Servlet can't handle overloaded methods |
|58837|New|Enh|2016-01-12|support "X-Content-Security-Policy" a.k.a as "CSP"|
|59232|New|Enh|2016-03-24|Make the context name of an app available via JNDI|
|59423|New|Enh|2016-05-03|amend "No LoginModules configured for ..." with hi|
|59642|New|Enh|2016-05-30|Mention localDataSource in realm-howto.html   |
|59708|New|Nor|2016-06-15|LockOutRealm Details  |
+-+---+---+--+--+
| Total   44 bugs   |
+---+

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