Re: Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25

2024-09-15 Thread Chuck Caldarale
og.html The 10.1.29 HTTP/2 problem and fix are described here: https://bz.apache.org/bugzilla/show_bug.cgi?id=69320 - Chuck > From: Mark Thomas > Sent: Sunday, September 15, 2024 9:14 AM > To: users@tomcat.apache.org > Subject: Re: Question about upgrading tomcat-embed-core from 10.1.

RE: Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25

2024-09-15 Thread KARR, DAVID
Thanks for that. Could you give me more info on those problems in 10.1.24-29, like links to the issues? From: Mark Thomas Sent: Sunday, September 15, 2024 9:14 AM To: users@tomcat.apache.org Subject: Re: Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25 On 15/09/2024 00: 37

Re: Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25

2024-09-15 Thread Mark Thomas
On 15/09/2024 00:37, KARR, DAVID wrote: We build SpringBoot applications that reference "tomcat-embed-core" from "spring-boot-starter-jersey". We currently end up with version 10.1.20 of tomcat-embed-core, using spring-boot 3.2.5. There is apparently a CVE for that version of tomcat-embed-

Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25

2024-09-14 Thread KARR, DAVID
We build SpringBoot applications that reference "tomcat-embed-core" from "spring-boot-starter-jersey". We currently end up with version 10.1.20 of tomcat-embed-core, using spring-boot 3.2.5. There is apparently a CVE for that version of tomcat-embed-core (I don't have the CVE handy right now).

Re: java code cache size question

2024-07-25 Thread Ivano Luberti
From: Ivano Luberti Sent: Thursday, July 25, 2024 9:21 AM To:users@tomcat.apache.org Subject: Re: java code cache size question Thank you all. Try to answer to everyone in one mail. I forgot to check the java version in the oracle page I had found and since other blog pages were always referring to

RE: java code cache size question

2024-07-25 Thread Gregg, John E.
@tomcat.apache.org Subject: Re: java code cache size question Thank you all. Try to answer to everyone in one mail. I forgot to check the java version in the oracle page I had found and since other blog pages were always referring to 48 MB I was left thinking there were no differences among version. (I'm

Re: java code cache size question

2024-07-25 Thread Ivano Luberti
e the change came in Java 8 to accommodate the fact that the HotSpot compiler now compiles all methods when they are hit for the first time. Thanks From: Ivano Luberti Sent: Thursday, July 25, 2024 8:43 AM To:users@tomcat.apache.org Subject: java code cache size question Hi, I have a tom

Re: java code cache size question

2024-07-25 Thread Simon Matter
> Hi, I have a tomcat 9 instance  that runs without specifying options for > the code cache. > > Looking at the servet status I see > > Code CacheNon-heap memory 2.43 MiB163.93 MiB 240.00 > MiB 147.30 > MiB (61%) > > So te maximum size is 240MB > > Looking at Java doc

RE: java code cache size question

2024-07-25 Thread Gregg, John E.
@tomcat.apache.org Subject: java code cache size question Hi, I have a tomcat 9 instance that runs without specifying options for the code cache. Looking at the servet status I see Code Cache Non-heap memory 2. 43 MiB 163. 93 MiB 240. 00 MiB 147. 30 MiB (61%) So te maximum size is 240MB Looking at

Re: java code cache size question

2024-07-25 Thread Christopher Schultz
Ivano, On 7/25/24 09:43, Ivano Luberti wrote: Hi, I have a tomcat 9 instance  that runs without specifying options for the code cache. Good. If you don't know what you are doing, leaving options at their defaults is the best policy. Looking at the servet status I see Code Cache Non-he

java code cache size question

2024-07-25 Thread Ivano Luberti
Hi, I have a tomcat 9 instance  that runs without specifying options for the code cache. Looking at the servet status I see Code Cache Non-heap memory 2.43 MiB 163.93 MiB 240.00 MiB 147.30 MiB (61%) So te maximum size is 240MB Looking at Java documentation it states it should be 48MB i

Re: Persistent Manager Implementation Question

2024-07-08 Thread Christopher Schultz
Miguel, On 2/19/24 11:50, Miguel Vidal wrote: hey one question regarding this topic I'm facing an issue where my old app is doing a creation of multiple sessions but just one is the correct one or at least is who contains the data and works fine. the others sessions that are created con

RE: Write listener question

2024-05-30 Thread joan.balaguero
(t); } private void postProcess(Throwable t) { this.ac.complete(); if (t != null) { t.printStackeTrace(); } } -Original Message- From: Chuck Caldarale Sent: Thursday, May 30, 2024 8:01 PM To: Tomcat Users List Subject: Re: Write listener question > On May 30, 2024, at 12:53, >

Re: Write listener question

2024-05-30 Thread Chuck Caldarale
, 'isFirst' is set to > false, (not shown in the code, sorry) If you don’t show us all of the code, then it’s rather difficult to answer your question about the implementation being correct. > Perhaps this one client has a slow network, so isReady() returns false in > that e

RE: Write listener question

2024-05-30 Thread joan.balaguero
... The client is receiving this: ... el>. It's like a chunk is received in wrong order. Thanks! Joan. -Original Message- From: Chuck Caldarale Sent: Thursday, May 30, 2024 7:27 PM To: Tomcat Users L

Re: Write listener question

2024-05-30 Thread Chuck Caldarale
> On May 30, 2024, at 08:47, > wrote: > > I have a NIO connector with an asynchronous servlet with its write listener > (working in both tomcat 8.5 and tomcat 10.1.20). > > @Override > public void onWritePossible() throws IOException { > > if (this.isFirst) { >this.os = this.asyncCont

Write listener question

2024-05-30 Thread joan.balaguero
Hello, Sorry for the previous mail ... I have a NIO connector with an asynchronous servlet with its write listener (working in both tomcat 8.5 and tomcat 10.1.20). @Override public void onWritePossible() throws IOException { if (this.isFirst) { this.os = this.asyncContext.getResponse().

Re: Write listener question

2024-05-30 Thread Christopher Schultz
alagu...@ventusproxy.com Sent: Thursday, May 30, 2024 11:57 AM To: 'Tomcat Users List' Subject: Write listener question Hello, I have a NIO connector with an asynchronous servlet with its write listener. @Override public void onWritePossible() throws IOException { if (this.isFirst)

RE: Write listener question

2024-05-30 Thread joan.balaguero
Sorry, this issue happens with both Tomcat 8.5.x and 10.1.x. -Original Message- From: joan.balagu...@ventusproxy.com Sent: Thursday, May 30, 2024 11:57 AM To: 'Tomcat Users List' Subject: Write listener question Hello, I have a NIO connector with an asynchronous servle

Write listener question

2024-05-30 Thread joan.balaguero
Hello, I have a NIO connector with an asynchronous servlet with its write listener. @Override public void onWritePossible() throws IOException { if (this.isFirst) { this.os = this.asyncContext.getResponse().getOutputStream(); this.startIdx = 0; this.endIdx = WRITE_BUFFER_SIZE; }

Re: Question on the ErrorReportValve

2024-04-18 Thread Christopher Schultz
: Question on the ErrorReportValve пн, 15 апр. 2024 г. в 19: 37, Mcalexander, Jon J. : > > Hi all! > Quick question on the ErrorReportValve and location within the server. xml file. I know that typically this would be inside пн, 15 апр. 2024 г. в 19:37, Mcalexander, Jon J. mailto:jo

RE: Question on the ErrorReportValve

2024-04-17 Thread Mcalexander, Jon J.
ect: Re: Question on the ErrorReportValve пн, 15 апр. 2024 г. в 19: 37, Mcalexander, Jon J. : > > Hi all! > Quick question on the ErrorReportValve and location within the server. xml file. I know that typically this would be inside пн, 15 апр. 2024 г. в 19:37, Mcalexander, Jon J. mailto

Re: Question on the ErrorReportValve

2024-04-17 Thread Konstantin Kolinko
пн, 15 апр. 2024 г. в 19:37, Mcalexander, Jon J. : > > Hi all! > Quick question on the ErrorReportValve and location within the server.xml > file. I know that typically this would be inside the > element, but if you have Multiple elements, do you add the valve to > each Ho

RE: Question on the ErrorReportValve

2024-04-15 Thread Mcalexander, Jon J.
reply e-mail and delete this message. Thank you for your cooperation. From: Christopher Schultz Sent: Monday, April 15, 2024 12:26 PM To: Tomcat Users List ; Mcalexander, Jon J. Subject: Re: Question on the ErrorReportValve Jon, On 4/15/24 12: 36, Mcalexander, Jon J. wrote: > Quick questi

Re: Question on the ErrorReportValve

2024-04-15 Thread Christopher Schultz
Jon, On 4/15/24 12:36, Mcalexander, Jon J. wrote: Quick question on the ErrorReportValve and location within the server.xml file. I know that typically this would be inside the element, but if you have Multiple elements, do you add the valve to each Host section, or can it be placed at the

Question on the ErrorReportValve

2024-04-15 Thread Mcalexander, Jon J.
Hi all! Quick question on the ErrorReportValve and location within the server.xml file. I know that typically this would be inside the element, but if you have Multiple elements, do you add the valve to each Host section, or can it be placed at the Engine or even Server level? Thank you

Re: Persistent Manager Implementation Question

2024-02-19 Thread Miguel Vidal
hey one question regarding this topic I'm facing an issue where my old app is doing a creation of multiple sessions but just one is the correct one or at least is who contains the data and works fine. the others sessions that are created contains random data that im not sure yet what inform

Re: Persistent Manager Implementation Question

2024-02-12 Thread Miguel Vidal
Yes both are pointing the same configuration because i was doing some testing how it works all of this about session, i wasnt able to get it to work in a new application just using spring boot , but i just did it on friday. what i was missing it was use the session and not only a getter or endpoint

Re: Persistent Manager Implementation Question

2024-02-12 Thread Christopher Schultz
Miguel, On 2/8/24 15:49, Miguel Vidal wrote: Im trying to configure correctly in 2 different applications : Persistent Manager Implementation using a mysqldb as a datasource. Do you have both PersistentManager configurations pointing at the same database and same set of tables? I think it wil

Re: Persistent Manager Implementation Question

2024-02-08 Thread Mark Thomas
ration question . the tomcat specification that works : https://tomcat.apache.org/tomcat-8.0-doc/config/manager.html Im trying to configure correctly in 2 different applications : Persistent Manager Implementation using a mysqldb as a datasource. In one of them that is a legacy project i have some depend

Persistent Manager Implementation Question

2024-02-08 Thread Miguel Vidal
demo4.zip <https://drive.google.com/file/d/1XOUHhw59Djk2XmdFEmkBsusnHf5_yNE7/view?usp=drive_web> Hello, Specifications Windows 10 Tomcat 8.5 this is a configuration question . the tomcat specification that works : https://tomcat.apache.org/tomcat-8.0-doc/config/manager.html Im try

Re: security-constraint url-pattern question

2023-12-15 Thread Mark Thomas
On 14/12/2023 17:28, ResSoft wrote: Chris, I figured out how to make this work. It works in my dev dox but not in my prod box. Both have the same version of tomcat. Here is the web.xml entry. I any ideas would be great. Those constraints look correct to me and a quick test using

Re: security-constraint url-pattern question

2023-12-14 Thread ResSoft
Chris, I figured out how to make this work. It works in my dev dox but not in my prod box. Both have the same version of tomcat. Here is the web.xml entry. I any ideas would be great. securedapp /* CONFIDENTIAL

Re: security-constraint url-pattern question

2023-12-14 Thread ResSoft
Chris, Thanks for the response, but I think I explained myself wrong. The http redirect to https works when I use just this entry in my web.xml securedapp /* CONFIDENTIAL But if I want to force http to https and lock the second url pattern from

Re: security-constraint url-pattern question

2023-12-14 Thread Christopher Schultz
Kent, On 12/14/23 09:13, ResSoft wrote: I am currently forcing my app to use https. Here is what I have in my app web.xml file and it works as intended securedapp /* CONFIDENTIAL I also now want to restrict the browser from pulling up files in certain

security-constraint url-pattern question

2023-12-14 Thread ResSoft
I am currently forcing my app to use https. Here is what I have in my = app web.xml file and it works as intended securedapp /* CONFIDENTIAL I also now want to restrict the browser from pulling up files in certain = directories. Search the web I see to use the

Re: Thread Pool Question

2023-12-06 Thread Deepak Lalchandani
Hi Tomcat users, Can you share the jsp code of thread pool so that I can analyse it Thanks and Regards, Deepak On Wed, 6 Dec 2023, 8:46 pm Christopher Schultz, < ch...@christopherschultz.net> wrote: > William, > > On 12/5/23 14:39, William Crowell wrote: > > I shoul

Re: Thread Pool Question

2023-12-06 Thread Christopher Schultz
William, On 12/5/23 14:39, William Crowell wrote: I should clarify the ask here… I have some long running JDBC queries against Oracle, and I do not want to tie up Tomcat’s web thread pool with them. I would only have between 1-10 threads in this pool. Executors aren't directly-accessible by

RE: Thread Pool Question

2023-12-05 Thread John.E.Gregg
You have to refer to it in your connector: https://tomcat.apache.org/tomcat-10.0-doc/config/http.html > -Original Message- > From: William Crowell > Sent: Tuesday, December 5, 2023 1:39 PM > To: Tomcat Users List > Subject: Re: Thread Pool Question > > I should

Re: Thread Pool Question

2023-12-05 Thread William Crowell
I should clarify the ask here… I have some long running JDBC queries against Oracle, and I do not want to tie up Tomcat’s web thread pool with them. I would only have between 1-10 threads in this pool. Regards, William Crowell This e-mail may contain information that is privileged or conf

Thread Pool Question

2023-12-05 Thread William Crowell
If I create a separate thread pool in Tomcat’s server.xml like this: Then how do I get a thread to assign any work to it? Regards, William Crowell This e-mail may contain information that is privileged or confidential. If you are not the intended recipient, please delete the e-mail and any

Re: Web.xml file question

2023-11-21 Thread Christopher Schultz
Lance, On 11/21/23 11:33, Campbell, Lance wrote: Tomcat 10.1 Java migration from 8 to 11 Eclipse I am trying to migrate my thirteen tomcat web applications from java 8 to java 11. And from tomcat 9 to tomcat 10.1 . I have been using the web.xml file for years with Java 8 and tomcat 9. However

Web.xml file question

2023-11-21 Thread Campbell, Lance
Tomcat 10.1 Java migration from 8 to 11 Eclipse I am trying to migrate my thirteen tomcat web applications from java 8 to java 11. And from tomcat 9 to tomcat 10.1 . I have been using the web.xml file for years with Java 8 and tomcat 9. However, when I built my dynamic web application with ecli

Re: Question about releases available for download

2023-10-19 Thread Christopher Schultz
: Question about releases available for download Jon, On 10/18/23 15:39, Mcalexander, Jon J. wrote: Thanks Mark. I'm sorry if I stated it incorrectly. I meant the issue with JDBC being broken, etc. the stuff that prompted the immediate new releases. I think the word you were looking fo

RE: Question about releases available for download

2023-10-19 Thread Mcalexander, Jon J.
2023 9:42 PM > To: users@tomcat.apache.org > Subject: Re: Question about releases available for download > > Jon, > > On 10/18/23 15:39, Mcalexander, Jon J. wrote: > > Thanks Mark. I'm sorry if I stated it incorrectly. I meant the issue > > with JDBC being broken

Re: Question about releases available for download

2023-10-18 Thread Christopher Schultz
ecursion" ;) -chris -Original Message- From: Mark Thomas Sent: Wednesday, October 18, 2023 2:04 PM To: users@tomcat.apache.org Subject: Re: Question about releases available for download On 18/10/2023 18:29, Mcalexander, Jon J. wrote: Hi Mark, et-al, With the recursion error with these

RE: Question about releases available for download

2023-10-18 Thread Mcalexander, Jon J.
ation. > -Original Message- > From: Mark Thomas > Sent: Wednesday, October 18, 2023 2:04 PM > To: users@tomcat.apache.org > Subject: Re: Question about releases available for download > > On 18/10/2023 18:29, Mcalexander, Jon J. wrote: > > Hi Mark, et-al, >

Re: Question about releases available for download

2023-10-18 Thread Mark Thomas
On 18/10/2023 18:29, Mcalexander, Jon J. wrote: Hi Mark, et-al, With the recursion error with these releases in mind, should 8.5.94, 9.0.81, and 10.1.15 be available for download via the archives? Should they not be removed and a not placed in the location that they have been removed due to i

Question about releases available for download

2023-10-18 Thread Mcalexander, Jon J.
Hi Mark, et-al, With the recursion error with these releases in mind, should 8.5.94, 9.0.81, and 10.1.15 be available for download via the archives? Should they not be removed and a not placed in the location that they have been removed due to introduced issues? Just asking, Thanks. Dream *

RE: SSLHostConfig question

2023-09-27 Thread Mcalexander, Jon J.
rg > Subject: Re: SSLHostConfig question > > Jonm > > On 9/26/23 15:07, Mcalexander, Jon J. wrote: > > Thank you, but which format of the line is correct? > > > > certificateKeystoreType="pkcs12" > > > > or > > > > certificateK

Re: SSLHostConfig question

2023-09-26 Thread Christopher Schultz
ptember 26, 2023 11:54 AM To: users@tomcat.apache.org Subject: Re: SSLHostConfig question On 26/09/2023 16:50, Christopher Schultz wrote: Jon, On 9/26/23 11:32, Mcalexander, Jon J. wrote: I have a question around the SSLHostConfig SSL Connector in Tomcat. In the   section, if the SSL Certificate

Re: SSLHostConfig question

2023-09-26 Thread Christopher Schultz
Mark, On 9/26/23 12:54, Mark Thomas wrote: On 26/09/2023 16:50, Christopher Schultz wrote: Jon, On 9/26/23 11:32, Mcalexander, Jon J. wrote: I have a question around the SSLHostConfig SSL Connector in Tomcat. In the   section, if the SSL Certificate is in a Windows PFS Keystore, is it

RE: SSLHostConfig question

2023-09-26 Thread Mcalexander, Jon J.
cooperation. > -Original Message- > From: Mark Thomas > Sent: Tuesday, September 26, 2023 11:54 AM > To: users@tomcat.apache.org > Subject: Re: SSLHostConfig question > > On 26/09/2023 16:50, Christopher Schultz wrote: > > Jon, > > > > On 9/26/2

Re: SSLHostConfig question

2023-09-26 Thread Mark Thomas
On 26/09/2023 16:50, Christopher Schultz wrote: Jon, On 9/26/23 11:32, Mcalexander, Jon J. wrote: I have a question around the SSLHostConfig SSL Connector in Tomcat. In the   section, if the SSL Certificate is in a Windows PFS Keystore, is it appropriate to add certificateKeystoreType=&quo

Re: SSLHostConfig question

2023-09-26 Thread Christopher Schultz
Jon, On 9/26/23 11:32, Mcalexander, Jon J. wrote: I have a question around the SSLHostConfig SSL Connector in Tomcat. In the section, if the SSL Certificate is in a Windows PFS Keystore, is it appropriate to add certificateKeystoreType="PFX" or certificateKeystore="path to

SSLHostConfig question

2023-09-26 Thread Mcalexander, Jon J.
Good morning Gentle People, I have a question around the SSLHostConfig SSL Connector in Tomcat. In the section, if the SSL Certificate is in a Windows PFS Keystore, is it appropriate to add certificateKeystoreType="PFX" or certificateKeystore="path to pfx file" typ

Re: question about tomcat manager Server Status page

2023-09-08 Thread Ivano Luberti
sockets count: 1 But looking at the thread list under the line I can count 24 lines. So what is the number of thread currently instantiated by tomcat? 11 or 24? This is a good question. When I check my localhost Manager running 8.5.x, I see this: Max threads: -1 Current thread count: 4 Current

Re: question about tomcat manager Server Status page

2023-09-08 Thread Christopher Schultz
lines. So what is the number of thread currently instantiated by tomcat? 11 or 24? This is a good question. When I check my localhost Manager running 8.5.x, I see this: Max threads: -1 Current thread count: 4 Current threads busy: 1 Keep alive sockets count: 1 The number of threads shown

question about tomcat manager Server Status page

2023-09-08 Thread Ivano Luberti
Hi, looking at Server Status and Complete Server Status Page I can see the following line: Max threads: 200 Current thread count: 11 Current threads busy: 1 Keep alive sockets count: 1 But looking at the thread list under the line I can count 24 lines. So what is the number of thread current

Re: OT: Question regarding the listeners in the upcoming releases.

2023-07-10 Thread Christopher Schultz
Jon, On 7/7/23 15:46, jonmcalexan...@wellsfargo.com.INVALID wrote: Thank you Chris. I will look into Manager + JMXProxyServlet. Dumb question, but does this require the Manager.war to be deployed (Isn't that just to get to the UI?) Yes, the Manager application must be deployed. You do not

RE: OT: Question regarding the listeners in the upcoming releases.

2023-07-07 Thread jonmcalexander
Thank you Chris. I will look into Manager + JMXProxyServlet. Dumb question, but does this require the Manager.war to be deployed (Isn't that just to get to the UI?), or does it call the Catalina Manager servlet directly? Is there any documentation around this type of setup? Thanks agai

Re: OT: Question regarding the listeners in the upcoming releases.

2023-07-07 Thread Christopher Schultz
Elastic). -chris -Original Message- From: Christopher Schultz Sent: Friday, July 7, 2023 8:39 AM To: users@tomcat.apache.org Subject: Re: OT: Question regarding the listeners in the upcoming releases. Jon, On 7/6/23 16:22, jonmcalexan...@wellsfargo.com.INVALID wrote: I have a question w

RE: OT: Question regarding the listeners in the upcoming releases.

2023-07-07 Thread jonmcalexander
2023 8:39 AM > To: users@tomcat.apache.org > Subject: Re: OT: Question regarding the listeners in the upcoming releases. > > Jon, > > On 7/6/23 16:22, jonmcalexan...@wellsfargo.com.INVALID wrote: > > I have a question which is based around the idea of the new Listeners > > that

Re: OT: Question regarding the listeners in the upcoming releases.

2023-07-07 Thread Christopher Schultz
Jon, On 7/6/23 16:22, jonmcalexan...@wellsfargo.com.INVALID wrote: I have a question which is based around the idea of the new Listeners that are being introduced in the upcoming releases. This is based on something I’ve been thinking on for the last 6 to 9 mos. Would it be possible to have a

OT: Question regarding the listeners in the upcoming releases.

2023-07-06 Thread jonmcalexander
I have a question which is based around the idea of the new Listeners that are being introduced in the upcoming releases. This is based on something I’ve been thinking on for the last 6 to 9 mos. Would it be possible to have a Listener that could output stats for the Tomcat Instance, similar to

additional pom to go with w3schools helloworld question (formatted)

2023-07-04 Thread Jim McNamara
Hi - Here is my formatted pom. thanks http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"; xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";> 4.0.0 local NewJavaMavenProject NewJavaMavenProject 0.1.0-SNAPSHOT

plaint text version of question: hello world w3schools (tomcat)

2023-07-04 Thread Jim McNamara
Hi- I am resending my msg. in plain text wondering how to get tomcat to render my servlet for hellworld from code I got at w3schools. I am trying to follow the guidelines: TOMCAT 10.1.10 + plain text email! THANKS code and configuration files: import java.io.IOException; import java.io.Prin

RE: Informal CIS Benchmark question

2023-06-13 Thread jonmcalexander
day, June 12, 2023 2:53 PM > To: users@tomcat.apache.org > Subject: Re: Informal CIS Benchmark question > > On 12/06/2023 19:13, jonmcalexan...@wellsfargo.com.INVALID wrote: > > I'm asking because we are doing a review of our base settings. We are > using the CIS Benchma

Re: Informal CIS Benchmark question

2023-06-13 Thread Mark Thomas
set matadata-complete to true. We have never used this setting in the past and I am worried about potential application breakage causing outages if we suddenly start setting this setting. Is there any potential issue with using this and if so what? I know it's a convoluted question, but

Re: Informal CIS Benchmark question

2023-06-13 Thread Christopher Schultz
never used this setting in the past and I am worried about potential application breakage causing outages if we suddenly start setting this setting. Is there any potential issue with using this and if so what? I know it's a convoluted question, but trying to mitigate risk as much as possib

Re: Informal CIS Benchmark question

2023-06-12 Thread Mark Thomas
rried about potential application breakage causing outages if we suddenly start setting this setting. Is there any potential issue with using this and if so what? I know it's a convoluted question, but trying to mitigate risk as much as possible. I've just done a quick revie

Informal CIS Benchmark question

2023-06-12 Thread jonmcalexander
if we suddenly start setting this setting. Is there any potential issue with using this and if so what? I know it's a convoluted question, but trying to mitigate risk as much as possible. Thanks, Dream * Excel * Explore * Inspire Jon McAlexander Senior Infrastructure Engineer Asst. Vice Presid

Re: Question in regards to the Connector allowHostHeaderMismatch when it is set to "false"

2023-05-08 Thread Mark Thomas
On 08/05/2023 22:04, Christopher Schultz wrote: On 5/8/23 10:39, Mark Thomas wrote: The port the client connects to is irrelevant. All that matters is the host in the request line and the host header. 1. The host header MUST be present 2. If a host is present in the request line it MUST be

RE: Question in regards to the Connector allowHostHeaderMismatch when it is set to "false"

2023-05-08 Thread Alvaro Garay
Hi, This makes sense now. Thank you for clarifying. Best, Alvaro From: Christopher Schultz Sent: Monday, May 8, 2023 5:04 PM To: users@tomcat.apache.org Subject: [EXTERNAL] Re: Question in regards to the Connector allowHostHeaderMismatch when it is set to

Re: Question in regards to the Connector allowHostHeaderMismatch when it is set to "false"

2023-05-08 Thread Christopher Schultz
ricter than the spec. The reason Tomcat is being stricter than the spec by default is because usually Host <> URL host mismatch is an indication that the client is doing something it should not be doing. -chris From: Mark Thomas Sent: Friday, May 5, 2023 4:56 PM To: Tomcat Users List Subj

Re: Question in regards to the Connector allowHostHeaderMismatch when it is set to "false"

2023-05-08 Thread Mark Thomas
request line it MUST be identical (host and port) to the host header. Mark From: Mark Thomas Sent: Friday, May 5, 2023 4:56 PM To: Tomcat Users List Subject: [EXTERNAL] Re: Question in regards to the Connector allowHostHeaderMismatch when it is set to "fal

RE: Question in regards to the Connector allowHostHeaderMismatch when it is set to "false"

2023-05-08 Thread Alvaro Garay
Hi Mark, In the example above...the port remains the same (8143). How is it different? From: Mark Thomas Sent: Friday, May 5, 2023 4:56 PM To: Tomcat Users List Subject: [EXTERNAL] Re: Question in regards to the Connector allowHostHeaderMismatch when it is set

Re: Question in regards to the Connector allowHostHeaderMismatch when it is set to "false"

2023-05-05 Thread Mark Thomas
5 May 2023 18:21:02 Alvaro Garay : Hi, Tomcat version: 9.0.73 Operating system: Unix z/OS System I have a question in regard to the Connector attribute allowHostHeaderMismatch=false which checks the request line is consistent with the Host Header. So in this scenario, I have the

Question in regards to the Connector allowHostHeaderMismatch when it is set to "false"

2023-05-05 Thread Alvaro Garay
Hi, Tomcat version: 9.0.73 Operating system: Unix z/OS System I have a question in regard to the Connector attribute allowHostHeaderMismatch=false which checks the request line is consistent with the Host Header. So in this scenario, I have the request line using the absolute path with a

Re: Question regarding config.ini 'answer file'

2023-03-28 Thread Mark Thomas
On 28/03/2023 20:49, Jason Murray | ROI Solutions wrote: Hello, Apologies if my this my first post is misdirected. It isn't. All is good but thanks for checking. In a nutshell: my goal is to automate Tomcat 8.5 upgrades on Windows Server as much as possible. More specifically, I have been

Re: Question regarding config.ini 'answer file'

2023-03-28 Thread Bill Stewart
On Tue, Mar 28, 2023 at 1:50 PM Jason Murray | ROI Solutions wrote: In a nutshell: my goal is to automate Tomcat 8.5 upgrades on Windows Server > as much as possible. > Are you sure you need Tomcat 8.5? If you can use 9.x, my recommendation would be to install using this: https://github.com/Bil

Question regarding config.ini 'answer file'

2023-03-28 Thread Jason Murray | ROI Solutions
Hello, Apologies if my this my first post is misdirected. In a nutshell: my goal is to automate Tomcat 8.5 upgrades on Windows Server as much as possible. More specifically, I have been looking to create a config.ini 'answer' file for installing Tomcat 8.5.x as a service on a Windows Server sy

RE: Quick Question with Tomcat 10.1x

2023-03-22 Thread jonmcalexander
3 6:43 PM > To: users@tomcat.apache.org > Subject: Re: Quick Question with Tomcat 10.1x > > Jon, > > On 3/16/23 15:19, jonmcalexan...@wellsfargo.com.INVALID wrote: > > > >> -Original Message- > >> From: jonmcalexan...@wellsfargo.com.INVALID > &

RE: Quick Question with Tomcat 10.1x

2023-03-20 Thread jonmcalexander
gt; Subject: Re: Quick Question with Tomcat 10.1x > > Jon, > > On 3/16/23 15:19, jonmcalexan...@wellsfargo.com.INVALID wrote: > > > >> -Original Message- > >> From: jonmcalexan...@wellsfargo.com.INVALID > >> > >> Sent: Thursday, Mar

Re: Quick Question with Tomcat 10.1x

2023-03-20 Thread Christopher Schultz
Jon, On 3/16/23 15:19, jonmcalexan...@wellsfargo.com.INVALID wrote: -Original Message- From: jonmcalexan...@wellsfargo.com.INVALID Sent: Thursday, March 16, 2023 1:54 PM To: users@tomcat.apache.org Subject: RE: Quick Question with Tomcat 10.1x -Original Message- From

RE: Quick Question with Tomcat 10.1x

2023-03-16 Thread jonmcalexander
> -Original Message- > From: jonmcalexan...@wellsfargo.com.INVALID > > Sent: Thursday, March 16, 2023 1:54 PM > To: users@tomcat.apache.org > Subject: RE: Quick Question with Tomcat 10.1x > > > -Original Message- > > From: Torsten Krah > >

RE: Quick Question with Tomcat 10.1x

2023-03-16 Thread jonmcalexander
> -Original Message- > From: Torsten Krah > Sent: Thursday, March 16, 2023 1:40 PM > To: Tomcat Users List > Subject: Re: Quick Question with Tomcat 10.1x > > schrieb am Do., 16. März 2023, > 19:32: > > > Please read > https://urldefens

Re: Quick Question with Tomcat 10.1x

2023-03-16 Thread Torsten Krah
schrieb am Do., 16. März 2023, 19:32: > Hi, > I have a really simple war file I created to "test" that Tomcat is coming > up and running. It works fine on Tomcat 8.5x, 9.0x, AND 10.0x, however on > 10.1.7 I am getting this strange stack trace. I'm not able to determine > just what is being called

Quick Question with Tomcat 10.1x

2023-03-16 Thread jonmcalexander
Hi, I have a really simple war file I created to "test" that Tomcat is coming up and running. It works fine on Tomcat 8.5x, 9.0x, AND 10.0x, however on 10.1.7 I am getting this strange stack trace. I'm not able to determine just what is being called out. SEVERE: Servlet.service() for servlet [j

Re: Question about Redisson

2023-01-13 Thread Christopher Schultz
Doug, On 1/12/23 15:51, Doug Whitfield wrote: Also, Chris's suggesiton to look at org.apache.catalina.connector.RECYCLE_FACADES is a good first step. Note that the value you need for that may not be what you expect. It needs to be "true" whereas I read the name and think it should be "false" to

Re: Question about Redisson

2023-01-12 Thread Doug Whitfield
>Also, Chris's suggesiton to look at >org.apache.catalina.connector.RECYCLE_FACADES is a good first step. Note > that the value you need for that may not be what you expect. It needs to > be "true" whereas I read the name and think it should be "false" to > disable recycling. Thanks for coming

Re: Question about Redisson

2023-01-10 Thread Mark Thomas
Doug, There were a couple of questions in my original response it would be useful to get answers to. Also, Chris's suggesiton to look at org.apache.catalina.connector.RECYCLE_FACADES is a good first step. Note that the value you need for that may not be what you expect. It needs to be "true

Re: Question about Redisson

2023-01-10 Thread Doug Whitfield
First off, thanks for the link. I’m bringing this up with my manager who is much more likely to be able to make some headway with the marketing folks. There’s surely a marketing friendly way to say “Pay for SLA”. > Are you able to reproduce the same problem with a non-Redisson-based > segmented

Re: Question about Redisson

2023-01-09 Thread Christopher Schultz
to get it fixed. The idea that we don’t work with the community when necessary is an insane for anything to put on our website (doesn’t mean I have any power to fix the copy though). Understood. I think Mark is mostly trying to make a point. He's obviously willing to engage on the actual quest

Re: Question about Redisson

2023-01-09 Thread Doug Whitfield
p;utm_content=email-signature-link> From: Mark Thomas Date: Monday, January 9, 2023 at 12:12 To: users@tomcat.apache.org Subject: Re: Question about Redisson Given the disparaging comments OpenLogic makes about obtaining support for open source projects from a community forum, it is more th

Re: Question about Redisson

2023-01-09 Thread Mark Thomas
r, but at the moment that isn’t something we want to do. My question, at the moment, is pretty simple. How does this interact with Tomcat? Would the session management bugs in Tomcat apply? Almost certainly. There are lots of ways to trigger response mix-up. The primary cause is application bug

Question about Redisson

2023-01-09 Thread Doug Whitfield
distribute requests across a cluster of Tomcat servers. This is all done in non-sticky session management backed by Redis.” I believe we could take a heap dump and get the answer, but at the moment that isn’t something we want to do. My question, at the moment, is pretty simple. How does this int

RE: OT: Question on manager app in distro

2022-10-08 Thread jonmcalexander
Thanks! Thanks, Sent with BlackBerry Work (www.blackberry.com) From: Chuck Caldarale Sent: Oct 8, 2022 8:57 AM To: Tomcat Users List Subject: Re: OT: Question on manager app in distro > On 2022 Oct 7, at 21:13, Chuck Caldarale wrote: > > >>

RE: OT: Question on manager app in distro

2022-10-08 Thread jonmcalexander
Thank you Chuck! Thanks, Sent with BlackBerry Work (www.blackberry.com) From: Chuck Caldarale Sent: Oct 7, 2022 9:15 PM To: Tomcat Users List Subject: Re: OT: Question on manager app in distro > On 2022 Oct 7, at 19:10, > wrote: > > If

Re: OT: Question on manager app in distro

2022-10-08 Thread Chuck Caldarale
> On 2022 Oct 7, at 21:13, Chuck Caldarale wrote: > > >> On 2022 Oct 7, at 19:10, >> wrote: >> >> If I wanted to possibly take parts of the manager application that comes >> with Tomcat and put bits and pieces together for an internal utility app >> (status stuff only), or figure out how

  1   2   3   4   5   6   7   8   9   10   >