RE: Tomcat 10.1 -- Precedence of catalina.sh jvm Options vs server.xml options

2023-08-11 Thread Brandie Nickey-External
Thank you! Regeneron - Internal Use Only -Original Message- From: Thomas Hoffmann (Speed4Trade GmbH) Sent: Thursday, August 10, 2023 11:21 PM To: Tomcat Users List Subject: [External] AW: Tomcat 10.1 -- Precedence of catalina.sh jvm Options vs server.xml options EXTERNAL MESSAGE __

Tomcat 8.5.64 maxHttpHeaderSize="6553600"

2023-08-11 Thread Joel Werginz
Version: 8.5.64 maxHttpHeaderSize=³6553600² 10-Aug-2023 16:36:21.530 FINE [https-openssl-apr-443-exec-7] org.apache.coyote.http2.Http2UpgradeHandler.upgradeDispatch Entry, Connection [1], SocketStatus [OPEN_READ] 10-Aug-2023 16:36:21.530 FINE [https-openssl-apr-443-exec-7] org.apache.coyote.http

Re: Forwarding request to a different servlet

2023-08-11 Thread Andy Pont
Mark wrote... RequestDispatcher operates within a given ServletContext (web application). You are trying to do a cross-context dispatch - i.e. to another web application. To do this you will need to: - enable cross-context dispatch for the /plugins web application https://tomcat.apache.org/to

Re: Forwarding request to a different servlet

2023-08-11 Thread Mark Thomas
RequestDispatcher operates within a given ServletContext (web application). You are trying to do a cross-context dispatch - i.e. to another web application. To do this you will need to: - enable cross-context dispatch for the /plugins web application https://tomcat.apache.org/tomcat-8.5-doc/

Re: Forwarding request to a different servlet

2023-08-11 Thread Terence M. Bandoian
Hi, Andy- I'd suggest looking at: ServletContext.getContext and comparing: ServletContext.getRequestDispatcher with ServletRequest.getRequestDispatcher Hope that helps. -Terence Bandoian On 8/11/2023 2:52 AM, Andy Pont wrote: Hello! We have a commercial application that runs under Tomcat 8.

Forwarding request to a different servlet

2023-08-11 Thread Andy Pont
Hello! We have a commercial application that runs under Tomcat 8.5.65 (on Windows Server 2019). In the tomcat/webapps directory there are the following three directories (names changed): backend frontend ROOT The “frontend” directory contains the UI for the commercial application and is, a