Re: RE: JspWriterImpl BufferSize And Flushing In Tomcat 10.1.16

2025-02-03 Thread Rémy Maucherat
On Mon, Feb 3, 2025 at 3:38 AM Tim N wrote: > > I've replicated something similar on Tomcat 10.1.34 (and also 9.0.98). Steps > > 1 - Download and unzip Tomcat 10.1.34 > 2 - Create file "webapps/ROOT/include.jsp" with contents "I've been > included!" > 3 - Edit "webapps/ROOT/index.jsp" adding the f

RE: RE: JspWriterImpl BufferSize And Flushing In Tomcat 10.1.16

2025-02-02 Thread Tim N
I've replicated something similar on Tomcat 10.1.34 (and also 9.0.98). Steps 1 - Download and unzip Tomcat 10.1.34 2 - Create file "webapps/ROOT/include.jsp" with contents "I've been included!" 3 - Edit "webapps/ROOT/index.jsp" adding the following code at the bottom of the JSP ``` <% String

RE: Re: DMARC Compliance

2025-01-13 Thread Baez, Melvin L
Thank you Mark! Melvin L Baez Jr Specialist, Technology Engineer Proud Nationwide Member IT I&O Ops Web Middleware W 614-677-7281 bae...@nationwide.com -Original Message- From: Mark Thomas Sent: Monday, January 13, 2025 2:58 PM To: users@tomcat.apache.org Subject: [EXTERNAL] Re: DMA

RE: Re: net::ERR_HTTP2_PROTOCOL_ERROR with 10.1.30

2024-12-10 Thread Boris Petrov
I've been trying all versions of Tomcat since 9.0.93 (including the newly released 9.0.98) and all of them have the same issue. I find it extremely strange that no-one else hits this. Mark, are you still looking into this problem? You mentioned that you have some suspicions. I can't give you a

RE: Re: net::ERR_HTTP2_PROTOCOL_ERROR with 10.1.30

2024-10-09 Thread Boris Petrov
I also have been experiencing the same issue (with Tomcat 9). 9.0.93 works fine. 9.0.94 is unusable. 9.0.95 and now 9.0.96 almost work but sometimes I get the same behavior as with 9.0.94. I see it in my integration tests - there are some sporadic failures here and there when I upgrade from 9.0

RE: Re: Embedded Tomcat common classloader

2024-06-08 Thread Terence M. Bandoian
From the Oracle (Java 8) documentation: https://docs.oracle.com/javase/8/docs/technotes/tools/windows/classpath.html Class Path Wild Cards Class path entries can contain the base name wildcard character (*), which is considered equivalent to specifying a list of all of the files in

RE: Re: Tomcat Console - 401 Unauthorized

2024-05-23 Thread Garber, Frank
And the winner is: Chuck 😉 I tried Chrome (instead of the Corporate mandated browser Edge) and I was right away challenged for credentials. Thanks for all those who responded. From: Chuck Caldarale Sent: Wednesday, May 22, 2024 4:36 PM To: Tomcat Users List Subject: {EXTERNAL} Re: Tomcat Con

RE: Re: Tomcat Console - 401 Unauthorized

2024-05-22 Thread Garber, Frank
Not knowing how it’s supposed to behave, here’s another clue. When I click on the “Server Status” button, I never get prompted for credentials. Is it a permissions problem on the server itself. Like the server doesn’t have rights to the HTML pages? Thanks in advance, From: Garber, Frank Sent:

RE: Re: Tomcat Console - 401 Unauthorized

2024-05-22 Thread Garber, Frank
I’m not sure how the URLs got munged up. What I have on my side is valid XML, so I’m not worried about that. I’m really just concerned that the following isn’t working: Thanks in advance, From: Chuck Caldarale Sent: Wednesday, May 22, 2024 2:16 PM To: Tomcat Users List Subject

RE: Re: EOL - Tomcat versions

2024-01-19 Thread Francisco Dellanio Leite Alencar
@Mark Thomas, Is it possible to consider that the minimum support time of Apache Tomcat 9.0.X is until 2027 (10 years since Released)? Thanks. On 2024/01/08 08:42:28 Mark Thomas wrote: > > > On 08/01/2024 06:47, i...@flyingfischer.ch wrote: > > https://endoflife.date/tomcat > > > > Am 08.

RE: Re: Possible AbstractProtocol.waitingProcessors leak in Tomcat 9.0.75

