Tomcat 9 release plan

2024-01-30 Thread Kambhapati, Sindhuri
Hi, I wanted to know till how long will tomcat 9 releases be supported. We need to plan our project based on this. As, we are on vaadin and it has dependency on tomcat 9's javax package which got changed to jakarta in tomcat 10. I read somewhere that tomcat 9 is being parallelly developed along w

Re: Tomcat 9 release plan

2024-01-30 Thread Torsten Krah
Am Dienstag, dem 30.01.2024 um 16:29 +0530 schrieb Kambhapati, Sindhuri: > Can we get a confirmation as to how long tomcat 9 releases would be > happening or there would be support for the existing one's. Please look / search in the archives, this was already discussed a few days ago, topic was:

Re: Tomcat 9 release plan

2024-01-30 Thread Kambhapati, Sindhuri
Hi, Can you give me link for the tomcat forum please. On Tue, Jan 30, 2024 at 4:34 PM Torsten Krah wrote: > Am Dienstag, dem 30.01.2024 um 16:29 +0530 schrieb Kambhapati, > Sindhuri: > > Can we get a confirmation as to how long tomcat 9 releases would be > > happening or there would be support

Re: Tomcat 9 release plan

2024-01-30 Thread Olaf Kock
On 30.01.24 12:10, Kambhapati, Sindhuri wrote: Hi, Can you give me link for the tomcat forum please. https://tomcat.apache.org/lists.html - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional comma

Re: Rotating/archiving catalina.out

2024-01-30 Thread Michael Osipov
On 2024/01/29 20:28:05 Aryeh Friedman wrote: > We need to shrink the size of catalina.out but looking at the logging > documentation I do not see any way to do this with the standard > logging.properties (or else where). Due to the nature of the > production site we never bring it completely down

Re: Rotating/archiving catalina.out

2024-01-30 Thread Tim Funk
One option (hacky workaround) is to try using "swallowOutput" which may mitigate the worst of your issue. (Beyond a rewrite with a logging framework) https://tomcat.apache.org/tomcat-9.0-doc/config/context.html -Tim On Mon, Jan 29, 2024 at 3:28 PM Aryeh Friedman wrote: > We need to shrink the

How does the user principal get set on the servlet container session?

2024-01-30 Thread Ryan Esch
>From what I understand, the container knows if a user is authenticated by >using the session id passed to it and then looking up the user principal. If >this is non-null, the user is authenticated. I am using web.xml with security >constraints and UsersRoleLoginModule defined in jaas.conf which

Re: How does the user principal get set on the servlet container session?

2024-01-30 Thread Terence M. Bandoian
What should happen if session.getAttribute("javax.security.auth.subject") returns a non-null value? -Terence Bandoian On 1/30/2024 5:15 PM, Ryan Esch wrote: >From what I understand, the container knows if a user is authenticated by using the session id passed to it and then looking up the us