No javax.servlet.error.query_string

2013-02-18 Thread Martin Grigorov
Hi, This is rather a question about Servlet specification. Is there a reason why there is no javax.servlet.error.query_string ? At http://tomcat.apache.org/tomcat-7.0-doc/servletapi/constant-values.html we see there is *.query_string for forward and include, but not for error. Is it because of

Caching of resources in META-INF/resources folder

2013-03-14 Thread Martin Grigorov
Hi, I'm experiencing troubles with updating CSS/JS resources in META-INF/resources during development. My application is a multi module Maven project. Some of the 'jar' modules (i.e. the ones that are packed in WEB-INF/lib/**) have META-INF/resources with some CSS/JS files inside. Deploying the

Re: Caching of resources in META-INF/resources folder

2013-03-14 Thread Martin Grigorov
On Thu, Mar 14, 2013 at 10:43 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, I'm experiencing troubles with updating CSS/JS resources in META-INF/resources during development. My application is a multi module Maven project. Some of the 'jar' modules (i.e. the ones that are packed in WEB

Re: Can Tomcat 8 snapshots be published to Maven?

2013-03-14 Thread Martin Grigorov
but a re-read of the docs says not. Mark - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org -- Martin Grigorov jWeekend Training, Consulting

Re: Velocity Logging

2013-03-27 Thread Martin Grigorov
/ Cruises Inc(tm) http://www.cruisesinc.com/ 1201 W. Cypress Creek Road, Suite 100 Fort Lauderdale, FL 33309-1955 954-958-3654 (direct) | 954-958-3665 (fax) bpe...@wth.com mailto:ssza...@wth.com -- Martin Grigorov jWeekend Training, Consulting, Development http://jWeekend.com http

Re: websockets questions

2013-07-04 Thread Martin Grigorov
Hi Andre, On Thu, Jul 4, 2013 at 12:17 PM, André Warnier a...@ice-sa.com wrote: I'll just add a little bit of info (and guesses) below. Jess Holle wrote: Unfortunately I don't have any information -- just related questions. 1. For someone currently using Apache httpd+mod_jk to load

Re: websockets questions

2013-07-04 Thread Martin Grigorov
On Thu, Jul 4, 2013 at 5:52 PM, André Warnier a...@ice-sa.com wrote: Mark Thomas wrote: On 04/07/2013 10:17, André Warnier wrote: To me that means that at some point, there must be on the server side a process or thread which is dedicated to this websocket client for as long as it takes,

Re: 8.0.0 Problems With javax.websocket.*

2013-08-05 Thread Martin Grigorov
Hi, On Tue, Aug 6, 2013 at 1:03 AM, Igor Urisman igor.uris...@gmail.com wrote: Dear all, I am running into snags with the new JEE7 compliant implementation of Websockets in 8.0.0-RC1. What's the right way to pass on the test cases? -Igor. Can you give more details what problems you have

Re: Connection not Closed at TCP level

2013-08-07 Thread Martin Grigorov
Hi, On Wed, Aug 7, 2013 at 12:12 PM, hidayath hidayath.ba...@saventech.comwrote: Hi, We have a websocket application which keeps writing data to the clients. We found that when tabs (not whole browser) of Firefox (ver. 22) is closed, the websocket connection is not closed. Anyway,

Re: apache tomcat 8.0.0-rc1; /manager connection ciphers; NPE

2013-08-07 Thread Martin Grigorov
On Wed, Aug 7, 2013 at 3:48 PM, jieryn jie...@gmail.com wrote: Greetings, On Wed, Aug 7, 2013 at 9:41 AM, Caldarale, Charles R chuck.caldar...@unisys.com wrote: Sorry, that's just wrong. There is no requirement for an individual webapp to have a WEB-INF/web.xml, but if you want to run

Hanging write to the client when the response is too big

2014-03-17 Thread Martin Grigorov
able to do it with Tomcat 7.0.47 on Windows. Any help/hints are welcome! Martin Grigorov Wicket Training and Consulting

Re: Hanging write to the client when the response is too big

2014-03-17 Thread Martin Grigorov
On Mon, Mar 17, 2014 at 11:29 AM, Mark Thomas ma...@apache.org wrote: On 17/03/2014 09:06, Martin Grigorov wrote: Hi, A user of Apache Wicket has reported a problem where Tomcat hangs when writing the response to the browser - https://issues.apache.org/jira/browse/WICKET-5530

Re: Tomcat opening thousands of files

2014-06-17 Thread Martin Grigorov
Hi Prashant, On Tue, Jun 17, 2014 at 2:40 PM, Prashant Deva prashant.d...@gmail.com wrote: ok running on tomcat 8.0.8 with spring 4.0.5 and reactor 1.1.2, my log within minutes gets filled with these exceptions. Seems like it could be a tomcat issue after all: This error could be also read