2023-12-05 Thread Jakub Remenec
Hi, I've experienced the same issue as described on Apache Tomcat 10.1.13. After downgrading to 10.1.5 it started to work correctly. I also inspected the heapdump of the application with memory problems and found out that there were many org.apache.tomcat.websocket.WsSession present in OUTPUT_CLOS

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-06-12 Thread Christopher Schultz
supports that switchover in a very elegant fashion. -chris From: Christopher Schultz Sent: Friday, June 2, 2023 4:45 PM To: users@tomcat.apache.org Subject: Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10 Lauri, On 6/2/23 02:58, Lauri wrote: @Thomas: I have made a

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-06-10 Thread Lauri
more stable version. Kind Regards, Lauri From: Christopher Schultz Sent: Friday, June 2, 2023 4:45 PM To: users@tomcat.apache.org Subject: Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10 Lauri, On 6/2/23 02:58, Lauri wrote: > @Tho

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-06-02 Thread Christopher Schultz
Lauri, On 6/2/23 02:58, Lauri wrote: @Thomas: I have made a test using the request.getParts() API, as mentioned here: https://docs.oracle.com/javaee/6/tutorial/doc/glrbb.html The test upload application has been modified as: -- web.xml --- http://xmlns.jcp.org/xml/ns/javaee"; xmlns:

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-06-01 Thread Mark Thomas
On 01/06/2023 10:18, Torsten Krah wrote: Am Donnerstag, dem 01.06.2023 um 08:52 + schrieb Lauri: You mention a servlet part, but I do not use a servlet. All the code is contained in the JSP page. You need to divide that code in a JSP and in your upload servlet as you need to provide the @M

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-06-01 Thread Torsten Krah
Am Donnerstag, dem 01.06.2023 um 08:52 + schrieb Lauri: > > You mention a servlet part, but I do not use a servlet. > > All the code is contained in the JSP page. You need to divide that code in a JSP and in your upload servlet as you need to provide the @MultipartConfig on that servlet which

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-05-31 Thread Torsten Krah
Am Mittwoch, dem 31.05.2023 um 09:42 + schrieb Lauri: > But my initial question remains, what should have to modify on my > posted JSP page ? We already posted you with the docs where you can read about the necessary changes you need to make to your page, it is all written there (just call get

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-05-31 Thread Torsten Krah
Am Mittwoch, dem 31.05.2023 um 09:14 + schrieb Lauri: > So, I guess I need to re-write my JSP page as if it was for Java EE > for Tomcat 9 (or earlier versions) for instance, correct? Why would you want to do that? Just rewrite it to work with the jakarta api and it will work with tomcat 10.

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-05-31 Thread Torsten Krah
Am Mittwoch, dem 31.05.2023 um 09:18 + schrieb Thomas Hoffmann (Speed4Trade GmbH): > http://www.java2s.com/example/java-api/javax/servlet/http/httpservletrequest/getparts-0-0.html There is also a whole example app on the link you already provided Thomas: https://docs.oracle.com/javaee/6/tutor

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-05-31 Thread Torsten Krah
Am Mittwoch, dem 31.05.2023 um 09:04 + schrieb Lauri: > What modules should I use if these are wrong ? None, it is already included in the servlet api. Like already written, please read e.g.: https://docs.oracle.com/javaee/6/tutorial/doc/gmhba.html kind regards Torsten -- ---

Re: Re-Cannot upload an image file from a deployed JSP page in Tomcat 10

2023-05-30 Thread Mark Thomas
On 30/05/2023 07:17, Lauri wrote: Hi Mark, If I understand well: a) I should remove the commons*.jar files from my /u01/tomcat/base/middleware/tomcat10/webapps/TESTS/WEB-INF/lib. No. commons-fileupload-1.5.jar (in some form) can stay (see option 1). b) I do not need to have a specific conf

RE: Re: Tomcat 9.0.72 and New Relic APM java agent issues

2023-03-17 Thread Roe, Jennifer L
Hi, We have opened a case with New Relic. The behavior exists with the 7.11.1 and 8.0.1 java agents per multiple applications teams. [The behavior was first noticed with Tomcat 9.0.72; Tomcat 9.0.73 which was released shortly after 9.0.72 also experiences this behavior.] The app teams st

RE: Re: Re: Tomcat 8.5.75 Servlet WriteListener and ReadListener setting thread

2022-03-01 Thread Istvan SZEKELY
Thanks for the quick fix :) On 2022/02/28 16:47:20 Rémy Maucherat wrote: > Thanks for the test, this is what I had in mind. As I kind of expected > when reading about the sequential technique used, the previous fix was > causing a new problem since the thread id was not reset until the full > recy

Re: Re: Tomcat 8.5.75 Servlet WriteListener and ReadListener setting thread

2022-02-28 Thread Rémy Maucherat
On Mon, Feb 28, 2022 at 4:39 PM Istvan SZEKELY wrote: > > I've written a NonBlocking ReadWrite test (testDelayedNBReadWrite, in the > attached file). I'm not sure if it is a valid test case (though works on > 8.5.73, fails on 8.5.75). If it is valid, i can make a PR if needed. Thanks for the te

RE: Re: Tomcat 8.5.75 Servlet WriteListener and ReadListener setting thread

2022-02-28 Thread Istvan SZEKELY
I've written a NonBlocking ReadWrite test (testDelayedNBReadWrite, in the attached file). I'm not sure if it is a valid test case (though works on 8.5.73, fails on 8.5.75). If it is valid, i can make a PR if needed. On 2022/02/24 10:42:29 Rémy Maucherat wrote: > On Thu, Feb 24, 2022 at 10:31 AM Is

