[Bug 62547] New: JASPIC cleanSubject not called on logout for cached authentications

2018-07-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62547

Bug ID: 62547
   Summary: JASPIC cleanSubject not called on logout for cached
authentications
   Product: Tomcat 8
   Version: 8.5.20
  Hardware: PC
Status: NEW
  Severity: normal
  Priority: P2
 Component: Catalina
  Assignee: dev@tomcat.apache.org
  Reporter: z06.guille...@gmail.com
  Target Milestone: 

When authentication takes place via JASPIC and there was no cached user
principal, the clientSubject is stored in the request:
https://github.com/apache/tomcat/blob/trunk/java/org/apache/catalina/authenticator/AuthenticatorBase.java#L813

On logout, the stored clientSubject is retrieved in order to pass it as an
argument to ServerAuthContext#cleanSubject():
https://github.com/apache/tomcat/blob/trunk/java/org/apache/catalina/authenticator/AuthenticatorBase.java#L1138

The problem is, when authentication was performed on a previous request (it was
cached), the subject is not stored, and so cleanSubject is not called, since
the subject must not be null.

The solution might be just to always store the subject, despite the
authentication being cached. I can provide a PR myself if someone confirms
that's a valid solution.

I have only tested this on 8.5.20 (TomEE 7.0.4) but the affected code is the
same on other versions.

-- 
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



svn commit: r1836090 - in /tomcat/trunk: java/org/apache/catalina/tribes/transport/nio/NioReceiver.java webapps/docs/changelog.xml

2018-07-17 Thread kfujino
Author: kfujino
Date: Tue Jul 17 09:18:00 2018
New Revision: 1836090

URL: http://svn.apache.org/viewvc?rev=1836090&view=rev
Log:
Ensures that the specified rxBufSize is correctly set to receiver buffer size.

Modified:
tomcat/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
tomcat/trunk/webapps/docs/changelog.xml