Re: Servlet 3.1 asynchronous processing API

2014-07-09 Thread Martin Grigorov
Hi, On Wed, Jul 9, 2014 at 1:18 AM, Marko Asplund marko.aspl...@gmail.com wrote: Hi, I'm just starting out with using the Servlet 3.1 asynchronous processing API. I use the API for generating response content, that can potentially be a slow process, in another thread. The code appears to

Re: Servlet 3.1 asynchronous processing API

2014-07-09 Thread Martin Grigorov
On Wed, Jul 9, 2014 at 12:48 PM, Marko Asplund marko.aspl...@gmail.com wrote: On Wed, 09 Jul 2014 07:23 Martin Grigorov wrote: ... try { response = (HttpServletResponse)asyncContext; Maybe it is implementation detail that this cast works but usually you have

Re: How to access Sessions outside of class

2014-10-28 Thread Martin Grigorov
Hi, In this case you will have to share the data between the processes. A simple and easy solution would be to use http://hazelcast.com/, for example. On Tue, Oct 28, 2014 at 2:06 PM, Jason Ricles jgr...@alum.lehigh.edu wrote: No, it is external as in it is running in a daemon on a linux

Re: How to access Sessions outside of class

2014-10-28 Thread Martin Grigorov
session in the second process ? On Tue, Oct 28, 2014 at 8:24 AM, Martin Grigorov martin.grigo...@gmail.com wrote: Hi, In this case you will have to share the data between the processes. A simple and easy solution would be to use http://hazelcast.com/, for example

Re: How to access Sessions outside of class

2014-10-28 Thread Martin Grigorov
it is yet another Session. And foo can communicate with the page's client. On Tue, Oct 28, 2014 at 8:59 AM, Martin Grigorov martin.grigo...@gmail.com wrote: On Tue, Oct 28, 2014 at 2:51 PM, Jose María Zaragoza demablo...@gmail.com wrote: 2014-10-28 13:44 GMT+01:00 Jason Ricles

Re: How to access Sessions outside of class

2014-10-28 Thread Martin Grigorov
, Oct 28, 2014 at 9:36 AM, Martin Grigorov mgrigo...@apache.org wrote: On Tue, Oct 28, 2014 at 3:06 PM, Jason Ricles jgr...@alum.lehigh.edu wrote: Ok so here is the problem I have been spinning my wheels on for day let me just lay it out. I have a daemon written in java running

Re: How to access Sessions outside of class

2014-10-28 Thread Martin Grigorov
, Martin Grigorov mgrigo...@apache.org wrote: On Tue, Oct 28, 2014 at 3:38 PM, Jason Ricles jgr...@alum.lehigh.edu wrote: Does it matter that foo will not be running on a server? It will be running as a standalone on the machine, unaware of tomcat basically. http://enable

Re: How to access Sessions outside of class

2014-10-29 Thread Martin Grigorov
everything is pretty much a named value map, so you can add/subtract fields at will without having to rewrite the communication protocol or do a lot of extra work in either the client or the server. -chris On Tue, Oct 28, 2014 at 8:59 AM, Martin Grigorov martin.grigo

Re: How do you send a mail to users-h...@tomcat.apache.org ?

2015-01-10 Thread Martin Grigorov
This is how the mailing list software works. users-help can be used by the administrators/moderators to manage the list. You should use users@ to discuss Tomcat related issues. On Jan 10, 2015 1:45 PM, sreya...@gmail.com wrote: So why is there users-h...@tomcat.apache.org ? Is it redundant ?

Re: How do you send a mail to users-h...@tomcat.apache.org ?

2015-01-10 Thread Martin Grigorov
mail address ? Please let me know asap. Yes, that's the way - just use Reply. You are already doing it and it works, right. Regards Sreyan Chakravarty From: Martin Grigorov Sent: ‎Saturday‎, ‎January‎ ‎10‎, ‎2015 ‎6‎:‎46‎ ‎PM To: Tomcat Users List This is how the mailing

Re: undefined method

2015-02-20 Thread Martin Grigorov
On Sat, Feb 21, 2015 at 12:25 AM, Mark Thomas ma...@apache.org wrote: On 20/02/2015 21:10, Sean Dawson wrote: We have a GWT app deployed to tomcat (7_59) and fairly often when we send a bunch of request quickly we're seeing undefined methods in the logs - and the calls fail, causing

Re: [ANN] New committer: Ognjen Blagojevic

2015-10-25 Thread Martin Grigorov
Congratulations, Ognjen!

Re: [ANN] New committer: Emmanuel Bourg

2017-01-21 Thread Martin Grigorov
On Jan 20, 2017 7:12 PM, "Mark Thomas" wrote: On behalf of the Tomcat committers I am pleased to announce that Emmanuel Bourg (ebourg) has been voted in as a new Tomcat committer. Please join me in welcoming him. Welcome, Emmanuel! And thank you for your work on Debian too!

Re: [ANN] New committer: Michael Osipov

2017-05-08 Thread Martin Grigorov
Welcome, Michael! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, May 8, 2017 at 10:08 AM, Mark Thomas <ma...@apache.org> wrote: > On behalf of the Tomcat committers I am pleased to announce that > Michael Osipov (michaelo) has been voted in as

Re: [OT] At wits end: Difficulties with IIS ISAPI connector and Tomcat

2020-02-26 Thread Martin Grigorov
Hi, On Wed, Feb 26, 2020 at 4:25 PM wrote: > -Original Message- > > From: Mark Thomas > > Sent: Wednesday, February 26, 2020 5:19 AM > > To: users@tomcat.apache.org > > Subject: Re: [OT] At wits end: Difficulties with IIS ISAPI connector > andTomcat > > > On 26/02/2020 09:00, Mark

Re: cookie configurations for Tomcat 7

2020-02-28 Thread Martin Grigorov
On Fri, Feb 28, 2020 at 7:31 PM Lazar Kirchev wrote: > Chris, > > I just thought that I have some concerns passing a map with the headers to > generateCookie() method. This means that for each call the caller will have > to read all headers from the coyote.Response and put them in a map, even if

Re: Fix for the Ghostcat vulnerability

2020-03-05 Thread Martin Grigorov
Hi Dave, On Thu, Mar 5, 2020 at 1:22 PM Dave Ford wrote: > On Wed, 2020-03-04 at 13:19 -0500, Christopher Schultz wrote: > > > > > We're in the same position as you. External web servers talking > > > to Tomcat servers on other boxes via AJP. > > > > Are those connections properly secured? > >

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

2020-03-04 Thread Martin Grigorov
Hi Johan, On Mon, Mar 2, 2020 at 7:32 PM Johan Compagner wrote: > And when you are at it, also mention there in big letters that they really > should read the release notes... This tomcat will not work with all the > major frameworks people use for quite some time... > If you still use Apache

Re: bind Tomcat to IPv4 and IPv6 loopback, Tomcat 9.0.31

2020-03-05 Thread Martin Grigorov
Hi, Check this thread: https://lists.apache.org/thread.html/r1f83f0c731a8737fdf4dad13ae402acd2fdc1ab1a86605af5b496a5f%40%3Cusers.tomcat.apache.org%3E On Thu, Mar 5, 2020 at 3:53 PM Piyush Kumar Nayak wrote: > > Is there a way to get Tomcat's AJP connector to bind to both IPv4 and IPv6 >

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

2020-03-04 Thread Martin Grigorov
cket 9.0.0 (with Javax APIs) and then we can start thinking about Jakarta APIs. Martin > > On Wed, 4 Mar 2020 at 09:14, Martin Grigorov wrote: > > > Hi Johan, > > > > On Mon, Mar 2, 2020 at 7:32 PM Johan Compagner > > wrote: > > > > > And when you are

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

2020-03-04 Thread Martin Grigorov
Hi, On Mon, Mar 2, 2020 at 7:23 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > All, > > If you go to tomcat.apache.org right now, you'll see documentation and > downloads for Tomcat 10. In the news section, it's shown as

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

2020-03-04 Thread Martin Grigorov
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 10.0.x is

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

Re: g! shell 255 character limit

2020-03-05 Thread Martin Grigorov
Hi, On Wed, Mar 4, 2020 at 5:58 PM Iowa Research wrote: > I am encountering a 255 character limit in the g! shell when running Tomcat > 9.0.31. I do not see the issue in Tomcat 7. I have searched for solutions > to this issue but have been unsuccessful. Any help is greatly appreciated. > Could

Re: tomcat 7.0.100 AJP connector with mod_jk on another host

2020-03-05 Thread Martin Grigorov
Hi Thomas, On Thu, Mar 5, 2020 at 3:53 AM Thomas Glanzmann wrote: > Hello, > the problem was that I edited the wrong server.xml. The one that was not > used. So now that I figured that out, settings these two settings help. > > > > >

Re: tomcat 7.0.100 AJP connector with mod_jk on another host

2020-03-05 Thread Martin Grigorov
On Thu, Mar 5, 2020 at 10:05 AM Thomas Glanzmann wrote: > Hello Martin, > > > > This should be: secretRequired="false". > > > This attribute has been renamed recently. > > I just looked at my notes, and I tried that already yesterday night. > Still facing the same problem with 403. Might it be

Re: Tomcat 9.0.31 Invalid character found in the request target

2020-03-05 Thread Martin Grigorov
Hi, On Wed, Mar 4, 2020 at 11:53 PM Bhavesh Mistry wrote: > Hi Tomcat Team, > > When there is invalid characters, it return error message with > stacktrace as shown below. 1) is there any way to costmize error > message ? if yes, please let me know. > > 2) Is there any way to spress