re: re: getServerPort always return 80

2022-01-07 Thread 王 静凯
Hi Hua, I have try to modify the access log format of tomcat. Add '%{Host}i' in server.xml like this: Then it print 'domain:10001' in log, so I think nginx has passed the correct host header to tomcat. By the way, I found the valve component 'RemoteIpValve'

RE: Re: Supported signature algorithms in Tomcat 8.5

2021-09-23 Thread Mandava, Sreevidya
Hi Attached my certs. The error message they were getting were "unsupported signature algorithm ecdsa_sha1". Unfortunately don't have the logs and can't paste the actual client cert. I only have a packet capture during the failure and I was comparing tomcat logs from successful case and the pac

Re: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-28 Thread Christopher Schultz
Eric, On 6/25/21 22:09, Eric Robinson wrote: -Original Message- From: Olaf Kock Sent: Friday, June 25, 2021 8:07 AM To: users@tomcat.apache.org Subject: Re: Re-Use TCP Source Ports if the Socket is Unique? On 25.06.21 14:46, Eric Robinson wrote: Olaf and Scott -- Thanks to both

RE: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-25 Thread Eric Robinson
> -Original Message- > From: Mark H. Wood > Sent: Friday, June 25, 2021 12:30 PM > To: users@tomcat.apache.org > Subject: Re: Re-Use TCP Source Ports if the Socket is Unique? > > On Fri, Jun 25, 2021 at 12:46:03PM +, Eric Robinson wrote: > > Olaf and Scott -

RE: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-25 Thread Eric Robinson
> -Original Message- > From: Christopher Schultz > Sent: Friday, June 25, 2021 11:33 AM > To: users@tomcat.apache.org > Subject: Re: Re-Use TCP Source Ports if the Socket is Unique? > > Eric, > > On 6/24/21 21:14, Eric Robinson wrote: > > I guess I ma

RE: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-25 Thread Eric Robinson
> -Original Message- > From: Olaf Kock > Sent: Friday, June 25, 2021 8:07 AM > To: users@tomcat.apache.org > Subject: Re: Re-Use TCP Source Ports if the Socket is Unique? > > > On 25.06.21 14:46, Eric Robinson wrote: > > Olaf and Scott -- > > > &g

Re: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-25 Thread Mark H. Wood
On Fri, Jun 25, 2021 at 12:46:03PM +, Eric Robinson wrote: > Olaf and Scott -- > > Thanks to both of you for your comments. I may have asked my question poorly, > since what you both described is the way I understand TCP to work. There is > no correlation between an incoming connection to to

Re: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-25 Thread Christopher Schultz
Eric, On 6/24/21 21:14, Eric Robinson wrote: I guess I may have answered this question for myself. At least I can simulate it with ncat. Note that I have two ncat sessions open to the same remote server using the same source port, but with different source IPs. [root@testserver ~]# netstat -ant

Re: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-25 Thread Olaf Kock
l /not/ depend on any of Tomcat's Connector-configurations whatsoever Olaf >> -Original Message- >> From: Olaf Kock >> Sent: Friday, June 25, 2021 3:01 AM >> To: users@tomcat.apache.org >> Subject: Re: Re-Use TCP Source Ports if the Socket is Unique? >

RE: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-25 Thread Eric Robinson
me IP that the connector is configured to listen on. > -Original Message- > From: Olaf Kock > Sent: Friday, June 25, 2021 3:01 AM > To: users@tomcat.apache.org > Subject: Re: Re-Use TCP Source Ports if the Socket is Unique? > > > On 25.06.21 05:19, Eric Robinson

RE: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-25 Thread Scott,Tim
ve until Tomcat is shut down. Does that help? Thanks, Tim -- Tim Scott OCLC · Senior Software Engineer / Technical Product Manager cc: IT file OCLC COVID-19 resources: oc.lc/covid19-service-info   -Original Message- From: Eric Robinson Sent: 25 June 2021 04:19 To: Tomcat Users

Re: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-25 Thread Olaf Kock
On 25.06.21 05:19, Eric Robinson wrote: > Thanks for the feedback, Daniel. > > I guess the answer depends on whether the socket libraries use the tomcat > listening port as the source IP. If you have three tomcat instances listening > on three different IPs, each instance should be able to open

RE: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-24 Thread Eric Robinson
, as long as each tomcat uses its listening IP as the source IP of the socket. That's the part I'm still not sure about. > -Original Message- > From: Daniel Baktiar > Sent: Thursday, June 24, 2021 9:16 PM > To: Tomcat Users List > Subject: Re: Re-Use TCP Sour

Re: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-24 Thread Daniel Baktiar
Hi Eric, It should behave the same way. The socket client application will be assigned an ephemeral port. On Fri, Jun 25, 2021 at 9:14 AM Eric Robinson wrote: > I guess I may have answered this question for myself. At least I can > simulate it with ncat. Note that I have two ncat sessions open

RE: Re-Use TCP Source Ports if the Socket is Unique?

