Re: How to resolve 403 forbidden error in Tomcat level

2024-08-29 Thread Christopher Schultz
Jadgish, This list does not accept image attachments. We are not seeing what you are posting. Please post text-only. -chris On 8/29/24 11:01, jagadish sahu wrote: Hi Team and Christopher, We have attached a 403 error screenshot with full information. The error seems to be generated from Tom

Re: Tomcat takes over 1 minute to stop

2024-08-29 Thread Christopher Schultz
Quoc, On 8/29/24 15:23, Quoc Nguyen wrote: Thank you Mr. Thomas !!! Yes sir !!! I noticed that a clean Tomcat 9.0.93 install (as with other 9.0.9x versions) stops around 1s. I believe that it is so because it has no managed web apps/resources. Just Tomcat itself. I could be wrong. Yes, I not

RE: Tomcat migration tool for .war file going to 10.1x from 9x.

2024-08-29 Thread Mcalexander, Jon J.
Thank you From: Chuck Caldarale Sent: Thursday, August 29, 2024 2:57 PM To: Tomcat Users List Subject: Re: Tomcat migration tool for .war file going to 10.1x from 9x. > On Aug 29, 2024, at 14: 46, Mcalexander, Jon J. com. INVALID> wrote: > > I hate asking this question, but I'm not finding the

Re: Tomcat migration tool for .war file going to 10.1x from 9x.

2024-08-29 Thread Chuck Caldarale
> On Aug 29, 2024, at 14:46, Mcalexander, Jon J. > wrote: > > I hate asking this question, but I'm not finding the documentation I'm > looking for. I remember reading that if you DON'T want to migrate your .war > file when moving from 9x to 10.1x, you can put the .war file in a different > w

Tomcat migration tool for .war file going to 10.1x from 9x.

2024-08-29 Thread Mcalexander, Jon J.
I hate asking this question, but I'm not finding the documentation I'm looking for. I remember reading that if you DON'T want to migrate your .war file when moving from 9x to 10.1x, you can put the .war file in a different webapps directory, but I can't find the name of the alternate webapps dir

Re: Tomcat takes over 1 minute to stop

2024-08-29 Thread Quoc Nguyen
Thank you Mr. Thomas !!! Yes sir !!! I noticed that a clean Tomcat 9.0.93 install (as with other 9.0.9x versions) stops around 1s. I believe that it is so because it has no managed web apps/resources. Just Tomcat itself. I could be wrong. Yes, I noticed that there are warnings of non-daemon thr

Re: Understanding ResorceLink property inheritance

2024-08-29 Thread Mark Thomas
On 29/08/2024 15:52, Marcelo de Sena Lacerda wrote: The resource definition in server.xml ... ... OK. The global resource looks good. ... * Wrong factory. * driverClassName is not a valid attribute for a ResourceLink * url is not a valid attribute for a ResourceLink Fr

AW: How to resolve 403 forbidden error in Tomcat level

2024-08-29 Thread Thomas Hoffmann (Speed4Trade GmbH)
Hello Jagadish, > Von: jagadish sahu > Gesendet: Donnerstag, 29. August 2024 17:02 > An: Tomcat Users List ; Christopher Schultz > > Betreff: Re: How to resolve 403 forbidden error in Tomcat level > > Hi Team and Christopher, > > We have attached a 403 error screenshot with full information. >

Re: How to resolve 403 forbidden error in Tomcat level

2024-08-29 Thread jagadish sahu
Hi Team and Christopher, We have attached a 403 error screenshot with full information. The error seems to be generated from Tomcat level. We don't have any changes in the java code and our application is working as expected in Tomcat 9.0.14. After upgrading to latest version Tomcat,we have been

RE: Understanding ResorceLink property inheritance

2024-08-29 Thread Marcelo de Sena Lacerda
The resource definition in server.xml ... ... ... * Wrong factory. * driverClassName is not a valid attribute for a ResourceLink * url is not a valid attribute for a ResourceLink >From reading the documentation that was also my initial thought, however if I >write my ResourceLink

Re: Suggestion: Maven repository for Tomcat native library

2024-08-29 Thread Mark Thomas
On 27/08/2024 18:41, Mark Thomas wrote: Please open a Bugzilla issue for this request so that it does not get lost. https://bz.apache.org/bugzilla/show_bug.cgi?id=69299 Mark On 09/08/2024 10:56, Harri Pesonen wrote: Hello, currently Tomcat native library needs to be downloaded manually from

Re: mod_jk retry continuing existing stream?

2024-08-29 Thread Mark Thomas
On 12/08/2024 19:54, Holle, Jess wrote: I have mod_jk load balancing over several back-end Java processes which embed Tomcat. When I Ctrl-C one of those processes, a server-sent-event response stream (which has already sent a number of events) does not end from a client perspective. Rather t

Re: Understanding ResorceLink property inheritance

2024-08-29 Thread Mark Thomas
On 29/08/2024 14:19, Marcelo de Sena Lacerda wrote: Understanding ResorceLink property inheritance My scenario is this, I have several applications running on a tomcat, all of them access the same database I want them to be inside the same pool so the number of connections oppened can be sensi

Re: Tomcat takes over 1 minute to stop

2024-08-29 Thread Mark Thomas
On 27/08/2024 21:41, Christopher Schultz wrote: Quoc, On 8/27/24 14:58, Quoc Nguyen wrote: Apache Tomcat version: 9.0.90 and above OS: Windows Server 2019 Tomcat Version Used    Time Taken to stop Apache Tomcat/8.5.66    ~ 9 seconds Apache Tomcat/9.0.1    ~ 9 seconds Apache Tomcat/9.0.10    ~

Understanding ResorceLink property inheritance

2024-08-29 Thread Marcelo de Sena Lacerda
Understanding ResorceLink property inheritance My scenario is this, I have several applications running on a tomcat, all of them access the same database I want them to be inside the same pool so the number of connections oppened can be sensibly managed using the same parameters. All of that wo

Re: Tomcat 10.1 Http11NioProtocol with the OpenSSLImplementation does not sent close_notify in response to client's close_notify

2024-08-29 Thread Christopher Schultz
Isaac, On 8/26/24 13:24, Isaac Klickstein wrote: What is the "Tomcat Native Client"? I am using the Tomcat Native software (maybe "client" was wrong) available here to build the OpenSSLImplementation: https://tomcat.apache.org/download-native.cgi#2.0.8 I then link to this library using LD_LI

Re: How to resolve 403 forbidden error in Tomcat level

2024-08-29 Thread Christopher Schultz
Jagdesh, On 8/29/24 06:29, jagadish sahu wrote: We have tested our application in Apache tomcat 9.0.14. It is working as expected, After upgrading from 9.0.14 to the latest versions it is not working.   When we leave the session for 30 mins, we will get some warning like due to an inactive

How to resolve 403 forbidden error in Tomcat level

2024-08-29 Thread jagadish sahu
Hi Team, We have tested our application in Apache tomcat 9.0.14. It is working as expected, After upgrading from 9.0.14 to the latest versions it is not working. When we leave the session for 30 mins, we will get some warning like due to an inactive session, you can click on Ok to continue the