Re: Problem with tomcat connector in IIS using tomcat 9.0.31

2020-03-04 Thread Martin Grigorov
Hi Matthias, Please read this discussion: https://lists.apache.org/thread.html/r9f3a2ea48f2e76f7c092ea2dc4caec7d15c86f7773281ef6c8cdb817%40%3Cusers.tomcat.apache.org%3E The problem and a workaround are explained here:

Re: Problem with tomcat connector in IIS using tomcat 9.0.31

2020-03-04 Thread Martin Grigorov
On Wed, Mar 4, 2020 at 10:30 AM Stephen Hames wrote: > Hi Matthias, > > I suspect your issue is: address="::"You probably want > address="0.0.0.0" or the ipv4 IP address that your tomcat instance is > listening on. :: allows any on IPv6, but for IPv4 I suspect that tomcat > would still be

Re: Tomcat 8.5.51 >> Use AJP Connector >> 403

2020-02-19 Thread Martin Grigorov
Hi, On Wed, Feb 19, 2020 at 9:34 AM Friderike Hofmeister < friderike.hofmeis...@mbsupport.de> wrote: > Chris, > > strange, as I thought I specified secretRequired="false" and so don't need > any secret, but anyway: > that's it -- Thank you! > > Now without secret="" and without mod_jk everything