2021-06-24 Thread Eric Robinson
I guess I may have answered this question for myself. At least I can simulate it with ncat. Note that I have two ncat sessions open to the same remote server using the same source port, but with different source IPs. [root@testserver ~]# netstat -antp|grep ncat tcp0 0 192.168.11.215

Re: Re: OpenSSL prompts for key password

2020-10-15 Thread Michael Osipov
> Michael, > > On 10/14/20 12:46, Michael Osipov wrote: > > Folks, > > > > I have recently upgrade a cert and left out the last char of the key > > password by accident. > > > >> # /sbin/init.d/tomcat-smartld start > >> Starting Apache Tomcat 8.5... > >> Using CATALINA_BASE:   /var/opt/tomcat-sm

Re: Re: At least one JAR was scanned for TLDs yet contained no TLDs.

2020-10-08 Thread Martin Grigorov
On Thu, Oct 8, 2020, 14:00 Raivo Rebane wrote: > > > > Forwarded Message > Subject:Re: At least one JAR was scanned for TLDs yet contained no > TLDs. > Date: Thu, 8 Oct 2020 13:37:49 +0300 > From: Raivo Rebane > To: Martin Grigorov , > users-get.123_...@tomcat.a

Re: Re: [OT] Replacing the standard JspWriter

2020-09-15 Thread Adam Rauch
On 9/14/2020 6:19 AM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Adam, On 9/11/20 19:30, Adam Rauch wrote: I have implemented a custom JspWriter and registered it for use by our JSPs using the approach described here: https://stackoverflow.com/questions/29508245

Re: Re: Replacing the standard JspWriter

2020-09-14 Thread Adam Rauch
On 9/12/2020 2:15 AM, Mark Thomas wrote: On 12/09/2020 00:30, Adam Rauch wrote: I have implemented a custom JspWriter and registered it for use by our JSPs using the approach described here: https://stackoverflow.com/questions/29508245/jsp-using-a-delegate-for-out-jspwriter-with-jsp-includes-to-

Aw: Re: Re: /META-INF/resources/ and Chrome's DevTools

2020-04-07 Thread Peter Rader
Ah ok,    I use maven, only tomcat 7 and 6 is available. PreResources are only available in tomcat8 so I decide against tomcat in higher versions than 7.   Kind regards >  Gesendet: Montag, 06. April 2020 um 16:34 Uhr > Von: "Mark Thomas" >  An: users@tomcat.apache.org > Betreff: Re: Aw: Re

RE: Re: Urgent help tomcat 9 and https 8443

2020-03-13 Thread Siva.Saravanamuthu
Mark, Thanks. You waken my frozen concentration. Yes I was able to identify the error which is related APR library and I followed the step as per this article https://www.openkm.com/wiki/index.php/Tomcat_native_libraries which made port 8443 listen and able to load the URL with the certificate.

Re: Re: Re: Fix for CVE-2020-1938

