Re: Tomcat upgrade from 9.0.80 to 9.0.81

2023-10-13 Thread Zdeněk Henek
Thank you. That is what I was about to ask :). I was using the dev release of 9.0.82. Our QA is testing our application with Tomcat 9.0.82. So far it looks good. Regards, Zdenek Henek On Thu, Oct 12, 2023 at 9:08 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > All, > > On

Re: [OT] Issues with XMLDSIG

2023-03-13 Thread Zdeněk Henek
at 7:12 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > Zdeněk, > > On 3/13/23 12:57, Zdeněk Henek wrote: > > I have implemented SAML 2.0 Service Provider using > > https://github.com/spring-attic/spring-security-saml It is not > developed > > a

Re: [OT] Issues with XMLDSIG

2023-03-13 Thread Zdeněk Henek
Hi Chris, I have implemented SAML 2.0 Service Provider using https://github.com/spring-attic/spring-security-saml It is not developed anymore, but ... I don't have my dev env available till Sunday, if you would like I could use your Okta configuration next week to connect to my service provider

Re: Increase in GC Pause time in tomcat http2 9.0.56

2022-08-30 Thread Zdeněk Henek
HI Arshiya, MaxGCPauseMillis=100 maybe this is too strict? Causing you run into full gc. Jdk8 G1GC implementation has single thread full gc and these take more time to finish? Just guessing as you have not written if the long pause gcs are young gen pauses or full gc pauses. Another option which

Re: *** Payara, GlassFish or Tomcat ***

2022-07-21 Thread Zdeněk Henek
Amn, Our application is tested with Weblogic and Tomcat. I was asked to port our application to any free application server or web container. I picked Tomcat 5.5, now we are on Tomcat 9. I have to say maintaining our app and its installer for Tomcat is very easy. Very good backward compatibility

Re: Catalina.policy for SAP BO

2022-05-11 Thread Zdeněk Henek
Hi, Java Security Manager is deprecated in jdk 17 release https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/SecurityManager.html and may be even removed soon. Regards, Zdenek Henek On Wed, May 11, 2022 at 10:14 AM Chavez Ortiz, Oscar (Externo) <

Re: Tomcat service switches to another JDK under the hood

2022-04-11 Thread Zdeněk Henek
there is one extra 3rd party "hotfolder" Java app running as a service > (JDK 8 is used in this case) > > > -Original Message- > From: Zdeněk Henek > Sent: Monday, April 11, 2022 1:04 PM > To: Tomcat Users List > Subject: Re: Tomcat service switches to an

Re: Tomcat service switches to another JDK under the hood

2022-04-11 Thread Zdeněk Henek
Hi Jan, looks like somebody/something has restarted tomcat with different JAVA_HOME/PATH variables. It is not possible to change jvm process while running. Another option could be you have there running two tomcat instances. Create cmd file e.g. tomcatStart.cmd with content like set

Re: Tomcat 7 giving java.lang.OutOfMemoryError: unable to create new native thread Exception in Catalina.out after upgrading to RHEL 7.4

2017-09-19 Thread Zdeněk Henek
Hi, try configure HTTP NIO https://tomcat.apache.org/tomcat-7.0-doc/config/http.html#NIO_specific_configuration or upgrade to Tomcat 8 where HTTP NIO is on by default. This could help in case your server is able to process the requests e.g. you have spike where you have to process thousands of

Tomcat 8.0.39 and tomcat 8.5.8 fails handling requsest

2016-11-15 Thread Zdeněk Henek
Hi, we are using tomcat 8.0.30 without problems. I have tested upgrade to 8.0.38 today and I got this error More env. details JDK 8, tested on both Linux and Windows using different JDK 8 updates (71, 111). 15-Nov-2016 17:14:51.189 INFO [http-nio-8080-exec-2]

Re: Please help with Tomcat Garbage Collection

2016-11-15 Thread Zdeněk Henek
I would start with moving this tomcat to its own hw. Did you check swap? This long pauses could be because part of your heap is swapped to hdd Regards, Zdenek Henek On Tue, Nov 15, 2016, 21:37 George I. Develekos wrote: > > On 15-Nov-16 10:22 PM, Christopher Schultz

Re: Please help with Tomcat Garbage Collection

2016-11-15 Thread Zdeněk Henek
Is there running something else in that server? Real time should be never bigger than user+sys Z On Tue, Nov 15, 2016, 16:46 George I. Develekos wrote: > Hello guys, > > We are having problems on a production system with very long "full GC" > times, as long as1200sec

Re: tomcat jmx disabled by default ?

2013-04-07 Thread Zdeněk Henek
Hi Jakub, do you have running Tomcat and JConsole as same user? JMX should really work out of box when both Tomcat and JConsole/JVisualVM are in same machine and same user. Regards, Zdenek On Sun, Apr 7, 2013 at 9:15 PM, Neven Cvetkovic neven.cvetko...@gmail.comwrote: Mark, When

jboss jta manager in Tomcat

2012-01-31 Thread Zdeněk Henek
Hi, I am wondering if anybody uses JBoss jta transaction manager in Tomcat. I have updated code written by J Halliday source here: http://anonsvn.jboss.org/repos/labs/labs/jbosstm/workspace/jhalliday/tomcat-integration/ to support latest release of JBoss transaction manager ( 4.16.0 ) source

distributed session manager with infinispan

2011-11-27 Thread Zdeněk Henek
Hi, I have created prototype of distributed session manager which uses infinispan to distribute session state. The code is available here: https://github.com/zvrablik/tomcatInfinispanSessionManager Would anybody have time to discuss the prototype or test it? I have currently one TODO item I