Re: cloud cluster

2020-02-19 Thread Martin Grigorov
Hi Jonathan, On Wed, Feb 19, 2020 at 12:55 PM Jonathan Yom-Tov < jonathan.yom...@sysaid.com> wrote: > hi Chris, > > Do you have a link? I wasn't able to find one on Google, unless you mean > https://bitnami.com/stack/tomcat/helm. > I think Chris meant the **MembershipProvider classes at

Re: bind Tomcat to IPv4 and IPv6 loopback, Tomcat 9.0.31

2020-03-10 Thread Martin Grigorov
Hi, On Mon, Mar 9, 2020 at 9:34 PM Piyush Kumar Nayak wrote: > There appears to be a change in the behavior of AJP connector in Tomcat, > with respect to the protocol stack of the loopback address it binds to. > With older versions it binds to both IPv6 and IPv4 interface, but with > 9.0.31 it

Re: unsubscripe

2020-03-10 Thread Martin Grigorov
Hi Alexandre, You should sent an email to users-unsubscr...@tomcat.apache.org instead. See https://tomcat.apache.org/lists.html#tomcat-users On Mon, Mar 9, 2020 at 8:52 PM Alexandre Adao wrote: > users@tomcat.apache.org >

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,

Re: Apache Tomcat AJP File Inclusion Vulnerability (unauthenticated check)

2020-03-09 Thread Martin Grigorov
Hi, On Sat, Mar 7, 2020 at 7:02 AM Nitin Kadam wrote: > Hello Team, > > We received vulnerability alert from Security team for "Apache Tomcat AJP > File Inclusion Vulnerability (unauthenticated check)" and for > remediation they suggested to updated tomcat with latest version. > > Can you

Re: bind Tomcat to IPv4 and IPv6 loopback, Tomcat 9.0.31

2020-03-10 Thread Martin Grigorov
On Tue, Mar 10, 2020 at 3:56 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Martin, > > On 3/10/20 04:43, Martin Grigorov wrote: > > We can define custom address like "loopback"

Re: Is ARM64 architecture officially supported ?

2020-04-19 Thread Martin Grigorov
Hi Emilio, On Fri, Apr 17, 2020 at 2:14 PM Emilio Fernandes < emilio.fernande...@gmail.com> wrote: > Hola Tomcat community! > > We consider using AWS Graviton [1] based instances which use ARM64 > processors for our backend services. > I've googled around and found [2] saying that Tomcat is

Re: Is ARM64 architecture officially supported ?

2020-04-20 Thread Martin Grigorov
Hi Michael, On Sun, Apr 19, 2020 at 9:08 PM Michael Osipov wrote: > Am 2020-04-19 um 19:51 schrieb Martin Grigorov: > > Hi Emilio, > > > > On Fri, Apr 17, 2020 at 2:14 PM Emilio Fernandes < > > emilio.fernande...@gmail.com> wrote: > > > >> Hola T

Re: javax.servlet.ServletContainerInitializer defined in jar not loading on Tomcat 8.5.51 and above

2020-04-07 Thread Martin Grigorov
Hi, On Tue, Apr 7, 2020 at 9:01 AM Jackson Ong <83cl...@gmail.com> wrote: > We have an webapp running fine on Tomcat 8.5.50 and below and we used a > custom WebappClassLoader to load jars (common path for jars), but it failed > to load on Tomcat 8.5.51 and above. Upon checking, we noticed that >

Re: Configure Tomcat for specific Urls on specific Port

