Re: Zero downtime deployments

2015-12-03 Thread Neill Lima
Hello Jason, This approach of using httpd in front of 2+ Tomcats via AJP works well in my company. There is a bit of config necessary at httpd level so httpd is aware of all the Tomcats and also Tomcat config needs to be set to listen to AJP port instead of default port but it is not rocket

Re: ClientAbortException: java.io.IOException: Failed to send AJP message

2015-10-26 Thread Neill Lima
How long does it take? It could be some sort of timeout, maybe. On Mon, Oct 26, 2015 at 3:28 PM, Yogesh Patel wrote: > In our case user is downloading the document and got message like "document > is deleted or moved" and tomcat has log like "ClientAbortException: >

Re: How to upgrade Tomcat

2015-06-08 Thread Neill Lima
I love this page: http://tomcat.apache.org/migration-7.html#Upgrading_7.0.x Result: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/conf/catalina.policy?diff_format=hr1=1445362r2=1678231 On Mon, Jun 8, 2015 at 3:00 PM, David kerber dcker...@verizon.net wrote: On 6/8/2015 8:58 AM, Akbar

Re: CVE-2015-0204 - FREAK vulnerability on tomcat 7.

2015-05-15 Thread Neill Lima
We would love to help but without the bare minimum description we are unable to do so. Sorry! On Fri, May 15, 2015 at 2:10 PM, Penubothu, Srinivasa M srinivasa.penubo...@bankofamerica.com wrote: Hello, I am looking for help with fixing FREAK vulnerability on tomcat 7. I am unable to find a

Re: File descriptors peaks with latest stable build of Tomcat 7

2015-04-22 Thread Neill Lima
Hi Andre, If I am not wrong, if the application in question is monitored in VisualVM through JMX (https://visualvm.java.net/) you could trigger a Force GC from its monitoring console. In order to do that, these startup params might be necessary in the Java app side :

Re: File descriptors peaks with latest stable build of Tomcat 7

2015-04-22 Thread Neill Lima
, Neill Lima wrote: If I am not wrong, if the application in question is monitored in VisualVM through JMX (https://visualvm.java.net/) you could trigger a Force GC from its monitoring console. You can do this, but it won't close any CLOSE_WAIT connections. Tomcat's timeout must be reached. I

Re: File descriptors peaks with latest stable build of Tomcat 7

2015-04-20 Thread Neill Lima
Increasing the amount of opened file descriptors is an accepted fine-tune (*if your application it is handling the threads properly*) ulimit -n ulimit -n [new_value] ulimit -n If even after allowing more fds the performance is not adequate, some sort of scaling (H/V) is necessary. On Mon, Apr

Re: French chars not displayed correctly - Tomcat 7

2015-04-20 Thread Neill Lima
Try adding this to your html: head *meta charset=UTF-8* /head On Mon, Apr 20, 2015 at 4:45 PM, radiatejava radiatej...@gmail.com wrote: Hello Tomcat users, have code like this in my jsp: td${pageKeys.ui_user_name_label};/td Where td represents a cell of an html table. Value of the

Re: Multiple login/home pages within a tomcat app

2015-04-08 Thread Neill Lima
Andre, Excellent reply given the context. I would add the following: Given a webapp paradigm why would you need two different login pages to different resources? Usually what is done is change what the logged user sees/is able to see. For example: Scenario 1: WHEN a administrator logs in to

Re: Issue with JMX in tomcat

2015-04-07 Thread Neill Lima
Tried chmodding 600 in both .access and .password files? On Tue, Apr 7, 2015 at 5:19 PM, Paul, Subhro subhro.p...@pseg.com wrote: -Original Message- From: Niranjan Babu Bommu [mailto:niranjan.bo...@gmail.com] Sent: Tuesday, April 07, 2015 11:02 AM To: Tomcat Users List Subject:

Re: Tomcat8 gives me WSOD due to LinkageError

2015-03-25 Thread Neill Lima
...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Neill, On 3/20/15 12:28 PM, Neill Lima wrote: As of today I figured out that the jasper.jar in Tomcat's \lib takes care of the task out of the box. I've tweaked my pom a few times, but I started fresh today

Tomcat8 gives me WSOD due to LinkageError

2015-03-20 Thread Neill Lima
Hello list, I'm not sure if this the right place to ask, but here it goes... I have a existing WebApp that I'm planning to upgrade to Tomcat8 (version 8.0.20 as of today). It is running stable in Tomcat7 already for ages. Tomcat8 does not embed the JasperListener so I added it manually to my

Re: Tomcat8 gives me WSOD due to LinkageError

2015-03-20 Thread Neill Lima
, 2015 at 5:08 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Neill, On 3/20/15 4:58 AM, Neill Lima wrote: I have a existing WebApp that I'm planning to upgrade to Tomcat8 (version 8.0.20 as of today). It is running stable