2020-03-10 Thread Martin Grigorov
Hi, On Tue, Mar 10, 2020 at 10:00 AM "Jürgen Göres" wrote: > > > Hi Mark, > > so I went with your proposed default setting of "::". > Alas, this fails, e.g., when we put our Tomcats into Docker containers, > where only IPv4 is available (I would expect the same to happen on AWS > environments, w

Aw: Re: Re: Fix for CVE-2020-1938

2020-03-10 Thread Jürgen Göres
Hi Mark,   so I went with your proposed default setting of "::". Alas, this fails, e.g., when we put our Tomcats into Docker containers, where only IPv4 is available (I would expect the same to happen on AWS environments, which are usually IPv4 only, too, haven't checked that yet):   10-Mar-20

Re: Re: Proposal: Note on web site that Tomcat 10 is a milestone-release

2020-03-04 Thread Martin Grigorov
Hi Richard, On Thu, Mar 5, 2020 at 4:42 AM Richard Huntrods wrote: > > On 3/4/2020 6:28 AM, Martin Grigorov wrote: > > On Wed, Mar 4, 2020 at 4:02 PM Johan Compagner > > wrote: > > > >>> > Or for now generate 2 build artifacts? (as long as it is really just > >> the > package rename)

Re: Re: Proposal: Note on web site that Tomcat 10 is a milestone-release

2020-03-04 Thread Richard Huntrods
On 3/4/2020 6:28 AM, Martin Grigorov wrote: On Wed, Mar 4, 2020 at 4:02 PM Johan Compagner wrote: Or for now generate 2 build artifacts? (as long as it is really just the package rename) Hm, no. I just tested locally Tomcat 10.0.1 with Apache Wicket (9.x, master). Nothing more. Tomcat

Aw: Re: SOLVED - Re: Re: mvn redeploy - double redeployment problem (within 0.2 seconds)

2020-02-02 Thread Peter Rader
> Please post updates to the original thread. This is the original thread. > As suggested in the original thread, it was a permissions issue ... > permission denied because the port was already in use : ) Why do you think it is a permission issue? I already disproved that! How can you break it

Re: RE : Install Comodo SSL in Tomcat

2020-01-27 Thread logo
Leonard, Am 2020-01-27 16:53, schrieb Léonard WAMBERGUE: Ok so i have find this error (severe) in my Catalina.out about connector : 27-Jan-2020 10:52:23.625 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["http-nio-194.5.159.189-8080"] 27-Jan-2020 10:52:23.76

Re: Re[2]: How to set apache load balancer for send request to 6 tomcat server

2019-12-24 Thread Zahid Rahman
This is what a typical workers.properties file look like.this is not same as your configuration *Workers properties* 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 worker.list=balancer,status worker.tomcat1.type=ajp13 worker.tomcat1.port=8009 worker.tomcat1.host=localhost worker.tomcat

Re: Re[2]: How to set apache load balancer for send request to 6 tomcat server

2019-12-24 Thread Zahid Rahman
Load balancing Algorithms https://youtu.be/iqOTT7_7qXY On Tue, 24 Dec 2019, 10:06 Zahid Rahman, wrote: > There is a really great series of videos on this subject. He is > referencing tomcat Apache website. > If you speak German > > https://youtu.be/mQKZ8-EfBHU > > On Tue, 24 Dec 2019, 09:17 Gia

Re: Re[2]: How to set apache load balancer for send request to 6 tomcat server

2019-12-24 Thread Zahid Rahman
There is a really great series of videos on this subject. He is referencing tomcat Apache website. If you speak German https://youtu.be/mQKZ8-EfBHU On Tue, 24 Dec 2019, 09:17 Giancarlo Celli, wrote: > Thanks for the reply. > More than anything else my question is to know if the configuration >

Re: Re: Tomcat 8.5.48: NullPointerException in ApplicationMapping.getHttpServletMapping()

2019-11-18 Thread Adam Rauch
On 11/17/2019 9:01 AM, Mark Thomas wrote: On 16/11/2019 22:08, Adam Rauch wrote: While testing 8.5.48, we now see NullPointerExceptions when our ImageServlet code attempts to forward a request to a new location. In 8.5.47, the code works fine. Thanks for reporting this. I can see what the pro

Re: Re: TLS 1.3 with client auth fails with NOT_HANDSHAKING during handshake

2019-10-30 Thread Mathias S
> > That looks like a bug. Please open a Bugzilla issue. > > JSSE doesn't implement post-handshake authentication for TLSv1.3 but as > the Connector is configured with clientAuth="true" authentication > should > be happening during the initial handshake and, therefore, should work. > > Mark > Thank

Re: Re: Database timeout

2019-07-28 Thread Richard Huntrods
On 7/27/2019 9:43 PM, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Richard, > > On 7/25/19 21:44, Richard Huntrods wrote: >> I'm having an ongoing issue with the database connections timing >> out after a long period of inactivity (i.e. no-one connecting to >>

Re: Re: Database timeout

2019-07-28 Thread Richard Huntrods
On 7/27/2019 7:18 AM, Mark Thomas wrote: > On 26/07/2019 02:44, Richard Huntrods wrote: >> I'm having an ongoing issue with the database connections timing out >> after a long period of inactivity (i.e. no-one connecting to the tomcat >> applicaton). >> >> But first... >> >> My system: >> OS: Ubun

Re: Re: HTTP to HTTPS redirect not happening

2019-07-22 Thread Konstantin Kolinko
вс, 21 июл. 2019 г. в 00:09, Richard Huntrods : > > I still am having trouble understanding why the web application's > WEB-INF/web.xml would be the appropriate place to put the change when I > want to affect ROOT. I would have thought webapps/ROOT/WEB-INF/web.xml > would have been the correct one.

Re: Re: HTTP to HTTPS redirect not happening

2019-07-20 Thread Richard Huntrods
Sorry for top-posting. It's the default with my mail program (thunderbird)... On 7/20/2019 11:27 AM, Konstantin Kolinko wrote: > сб, 20 июл. 2019 г. в 17:47, Richard Huntrods : >> OK. That was really weird. >> >> As I said in my message, following the directions on the web did NOT >> work. It didn

Re: Re: HTTP to HTTPS redirect not happening

2019-07-20 Thread Richard Huntrods
Thanks. However, what I don't understand is why putting that code into the webapps WEB-INF/web.xml would cause the behaviour I want in ROOT. Sadly, this is a production server and I can't play with it except after hours. EDIT. I tried working with web.xml on my development server, and could not

RE: Re: Making PreResources configuration recurse directories

2019-06-06 Thread Milbaugh, Theodore K (Ted)
> -Original Message- > From: Christopher Schultz > Sent: Wednesday, June 5, 2019 4:37 PM > To: users@tomcat.apache.org > Subject: [EXTERNAL] Re: Making PreResources configuration recurse directories > > Nationwide Information Security Warning: This is an external email. Do not > click >

Re: Re: Resource Request - MySQL Data Pool

2019-03-28 Thread Richard Huntrods
Chris, Thanks. Lots to go through... On 3/26/2019 9:00 AM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Richard, On 3/25/19 14:15, Richard Huntrods wrote: It's time to update my application to use "real" (i.e. current best practices) data connection pooling. :

Re: Re: Resource Request - MySQL Data Pool

2019-03-28 Thread Richard Huntrods
Luis, Thanks very much. I'll have a look. Cheers, -Richard On 3/26/2019 1:43 AM, Luis Rodríguez Fernández wrote: Hello Richard, In my experience the best is to "start simple". I would have a look at the apache tomcat doc [1], configure your pool with a minimal setup and test. Everything depe

Re: Re: JspC ignores uriroot property as of Tomcat 9.0.14 / 8.5.37

2019-01-03 Thread Adam Rauch
On 1/3/2019 11:53 AM, Mark Thomas wrote: On 02/01/2019 19:50, Adam Rauch wrote: Our build pre-compiles JSPs by invoking JspC following a pattern similar to the JspC JavaDoc example configuration: https://tomcat.apache.org/tomcat-8.5-doc/api/org/apache/jasper/JspC.html Starting with 9.0.14 and 8

RE: Re: AW: AW:

2018-08-31 Thread McIntosh, Carolyn (Carol)
I need to be on the mailing list for security alerts/updates/patches/fixes Carol McIntosh, SCPM, CSM Specialist, Infrastructure Engineering Proud Nationwide Member Build-Middleware Engineering W 614-677-7282 | C 614-507-0985 carol.mcint...@nationwide.com FORTUNE® and Time Inc. are not affi

Re: Re:

2018-08-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Francesco, On 8/1/18 4:16 AM, Francesco Viscomi wrote: >> I've configured tomcat with a host: MIosil-dd.net >> >> >> I can start the server, but when i try to reach it the server >> tell me: >> >> ERR_EMPTY_RESPONSE What URL did you use to make

Re: Re: FW: HttpServletResponse.sendError - missing message in error page

2018-07-30 Thread Michael Osipov
> [...] > > “It is implied but it could be clearer.” > > [...] > > I agree that default ErrorReportValve is not something that has to be > backward compatible as the apps should have provided their own. Yet, > we were using the default as it was working very well and was covering > our needs.

RE: Re: Tomcat 5.5.17 migration to 6.0.53

2018-07-24 Thread David Babooram
-Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Tuesday, 24 July 2018 12:41 PM To: users@tomcat.apache.org Subject: [EXTERNAL] Re: Tomcat 5.5.17 migration to 6.0.53 -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 David, On 7/24/18 10:54 AM, Dav

Re: Re: Tomcat 5.5.17 migration to 6.0.53

2018-07-24 Thread David Babooram
Hey thanks. Before I go through your recommendations with a fine tooth comb, do you think it will be there same amount of work trying to go straight to the latest Apache version? I started thinking of this since your mentioned the vul. Thanks, David On Tue, Jul 24, 2018 at 12:41 PM -040

RE: Re: Tomcat 5.5.17 migration to 6.0.53

2018-07-24 Thread David Babooram
Hi Christopher, I will try to be as clear as possible. The files that were originally in /usr/local/tomcat/jakarta-tomcat-5.5.17/webapps/MYAPP/WEB-INF/lib were copied by default when I migrated the app to /usr/local/tomcat/apache-tomcat-6.0.53/webapps/ When I ran MYAPP I got the error fro

Re: RE: Re: Tomcat 5.5.17 migration to 6

2018-07-14 Thread David Babooram
Alright. I guess the thought the process was to upgrade to 6, then 7, 8 Thanks, David On Sat, Jul 14, 2018 at 3:38 PM -0400, "Caldarale, Charles R" mailto:chuck.caldar...@unisys.com>> wrote: > From: David Babooram [mailto:david.baboo...@digicelgroup.com] > Subject:

RE: Re: Tomcat 5.5.17 migration to 6

2018-07-14 Thread Caldarale, Charles R
> From: David Babooram [mailto:david.baboo...@digicelgroup.com] > Subject: Re: Re: Tomcat 5.5.17 migration to 6 > But by decision was based on what was presented in the Apache site. In that, upgrade from > 5.5 was known to only go to 6. Seriously, don't even think about "

Re: Re: Tomcat 5.5.17 migration to 6

2018-07-14 Thread David Babooram
Hi Good point. But by decision was based on what was presented in the Apache site. In that, upgrade from 5.5 was known to only go to 6. Nevertheless.. is there some official documents on migrating to 8.5? Thanks, David On Sat, Jul 14, 2018 at 11:05 AM -0400, "calder" mailto:calder@

Re: RE: mod_proxy_http and "Expect: 100-continue" don't play well

2018-07-06 Thread Michael Osipov
#x27;t faced by this yes, but what's about adding something like > >> > >> > >>RequestHeader unset Expect early > >> > >> > >> at the Apache httpd? > > > >I know that tip, but it makes no sense at all. The cli

RE: RE: mod_proxy_http and "Expect: 100-continue" don't play well

2018-07-05 Thread Jäkel , Guido
ay, July 05, 2018 2:03 PM >To: users@tomcat.apache.org >Subject: Re: RE: mod_proxy_http and "Expect: 100-continue" don't play well > > >> Dear Michael, >> >> i don't know if this issue also take happen with it, but may be using >> mod_jk a

Re: RE: mod_proxy_http and "Expect: 100-continue" don't play well

2018-07-05 Thread Michael Osipov
> Dear Michael, > > i don't know if this issue also take happen with it, but may be using mod_jk > an option for you, also? Hi Guido, just installed mod_jk through ports and configured it. No avail, I have the very same issue. I will raise this on the HTTPd mailing list. Michael > >

Re: Re: How to set up Tomcat as a client (not a server) for mutual SSL

2018-06-02 Thread gaofeng...@139.com
How to unsubscribe to tomcat gaofeng...@139.com From: Mark Thomas Date: 2018-05-31 22:19 To: Tomcat Users List Subject: Re: How to set up Tomcat as a client (not a server) for mutual SSL On 31/05/18 14:20, Jean Pierre Urkens wrote: > I've a web application deployed under Tomcat-8.5.30 that sen

Re: Re: A question about The Relationship between Http Session and WebSocket Session

2018-01-23 Thread tong__...@163.com
OK Thanks Mark! tong__...@163.com From: Mark Thomas Date: 2018-01-23 20:02 To: users Subject: Re: A question about The Relationship between Http Session and WebSocket Session On 23/01/18 10:35, tong__hui wrote: > Hello, > I'm a J2EE Programmer use Tomcat deploy my webapplication. > I have a

Re: Re: Response change between 8.5.x and 8.0.x (and earlier versions) W.R.T. Line separator CRLF vs. LF

2017-10-17 Thread Adam Rauch
On 10/16/2017 1:27 PM, Net Dawg wrote: Profuse apologies.  We are unable reproduce this.  However out tests were failing for another reason. 8.5.23 returns 400 error with header "HTTP/1.1 400" where as version 8.0.47 returns the same as "HTTP/1.1 400 Bad Request".  When the tests check for th

Re: Re: About Tomcat7.0.54 upgrade to Tomcat9.0.1

2017-10-12 Thread ????
On 10/12/17 12:47 PM, wrote: > After upgrading Tomcat to 9.0.1, the local webapp can't right > work. But in tomcat 7.0.54 is good. Did you copy your Tomcat 7.0.x configuration file into your Tomcat 9.0.x conf/ directory or did you start fresh? ---> no, i only copied the section. Catalin

Re: Re: Re: how to set Http11AprProtocol with embedded tomcat

2017-09-29 Thread Mark Thomas
g the pom to use >8.5.20 resolves the CNFE for LogFactory. > >> >> Thanks! >> >> Jennifer >> >> -Original Message- >> From: Coty Sutherland [mailto:csuth...@redhat.com] >> Sent: Friday, September 29, 2017 8:43 AM >> To: Tomcat Users List &g

Re: Re: Re: how to set Http11AprProtocol with embedded tomcat

2017-09-29 Thread Coty Sutherland
moved into tomcat-embed-core now, so updating the pom to use 8.5.20 resolves the CNFE for LogFactory. > > Thanks! > > Jennifer > > -Original Message- > From: Coty Sutherland [mailto:csuth...@redhat.com] > Sent: Friday, September 29, 2017 8:43 AM > To: Tomcat User

RE: Re: Re: how to set Http11AprProtocol with embedded tomcat

2017-09-29 Thread Wang, Jennifer
: Tomcat Users List Subject: [External] Re: Re: how to set Http11AprProtocol with embedded tomcat Here is a working quickstart (that I forgot to link yesterday) for APR in Spring Boot: https://github.com/csutherl/tomcat-embedded-quickstarts/tree/master/springboot-apr-example On Thu, Sep 28, 2017 at 3

RE: Re: Re: how to set Http11AprProtocol with embedded tomcat

2017-09-29 Thread Wang, Jennifer
: Tomcat Users List Subject: [External] Re: Re: how to set Http11AprProtocol with embedded tomcat Here is a working quickstart (that I forgot to link yesterday) for APR in Spring Boot: https://github.com/csutherl/tomcat-embedded-quickstarts/tree/master/springboot-apr-example On Thu, Sep 28, 2017 at 3

Re: Re: how to set Http11AprProtocol with embedded tomcat

2017-09-29 Thread Coty Sutherland
Here is a working quickstart (that I forgot to link yesterday) for APR in Spring Boot: https://github.com/csutherl/tomcat-embedded-quickstarts/tree/master/springboot-apr-example On Thu, Sep 28, 2017 at 3:34 PM, Coty Sutherland wrote: > On Thu, Sep 28, 2017 at 12:27 PM, Wang, Jennifer > wrote: >>

Re: Re: how to set Http11AprProtocol with embedded tomcat

2017-09-28 Thread Coty Sutherland
On Thu, Sep 28, 2017 at 12:27 PM, Wang, Jennifer wrote: > NONCONFIDENTIAL // EXTERNAL > Hi Coty, > > I download tcnative-1.dll from tomcat site. I am running on windows 7. I did > set " java.library.path" as below. > > > > > @SpringBootApplication > public class Application { > > public stati

RE: Re: how to set Http11AprProtocol with embedded tomcat

2017-09-28 Thread Wang, Jennifer
NONCONFIDENTIAL // EXTERNAL Hi Coty, I download tcnative-1.dll from tomcat site. I am running on windows 7. I did set " java.library.path" as below. @SpringBootApplication public class Application { public static void main(String[] args) { //try both of below System.setP

RE: Re: how to set Http11AprProtocol with embedded tomcat

2017-09-28 Thread Wang, Jennifer
NONCONFIDENTIAL // EXTERNAL Hi Coty, I download tcnative-1.dll from tomcat site. I am running on windows 7. I did set " java.library.path" as below. @SpringBootApplication public class Application { public static void main(String[] args) { //try both of below System.setP

Re: Re: a question about Realm config

2017-06-01 Thread ophusky
Thank you very much! I according to what you said it and solved the problem. I have modified CATALINA_HOME/conf/server.xml to : Everything is all right,thanks again! 2017-06-01 ophusky 发件人:Mark Thomas 发

RE: Re:[OT] get NPE from NamingContextListener in app moved from TomEE to Tomcat

2017-03-10 Thread Caldarale, Charles R
> From: Christopher Schultz [mailto:ch...@christopherschultz.net] > Subject: Re:[OT] get NPE from NamingContextListener in app moved from TomEE > to Tomcat > > name="jdbc/tst36" not id=... > Hmm. When 'name' is null we should have a better behavior than NPE. :( It gets your attention... - Ch

Re: RE : RE : Problem accessing manager on tomcat 8.5.11 on oracle linux 6.8

2017-02-14 Thread tomcat
On 13.02.2017 22:11, Stéphane Laurencelle wrote: De : Tiago Oliveira [tiago.olive...@behoh.com] Envoyé : 13 février 2017 14:15 À : Tomcat Users List Objet : Re: RE : Problem accessing manager on tomcat 8.5.11 on oracle linux 6.8 I had a similar problem

Re: RE : RE : Problem accessing manager on tomcat 8.5.11 on oracle linux 6.8

2017-02-13 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Stéphane, On 2/13/17 4:11 PM, Stéphane Laurencelle wrote: > and André, the directory are existing and in the tomcat logs i see > that he is able to do the deployment of the manager and > host-manager with no error. > > One things maybe you forgot

RE : RE : Problem accessing manager on tomcat 8.5.11 on oracle linux 6.8

2017-02-13 Thread Stéphane Laurencelle
De : Tiago Oliveira [tiago.olive...@behoh.com] Envoyé : 13 février 2017 14:15 À : Tomcat Users List Objet : Re: RE : Problem accessing manager on tomcat 8.5.11 on oracle linux 6.8 I had a similar problem same problem, solved by adding creating a at inside

Re: RE : Problem accessing manager on tomcat 8.5.11 on oracle linux 6.8

2017-02-13 Thread Tiago Oliveira
I had a similar problem same problem, solved by adding creating a at inside conf/Catalina/localhost/manager.xml contents: > > > > > > > > privileged="true" antiResourceLocking="false" > > > >> > > 2017-02-13 14:42 GMT-03:00 André Warnier (tomcat) : > Hi. > > Maybe first : on this

Re: RE : Problem accessing manager on tomcat 8.5.11 on oracle linux 6.8

2017-02-13 Thread tomcat
Hi. Maybe first : on this list, it is recommended to NOT "top-post", but respond below the previous intervention. See : http://tomcat.apache.org/lists.html#tomcat-users #6 (It just makes it easier to follow the conversation, and to see previous answers) Scroll down.. On 13.02.2017 17:57, S

RE: Re: FW: tomcat 8080 thread not reduced

2017-01-17 Thread smith
, 2017 8:09 PM To: users@tomcat.apache.org Subject: Re: Re: FW: tomcat 8080 thread not reduced We're having a similar issues with our numberous Tomcat instances. Our connector config look like this. Sometime, the number of active connection would jump very high (up to 190), due to

Re: Re: FW: tomcat 8080 thread not reduced

2017-01-16 Thread Philippe Busque
We're having a similar issues with our numberous Tomcat instances. Our connector config look like this. Sometime, the number of active connection would jump very high (up to 190), due to some external issues (database lock, etc) and threads would accumulate. Even though a connectionTimeo

Re: Re: Tomcat application folder created in /tmp?

2016-06-10 Thread Anthony Biacco
On Fri, Jun 10, 2016 at 11:04 AM, Scott Derrick wrote: > > I'm not sure why those flags were set to true? I removed them and the copy > is gone! thanks. > I can only imagine some sort of alcohol-induced admining? ;) > > I'm running on linux and understand that the locking has no effect anyway.

  1   2   3   4   5   6   7   8   >