2020-04-06 Thread Martin Grigorov
Hi, On Mon, Apr 6, 2020 at 9:32 AM Vijay Roy wrote: > Hi Team , > > We are using tomcat in one of our projects and we have tomcat ports 8080 > and 8081 opened by the following configurations. > >server="" >connectionTimeout="2" >

Re: Tomcat 9.31 PUT/POST Request receiving Partial Data

2020-03-31 Thread Martin Grigorov
Hi, On Tue, Mar 31, 2020 at 8:17 PM wrote: > -Original Message- > > From: Bhavesh Mistry > > Sent: Wednesday, February 26, 2020 7:51 PM > > To: Tomcat Users List > > Subject: Re: Tomcat 9.31 PUT/POST Request receiving Partial Data > > > The response get truncated after 16321 bytes.

Re: Support with error in launcher.log

2020-03-30 Thread Martin Grigorov
Hi, On Mon, Mar 30, 2020 at 1:02 PM Luigi Tagliafierro wrote: > Hi everybody, > > we are experiencing an error : The bitbucket log > (/var/atlassian/bitbucket_home/log/launcher.log) constantly repeats this > error: > > "java.lang.IllegalArgumentException: An invalid domain [.code.doxee.com] >

Re: Issue with AJP listener

2020-04-28 Thread Martin Grigorov
on "localhost" (IPv4) only. You can use 0.0.0.0 to bind on all again but this is highly NOT recommended! https://tomcat.apache.org/security-7.html#Fixed_in_Apache_Tomcat_7.0.100 > Thank you, > Kishore > > > On Tue, Apr 28, 2020 at 4:12 PM Martin Grigorov > wrote:

Re: Getting 404 error while accessing URL after deployment

2020-05-04 Thread Martin Grigorov
Hi, On Mon, May 4, 2020 at 5:02 PM Megha Agrawal wrote: > Hi > > I am trying to deploy my project on the tomcat server and access the URL > using browser. Project is deploying successfully on the server but unable > to access URL related to that project. Also, logs are not generating for > the

Re: Apache tomcat 9.0.6 Compatibility with Adopt openJDK

2020-04-27 Thread Martin Grigorov
Hi, On Tue, Apr 28, 2020 at 5:12 AM Reddy, Tippana Krishnanandan < tire...@deloitte.com> wrote: > Hi everyone, > > We are using Tomcat 9.0.6 . I want to know if we have any document which > shows the compatibility of Tomcat with Adopt openJDK. > Any JDK 1.8+ should be OK. But as any other

Re: Losing session between calls from mobile phone

2020-04-27 Thread Martin Grigorov
Hi, On Tue, Apr 28, 2020 at 2:23 AM AJ Chen wrote: > My web application using tomcat 6 can track user session (cookie by > default) for mobile and PC users in dev environment. But when deployed on > cloud server, it fails to track session for some mobile users. meaning, > servlet always creates

Re: Losing session between calls from mobile phone

2020-04-28 Thread Martin Grigorov
On Mon, Apr 27, 2020 at 10:54 PM Martin Grigorov > wrote: > > > Hi, > > > > On Tue, Apr 28, 2020 at 2:23 AM AJ Chen wrote: > > > > > My web application using tomcat 6 can track user session (cookie by > > > default) for mobile and PC users in dev e

Re: Issue with AJP listener