Modified: 
tomcat/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java?rev=1836090&r1=1836089&r2=1836090&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java 
Tue Jul 17 09:18:00 2018
@@ -286,7 +286,7 @@ public class NioReceiver extends Receive
 if (key.isAcceptable()) {
 ServerSocketChannel server = (ServerSocketChannel) 
key.channel();
 SocketChannel channel = server.accept();
-channel.socket().setReceiveBufferSize(getTxBufSize());
+channel.socket().setReceiveBufferSize(getRxBufSize());
 channel.socket().setSendBufferSize(getTxBufSize());
 channel.socket().setTcpNoDelay(getTcpNoDelay());
 channel.socket().setKeepAlive(getSoKeepAlive());

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1836090&r1=1836089&r2=1836090&view=diff
==
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Tue Jul 17 09:18:00 2018
@@ -129,6 +129,14 @@
   
 
   
+  
+
+  
+Ensures that the specified rxBufSize is correctly set to
+receiver buffer size. (kfujino)
+  
+
+  
   
 
   



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



svn commit: r1836091 - in /tomcat/tc8.5.x/trunk: java/org/apache/catalina/tribes/transport/nio/NioReceiver.java webapps/docs/changelog.xml

2018-07-17 Thread kfujino
Author: kfujino
Date: Tue Jul 17 09:19:37 2018
New Revision: 1836091

URL: http://svn.apache.org/viewvc?rev=1836091&view=rev
Log:
Ensures that the specified rxBufSize is correctly set to receiver buffer size.

Modified:

tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml

Modified: 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java?rev=1836091&r1=1836090&r2=1836091&view=diff
==
--- 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
 (original)
+++ 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
 Tue Jul 17 09:19:37 2018
@@ -287,7 +287,7 @@ public class NioReceiver extends Receive
 if (key.isAcceptable()) {
 ServerSocketChannel server = (ServerSocketChannel) 
key.channel();
 SocketChannel channel = server.accept();
-channel.socket().setReceiveBufferSize(getTxBufSize());
+channel.socket().setReceiveBufferSize(getRxBufSize());
 channel.socket().setSendBufferSize(getTxBufSize());
 channel.socket().setTcpNoDelay(getTcpNoDelay());
 channel.socket().setKeepAlive(getSoKeepAlive());

Modified: tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml?rev=1836091&r1=1836090&r2=1836091&view=diff
==
--- tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml Tue Jul 17 09:19:37 2018
@@ -123,6 +123,14 @@
   
 
   
+  
+
+  
+Ensures that the specified rxBufSize is correctly set to
+receiver buffer size. (kfujino)
+  
+
+  
   
 
   



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



svn commit: r1836092 - in /tomcat/tc8.0.x/trunk: java/org/apache/catalina/tribes/transport/nio/NioReceiver.java webapps/docs/changelog.xml

2018-07-17 Thread kfujino
Author: kfujino
Date: Tue Jul 17 09:21:13 2018
New Revision: 1836092

URL: http://svn.apache.org/viewvc?rev=1836092&view=rev
Log:
Ensures that the specified rxBufSize is correctly set to receiver buffer size.

Modified:

tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml

Modified: 
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java?rev=1836092&r1=1836091&r2=1836092&view=diff
==
--- 
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
 (original)
+++ 
tomcat/tc8.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
 Tue Jul 17 09:21:13 2018
@@ -298,7 +298,7 @@ public class NioReceiver extends Receive
 if (key.isAcceptable()) {
 ServerSocketChannel server = (ServerSocketChannel) 
key.channel();
 SocketChannel channel = server.accept();
-channel.socket().setReceiveBufferSize(getTxBufSize());
+channel.socket().setReceiveBufferSize(getRxBufSize());
 channel.socket().setSendBufferSize(getTxBufSize());
 channel.socket().setTcpNoDelay(getTcpNoDelay());
 channel.socket().setKeepAlive(getSoKeepAlive());

Modified: tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml?rev=1836092&r1=1836091&r2=1836092&view=diff
==
--- tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc8.0.x/trunk/webapps/docs/changelog.xml Tue Jul 17 09:21:13 2018
@@ -53,6 +53,14 @@
   
 
   
+  
+
+  
+Ensures that the specified rxBufSize is correctly set to
+receiver buffer size. (kfujino)
+  
+
+  
 
 
   



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



svn commit: r1836093 - in /tomcat/tc7.0.x/trunk: java/org/apache/catalina/tribes/transport/nio/NioReceiver.java webapps/docs/changelog.xml

2018-07-17 Thread kfujino
Author: kfujino
Date: Tue Jul 17 09:23:01 2018
New Revision: 1836093

URL: http://svn.apache.org/viewvc?rev=1836093&view=rev
Log:
Ensures that the specified rxBufSize is correctly set to receiver buffer size.

Modified:

tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

Modified: 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java?rev=1836093&r1=1836092&r2=1836093&view=diff
==
--- 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
 (original)
+++ 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/tribes/transport/nio/NioReceiver.java
 Tue Jul 17 09:23:01 2018
@@ -309,7 +309,7 @@ public class NioReceiver extends Receive
 if (key.isAcceptable()) {
 ServerSocketChannel server = (ServerSocketChannel) 
key.channel();
 SocketChannel channel = server.accept();
-channel.socket().setReceiveBufferSize(getTxBufSize());
+channel.socket().setReceiveBufferSize(getRxBufSize());
 channel.socket().setSendBufferSize(getTxBufSize());
 channel.socket().setTcpNoDelay(getTcpNoDelay());
 channel.socket().setKeepAlive(getSoKeepAlive());

Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1836093&r1=1836092&r2=1836093&view=diff
==
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Tue Jul 17 09:23:01 2018
@@ -102,6 +102,14 @@
   
 
   
+  
+
+  
+Ensures that the specified rxBufSize is correctly set to
+receiver buffer size. (kfujino)
+  
+
+  
 
 
   



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



buildbot success in on tomcat-trunk

2018-07-17 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-trunk while 
building . Full details are available at:
https://ci.apache.org/builders/tomcat-trunk/builds/3457

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: silvanus_ubuntu

Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-commit' 
triggered this build
Build Source Stamp: [branch tomcat/trunk] 1836090
Blamelist: kfujino

Build succeeded!

Sincerely,
 -The Buildbot




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



[Bug 62547] JASPIC cleanSubject not called on logout for cached authentications

2018-07-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62547

Arjan Tijms  changed:

   What|Removed |Added

 CC||arjan.ti...@gmail.com
 OS||All

-- 
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



svn commit: r1836102 - in /tomcat/trunk: java/org/apache/catalina/tribes/group/GroupChannel.java webapps/docs/changelog.xml

2018-07-17 Thread remm
Author: remm
Date: Tue Jul 17 10:59:37 2018
New Revision: 1836102

URL: http://svn.apache.org/viewvc?rev=1836102&view=rev
Log:
Revert as the membership service gets a heartbeat if it is added as a listener 
on the group channel.

Modified:
tomcat/trunk/java/org/apache/catalina/tribes/group/GroupChannel.java
tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/java/org/apache/catalina/tribes/group/GroupChannel.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/tribes/group/GroupChannel.java?rev=1836102&r1=1836101&r2=1836102&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/tribes/group/GroupChannel.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/tribes/group/GroupChannel.java Tue 
Jul 17 10:59:37 2018
@@ -188,10 +188,6 @@ public class GroupChannel extends Channe
 public void heartbeat() {
 super.heartbeat();
 
-if (coordinator.getMembershipService() instanceof Heartbeat) {
-((Heartbeat) coordinator.getMembershipService()).heartbeat();
-}
-
 for (MembershipListener listener : membershipListeners) {
 if ( listener instanceof Heartbeat ) 
((Heartbeat)listener).heartbeat();
 }

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1836102&r1=1836101&r2=1836102&view=diff
==
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Tue Jul 17 10:59:37 2018
@@ -70,9 +70,6 @@
 62527: Revert restriction of JNDI to the java:
 namespace. (remm)
   
-  
-Propagate heartbeat from channel down to membership service. (remm)
-  
 
   
   



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



svn commit: r1836103 - in /tomcat/tc8.5.x/trunk: ./ java/org/apache/catalina/tribes/group/GroupChannel.java webapps/docs/changelog.xml

2018-07-17 Thread remm
Author: remm
Date: Tue Jul 17 11:01:51 2018
New Revision: 1836103

URL: http://svn.apache.org/viewvc?rev=1836103&view=rev
Log:
Revert

Modified:
tomcat/tc8.5.x/trunk/   (props changed)
tomcat/tc8.5.x/trunk/java/org/apache/catalina/tribes/group/GroupChannel.java
tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc8.5.x/trunk/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Tue Jul 17 11:01:51 2018
@@ -1,2 +1,2 @@
 /tomcat/tc8.0.x/trunk:1809644
-/tomcat/trunk:1734785,1734799,1734845,1734928,1735041,1735044,1735480,1735577,1735597,1735599-1735600,1735615,1736145,1736162,1736209,1736280,1736297,1736299,1736489,1736646,1736703,1736836,1736849,1737104-1737105,1737112,1737117,1737119-1737120,1737155,1737157,1737192,1737280,1737339,1737632,1737664,1737715,1737748,1737785,1737834,1737860,1737903,1737959,1738005,1738007,1738014-1738015,1738018,1738022,1738039,1738043,1738059-1738060,1738147,1738149,1738174-1738175,1738261,1738589,1738623-1738625,1738643,1738816,1738850,1738855,1738946-1738948,1738953-1738954,1738979,1738982,1739079-1739081,1739087,1739113,1739153,1739172,1739176,1739191,1739474,1739492,1739726,1739762,1739775,1739814,1739817-1739818,1739975,1740131,1740324,1740465,1740495,1740508-1740509,1740520,1740535,1740707,1740803,1740810,1740969,1740980,1740991,1740997,1741015,1741033,1741036,1741058,1741060,1741080,1741147,1741159,1741164,1741173,1741181,1741190,1741197,1741202,1741208,1741213,1741221,1741225,1741232,1741409
 
,1741501,1741677,1741892,1741896,1741984,1742023,1742042,1742071,1742090,1742093,1742101,1742105,1742111,1742139,1742146,1742148,1742166,1742181,1742184,1742187,1742246,1742248-1742251,1742263-1742264,1742268,1742276,1742369,1742387,1742448,1742509-1742512,1742917,1742919,1742933,1742975-1742976,1742984,1742986,1743019,1743115,1743117,1743124-1743125,1743134,1743425,1743554,1743679,1743696-1743698,1743700-1743701,1744058,1744064-1744065,1744125,1744149,1744194,1744229,1744270,1744323,1744432,1744684,1744697,1744705,1744713,1744760,1744786,1745083,1745142-1745143,1745145,1745177,1745179-1745180,1745227,1745248,1745254,1745337,1745467,1745473,1745535,1745576,1745735,1745744,1746304,1746306-1746307,1746319,1746327,1746338,1746340-1746341,1746344,1746427,1746441,1746473,1746490,1746492,1746495-1746496,1746499-1746501,1746503-1746507,1746509,1746549,1746551,1746554,1746556,1746558,1746584,1746620,1746649,1746724,1746939,1746989,1747014,1747028,1747035,1747210,1747225,1747234,1747253,1747
 
404,1747506,1747536,1747924,1747980,1747993,1748001,1748253,1748452,1748547,1748629,1748676,1748715,1749287,1749296,1749328,1749373,1749465,1749506,1749508,1749665-1749666,1749763,1749865-1749866,1749898,1749978,1749980,1750011,1750015,1750056,1750480,1750617,1750634,1750692,1750697,1750700,1750703,1750707,1750714,1750718,1750723,1750774,1750899,1750975,1750995,1751061,1751097,1751173,1751438,1751447,1751463,1751702,1752212,1752737,1752745,1753078,1753080,1753358,1753363,1754111,1754140-1754141,1754281,1754310,1754445,1754467,1754494,1754496,1754528,1754532-1754533,1754613,1754714,1754874,1754941,1754944,1754950-1754951,1755005,1755007,1755009,1755132,1755180-1755181,1755185,1755190,1755204-1755206,1755208,1755214,1755224,1755227,1755230,1755629,1755646-1755647,1755650,1755653,1755675,1755680,1755683,1755693,1755717,1755731-1755737,1755812,1755828,1755884,1755890,1755918-1755919,1755942,1755958,1755960,1755970,1755993,1756013,1756019,1756039,1756056,1756083-1756114,1756175,1756288-1
 
756289,1756408-1756410,1756778,1756798,1756878,1756898,1756939,1757123-1757124,1757126,1757128,1757132-1757133,1757136,1757145,1757167-1757168,1757175,1757180,1757182,1757195,1757271,1757278,1757347,1757353-1757354,1757363,1757374,1757399,1757406,1757408,1757485,1757495,1757499,1757527,1757578,1757684,1757722,1757727,1757790,1757799,1757813,1757853,1757883,1757903,1757976,1757997,1758000,1758058,1758072-1758075,1758078-1758079,1758223,1758257,1758261,1758276,1758292,1758369,1758378-1758383,1758421,1758423,1758425-1758427,1758430,1758443,1758448,1758459,1758483,1758486-1758487,1758499,1758525,1758556,1758580,1758582,1758584,1758588,1758842,1759019,1759212,1759224,1759227,1759252,1759274,1759513-1759516,1759611,1759757,1759785-1759790,1760005,1760022,1760109-1760110,1760135,1760200-1760201,1760227,1760300,1760397,1760446,1760454,1760640,1760648,1761057,1761422,1761491,1761498,1761500-1761501,1761550,1761553,1761572,1761574,1761625-1761626,1761628,1761682,1761740,1761752,1762051-176205
 
3,1762123,1762168,1762172,1762182,1762201-1762202,1762204,1762208,1762288,1762296,1762324,1762348,1762353,1762362,1762374,1762492,1762503,1762505,1762541,1762608,1762710,1762753,1762766,1762769,1762944,1762947,1762953,1763167,1763179,1763232,1763259,1763271-1763272,1763276-1763277,1763319-1763320,1763370,1763372,1763375,1763377,1763393,1763412,1763430,1763450,1763462,1763505,1763511-1763512,1763516,1763518,1763520,1763529,1763559,1763565,1

JDK 11 Early Access build 22 & JDK 12 Early Access b02 are available.

2018-07-17 Thread Rory O'Donnell

  Hi Mark,

*JDK 11 is in Rampdown Phase one*

 * *The overall feature set is frozen. No further JEPs will be targeted
   to this release.*
 * *Rampdown Phase two is scheduled to start * *26th of July*


**JDK 11 EA build 22 , *under both the GPL and Oracle EA licenses, 
is now available at **http://jdk.java.net/11**. ***


 * Schedule, status & features
 o http://openjdk.java.net/projects/jdk/11/
 * Release Notes:
 o http://jdk.java.net/11/release-notes

*FOSS fixes in recent builds.*

 * JBoss Netty (b17) - JDK-8203937 (b17)
 * JUnit5 & other Foss Projects (b22)  -JDK-8206355

**Notable changes in JDK 11 EA *build 22*

 * New Collection.toArray(IntFunction) Default Method (JDK-8060192
   )
 * Make some system properties effectively readonly (JDK-8066709
   )
 * Obsolete Support for Commercial Features (JDK-8202331
   )
 * JFR start failure after AppCDS archive created with JFR
   StartFlightRecording (JDK-8203664
   )
 * Change to policy for the default set of modules resolved when
   compiling or running code on the class path (JDK-8197532
   )

*JDK 12 Early Access  Build 02 is available at **http://jdk.java.net/12/*

 * OpenJDK builds
 o These early-access, open-source builds are provided under the
   GNU General Public License, version 2, with the Classpath
   Exception .
 * Changes in this build are listed here
   


*The Quality Report for July 2018 is published **here 
*


 * With the new six months release , we now publish the Quality report
   every three months.
 * Thanks to all the FOSS Projects for logging bugs against the JDK 11
   EA Builds!


Rgds,Rory

[1] http://openjdk.java.net/projects/jdk/11/



[GitHub] tomcat pull request #116: Always store the authenticated Subject on the Requ...

2018-07-17 Thread ggam
GitHub user ggam opened a pull request:

https://github.com/apache/tomcat/pull/116

Always store the authenticated Subject on the Request

Client Subject needs to be stored on the request even when the 
authentication data was cached. Fixes 
https://bz.apache.org/bugzilla/show_bug.cgi?id=62547

The issue is present on both Tomcat 8.5.X and 9.X and the fix should easily 
backported.

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

$ git pull https://github.com/ggam/tomcat jaspic-cleansubject

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

https://github.com/apache/tomcat/pull/116.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 #116


commit 3168fc0ecb2adc39127b04287e9805cdc90bedaa
Author: Guillermo González de Agüero 
Date:   2018-07-17T11:26:52Z

Always store the authenticated Subject

Client Subject needs to be stored on the request even when the 
authentication data was cached. Fixes 
https://bz.apache.org/bugzilla/show_bug.cgi?id=62547




---

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



[Bug 62547] JASPIC cleanSubject not called on logout for cached authentications

2018-07-17 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=62547

--- Comment #1 from Guillermo González de Agüero  ---
Since it was (IMHO) a one-line change, I provided a PR:
https://github.com/apache/tomcat/pull/116

-- 
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



buildbot failure in on tomcat-trunk

2018-07-17 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-trunk while building 
. Full details are available at:
https://ci.apache.org/builders/tomcat-trunk/builds/3458

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: silvanus_ubuntu

Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-commit' 
triggered this build
Build Source Stamp: [branch tomcat/trunk] 1836102
Blamelist: remm

BUILD FAILED: failed compile_1

Sincerely,
 -The Buildbot




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