2020-04-28 Thread Martin Grigorov
Hi, On Tue, Apr 28, 2020 at 1:06 PM Satya Kishore Thumu wrote: > Hi, > We are using apache before Tomcat as front end and using modjk for > connection between apache and Tomcat. After upgrading tomcat(to 7.0.100 as > we have other dependencies we can't use latest as of now), i'm unable to > use

Re: Issue with AJP listener

2020-04-30 Thread Martin Grigorov
Hi, On Thu, Apr 30, 2020 at 11:15 AM Mark Thomas wrote: > On 29/04/2020 18:11, Christopher Schultz wrote: > > Mark, > > > > On 4/28/20 13:33, Mark Thomas wrote: > >> On 28/04/2020 16:30, Satya Kishore Thumu wrote: > >>> Hi Chris, Post the Ghostcat changes tomcat now listens only on > >>> ipv4

Re: suspected memory leak in io.netty.buffer.PoolChunk

2020-04-30 Thread Martin Grigorov
Hi, On Thu, Apr 30, 2020 at 10:04 AM Ragavendhiran Bhiman (rabhiman) wrote: > Hi All, > > When I analysed the heap dump the primary suspect shows that 54.21% > occupied by the from io.netty.buffer.PoolChunk memory leak. > io.netty.* is from Netty project (https://netty.io/index.html) It seems

Re: RST on TCP level sent by Tomcat

2020-05-18 Thread Martin Grigorov
Hi Arshiya, On Mon, May 18, 2020 at 2:15 PM Arshiya Shariff wrote: > Hi Mark, > Thank you for the quick response. > > Please provide us a little more clarity on the 3rd query : > > 3. We see that RST is sent by tomcat on receiving http2 request, when > does this happen ? > >>> When things go

Re: Query Related to org.apache.catalina.security.SecurityListener

2020-05-19 Thread Martin Grigorov
Hi, On Mon, May 18, 2020 at 7:38 PM Kushagra Bindal wrote: > Hi, > > We are planning to upgrade from apache tomcat from 8.5.24 to 8.5.53 > version. During this process I found that in catalina.sh file below line > which was commented in 8.5.24 version > > # Uncomment the following line to make

Re: Tomcat 7.0.100 upgrade issues

2020-03-17 Thread Martin Grigorov
Hi, On Tue, Mar 17, 2020 at 6:34 PM RK Ashburn wrote: > Hi Tomcat 7 team, > We have been using tomcat 7.0.99 and now we upgraded to 7.0.100 and our web > applications stopped working. > > Here are changes that we noted from release notes and took action: > > 1. Updated AJP connector setting and

Re: Tomcat and IPv6

2020-03-17 Thread Martin Grigorov
Hi, On Tue, Mar 17, 2020 at 9:22 PM wrote: > We have a team having issues with Tomcat, AJP, and switching to IPv6. They > are currently running version 9.0.31. Below are the errors being received: > > [Tue Mar 17 10:50:38 2020] [1412:139846332929792] [error] > ajp_service::jk_ajp_common.c

Re: Security audit raises questions (Tomcat 7.0.93)

2020-03-17 Thread Martin Grigorov
On Wed, Mar 18, 2020 at 12:31 AM James H. H. Lampert < jam...@touchtonecorp.com> wrote: > > On 3/17/20 3:18 PM, Martynas Jusevičius wrote: > > why should DELETE or OPTIONS not be enabled? They are standard HTTP > methods. > > True, but (quoting the audit report) > > . . . [DELETE] may allow a

Re: Version Question

2020-03-20 Thread Martin Grigorov
Hi, On Sat, Mar 21, 2020, 00:37 wrote: > Good afternoon Mark and group. > > There is a question as to WHAT are the correct versions released. Are > these 7.0.103, 8.5.53, and 9.0.33 as shown on tomcat.apache.org, OR is it > 7.0.104, 8.5.54 and 9.0.34 as shown on ci.apache.org? > The first. CI

Re: Tomcat Wiki Source Code Download

2020-03-24 Thread Martin Grigorov
Hi, On Tue, Mar 24, 2020 at 9:12 AM Brian Burch wrote: > I'm quite baffled! > > http://tomcat.apache.org/source.html gives me the url:- > > http://svn.apache.org/repos/asf/tomcat/site > > I made a clean "svn checkout" and referred to the README.txt about the > source files being xml formatted.

Re: invoke jmxproxy servlet using argument with a , is not a possible

2020-03-24 Thread Martin Grigorov
Hi, On Mon, Mar 23, 2020 at 7:08 PM Arnaud Yahoo wrote: > Hello > > I am trying to invoke a mbean through jmxproxy servlet. Arguments are > separated with , so when one argument itself is containing a coma, it > breaks the invocation. > > It seems there is no way to escape ,. > > For example

Re: Query Related to org.apache.catalina.security.SecurityListener

2020-05-19 Thread Martin Grigorov
hub.com/apache/tomcat/blob/master/java/org/apache/catalina/security/SecurityListener.java It is used only at start time. If Tomcat starts fine then all is good! If it throws an Error then you will need to fix the issue. > > > Regards > Kushagra > > On Tue, May 19, 2020, 11:5

Re: Tomcat 8.5 appends null characters

2020-05-19 Thread Martin Grigorov
Hi, On Tue, May 19, 2020 at 3:32 PM Tuukka Ilomäki wrote: > Dear collective wisdom, > as the EOL of Tomcat 7 is looming, we are migrating our legacy app from > Tomcat 7.0 to Tomcat 8.5. We deploy exactly the same war in both versions. > For some reason Tomcat 8.5 adds null characters to the end

Re: Release date of latest Tomcat version - 9.0.38

2020-09-02 Thread Martin Grigorov
Hi, On Wed, Sep 2, 2020, 17:46 Arshiya Shariff wrote: > Hi , > Thank you for your response . > Is there a way I can track when the version is released for Voting (or) > will I get notified in the Users list ? > You need to subscribe to the dev@ mailing list. > Thanks and Regards > Arshiya

Re: HTTP2: Connections abruptly closed by sending GOAWAY

2020-09-09 Thread Martin Grigorov
Hi, On Wed, Sep 9, 2020 at 3:31 PM Arshiya Shariff wrote: > Thank you for the response Mark . > > > > Hi All, > > > > Can you please help us understand this behavior . > > The following is the sequence of events that is happening for a few > streams . > > Initially when the stream is opened ,

Re: How to Set Content Security Policy headers in Tomcat 8.5.x

2020-09-10 Thread Martin Grigorov
Hi, On Wed, Sep 9, 2020 at 8:54 PM Nitin Kadam wrote: > Hi All, > > Need to set the *Content security policy* header for Tomcat Web server > (8.5..x) which hosted on Windows server 2012, As per the internal security > team same is not a complaint > can you please help me setting CSP filters for

Re: Tomcat Processing Timer Question

2020-09-11 Thread Martin Grigorov
Hi, On Sat, Sep 12, 2020, 02:57 Eric Robinson wrote: > I'm not sure what you mean by measuring at the load balancer level. We're > using the jasper logs and those only exist on the tomcat server itself. I > must be misunderstanding your meaning. > He meant to use the LB's logs for the same.

Re: Tomcat v9 - Insecure transport vulnerability reported by Qualys

2020-09-15 Thread Martin Grigorov
hi, On Tue, Sep 15, 2020 at 8:20 AM Pratik Shrestha wrote: > Hi Guys, > > Just wanted to know if anyone found an idea on fixing it or a workaround. > Did you find what is the expected behavior by Qualis ? > > Thanks > > Pratik. > > On Fri, Aug 28, 2020 at 10:46 AM Pratik Shrestha > wrote: >

Low throughput with HTTP2

2020-09-15 Thread Martin Grigorov
Hi, I am running some load tests on Tomcat and I've noticed that when HTTP2 is enabled the throughput drops considerably. Here are the steps to reproduce: 1) Enable HTTP2, e.g. by commenting out this connector:

Re: Low throughput with HTTP2

2020-09-15 Thread Martin Grigorov
On Tue, Sep 15, 2020 at 2:37 PM Martin Grigorov wrote: > Hi, > > I am running some load tests on Tomcat and I've noticed that when HTTP2 is > enabled the throughput drops considerably. > > Here are the steps to reproduce: > > 1) Enable HTTP2, e.g. by commenting out t

Re: Low throughput with HTTP2

2020-09-15 Thread Martin Grigorov
Hi Mark, On Tue, Sep 15, 2020 at 3:34 PM Mark Thomas wrote: > On 15/09/2020 12:46, Martin Grigorov wrote: > > On Tue, Sep 15, 2020 at 2:37 PM Martin Grigorov > > wrote: > > > >> Hi, > >> > >> I am running some load tests on Tomcat an

Re: Low throughput with HTTP2

2020-09-15 Thread Martin Grigorov
Hi Chris, On Tue, Sep 15, 2020 at 5:09 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Martin, > > On 9/15/20 07:37, Martin Grigorov wrote: > > I am running some load tests on Tomcat and I'

Re: Low throughput with HTTP2

2020-09-16 Thread Martin Grigorov
Hi Remy, On Tue, Sep 15, 2020 at 6:16 PM Rémy Maucherat wrote: > On Tue, Sep 15, 2020 at 5:08 PM Martin Grigorov > wrote: > > > Hi Mark, > > > > On Tue, Sep 15, 2020 at 3:34 PM Mark Thomas wrote: > > > > > On 15/09/2020 12:46, Martin Grigorov wrot

Re: VersionLoggerListener

2020-10-07 Thread Martin Grigorov
d recommend you to download a new .zip/.tgz, or re-install Tomcat. Martin > Regards > > Raivo > > On 07.10.20 14:01, Martin Grigorov wrote: > > Hi, > > > > On Wed, Oct 7, 2020 at 1:51 PM Raivo Rebane wrote: > > > >> Hello > >> > &g

Re: VersionLoggerListener

2020-10-07 Thread Martin Grigorov
Hi, On Wed, Oct 7, 2020 at 1:51 PM Raivo Rebane wrote: > Hello > > My tomcat9 don't starts and gives error: > > java.lang.ClassNotFoundException: > org.apache.catalina.startup.VersionLoggerListener > > How to resolve this problem ? > Download Tomcat again. Your installation must be corrupted

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

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

2020-10-08 Thread Martin Grigorov
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_...

Re: HTTP2: memory filled up fast on increasing the connections to 1000/2000 (Embedded tomcat 9.0.38)

2020-10-09 Thread Martin Grigorov
Hi Arshiya, On Fri, Oct 9, 2020 at 2:33 PM Arshiya Shariff wrote: > Hi, > > Mark , with the test runs that I performed over clean 9.0.x branch I was > not able to reproduce this. But with 9.0.38 and the jars built from 9.0.x > with hash: c8ec2d4cde3a31b0e9df9a30e7915d77ba725545 , with 700 or

A lot of EOFs when using NIO2 with HTTP2

2020-10-06 Thread Martin Grigorov
Hi, I face an issue with the NIO2 protocol. When I increase the request rate to more than 500 requests per second it starts failing with: 06-Oct-2020 09:18:19.964 FINE [https-jsse-nio2-8080-exec-6] org.apache.coyote.http2.Http2UpgradeHandler.init Connection [1], State [NEW] 06-Oct-2020

Re: A lot of EOFs when using NIO2 with HTTP2

2020-10-06 Thread Martin Grigorov
On Tue, Oct 6, 2020 at 12:13 PM Rémy Maucherat wrote: > On Tue, Oct 6, 2020 at 8:31 AM Martin Grigorov > wrote: > > > Hi, > > > > I face an issue with the NIO2 protocol. > > When I increase the request rate to more than 500 requests per second it > > star

Re: A lot of EOFs when using NIO2 with HTTP2

2020-10-06 Thread Martin Grigorov
On Tue, Oct 6, 2020 at 12:06 PM Mark Thomas wrote: > On 06/10/2020 07:30, Martin Grigorov wrote: > > Hi, > > > > I face an issue with the NIO2 protocol. > > When I increase the request rate to more than 500 requests per second it > > starts failing

Re: A lot of EOFs when using NIO2 with HTTP2

2020-10-06 Thread Martin Grigorov
On Tue, Oct 6, 2020 at 9:30 AM Martin Grigorov wrote: > Hi, > > I face an issue with the NIO2 protocol. > When I increase the request rate to more than 500 requests per second it > starts failing with: > > 06-Oct-2020 09:18:19.964 FINE [https-jsse-nio2-8080-exec-6] >

Re: Unclear sentence in FailedRequestFilter's javadoc

2020-10-06 Thread Martin Grigorov
Hi Konstantin, On Mon, Oct 5, 2020 at 2:53 PM Konstantin Kolinko wrote: > пн, 5 окт. 2020 г. в 14:16, Martin Grigorov : > > > > Hi, > > > > What is the meaning of "addresses" at > > > https://github.com/apache/tomcat/blob/a0fb5f4b42c593fa566878dddfa

Re: A lot of EOFs when using NIO2 with HTTP2

2020-10-06 Thread Martin Grigorov
On Tue, Oct 6, 2020 at 12:15 PM Martin Grigorov wrote: > > > On Tue, Oct 6, 2020 at 12:06 PM Mark Thomas wrote: > >> On 06/10/2020 07:30, Martin Grigorov wrote: >> > Hi, >> > >> > I face an issue with the NIO2 protocol. >> > When I increase

Re: A lot of EOFs when using NIO2 with HTTP2

2020-10-06 Thread Martin Grigorov
On Tue, Oct 6, 2020 at 12:47 PM Mark Thomas wrote: > On 06/10/2020 10:35, Martin Grigorov wrote: > > On Tue, Oct 6, 2020 at 12:15 PM Martin Grigorov > > wrote: > > > >> > >> > >> On Tue, Oct 6, 2020 at 12:06 PM Mark Thomas wrote: > >> &g

Re: Deploying war, Negative Date exception

2020-10-12 Thread Martin Grigorov
Hi Peter, On Mon, Oct 12, 2020 at 2:20 PM Peter Henderson wrote: > Hello fellow tomcat users. > > My environment. > Tomcat: 9.0.39 > Java: openjdk 11.0.8 2020-07-14 > OS: Ubuntu 18.04.5 LTS > > Source code [0] > > When deploying this war [1], by copying it into the webapps directory, > I get

Re: GraalVM native image for embedded Tomcat

2020-10-16 Thread Martin Grigorov
On Fri, Oct 16, 2020 at 3:43 PM Martin Grigorov wrote: > Hi, > > I am trying to create a GraalVM native image for an application that uses > tomcat-embed-core but it fails with the following error: > > [INFO] --- native-image-maven-plugin:20.2.0:native-image (default) @

GraalVM native image for embedded Tomcat

2020-10-16 Thread Martin Grigorov
Hi, I am trying to create a GraalVM native image for an application that uses tomcat-embed-core but it fails with the following error: [INFO] --- native-image-maven-plugin:20.2.0:native-image (default) @ tomcat-embedded --- [INFO] ImageClasspath Entry:

Unclear sentence in FailedRequestFilter's javadoc

2020-10-05 Thread Martin Grigorov
Hi, What is the meaning of "addresses" at https://github.com/apache/tomcat/blob/a0fb5f4b42c593fa566878dddfa213e5f3c9c499/java/org/apache/catalina/filters/FailedRequestFilter.java#L40 ? "Parameter parsing does check content type of the request, so there should not be problems with *addresses*

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

2020-10-08 Thread Martin Grigorov
Hi, On Wed, Oct 7, 2020 at 9:46 PM Raivo Rebane wrote: > Hello > > If I start Tomcat9 I got following: > > [main] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR > was scanned for TLDs yet contained no TLDs. Enable debug logging for > this logger for a complete list of JARs that

  1   2   >