Re: Using EL expressions in an ObjectFactory

2013-09-20 Thread Mark Thomas
On 20/09/2013 02:38, Esmond Pitt wrote: Mark Can I direct your attention to java.beans.Statement and java.beans.Expression. They already do all the matching you're talking about. I took a look (I even committed it [1]) and they do work well apart from the handling of varargs. For example

Re: mod_jk not changes IP of hostname when occurs changing of IP on DNS

2013-09-20 Thread André Warnier
Tiago Braga wrote: In apache, the module mod_jk not changes IP of hostname when occurs changing of IP on DNS. Version of apache: Server version: Apache/2.2.15 (Unix) Server built: Aug 2 2013 08:02:15 Version mod_jk: 1.2.37 Example: workers.properties

setenv.sh issue

2013-09-20 Thread vicky
Hi All,  When i am declaring variables in my $CATALINA_BASE/bin/setenv.sh file , they are not getting exported :- eg:- export NAME=e1      export ID=22       But when i am declaring the same variables in $CATALINA_BASE/bin/startup.sh in following manner these are getting exported properly:-

Re: setenv.sh issue

2013-09-20 Thread Ognjen Blagojevic
Vicky, On 20.9.2013 11:32, vicky wrote: Hi All, When i am declaring variables in my $CATALINA_BASE/bin/setenv.sh file , they are not getting exported :- eg:- export NAME=e1 export ID=22 But when i am declaring the same variables in $CATALINA_BASE/bin/startup.sh in following manner

Re: setenv.sh issue

2013-09-20 Thread vicky
Thanks Ognjen . I need to set certain application specific enviornment variables ,pls suggest what is the best way of doing that. eg:- configuring enviornment variable for LOG4j file path eg:export path=/tc/amps/logs does above entry will be sufficient for defining in setenv.sh Thanks Vicky

RE: Using EL expressions in an ObjectFactory

2013-09-20 Thread Xavier Dury
Hi, I updated the github project to use tomcat-jasper-el:8.0.0-RC3 (found here [1]). Now the maven project compiles and passes all tests out of the box (without resorting to build tomcat aside). [1] https://repository.apache.org/content/repositories/orgapachetomcat-080/

Re: mod_jk not changes IP of hostname when occurs changing of IP on DNS

2013-09-20 Thread Tiago Braga
Hi! Thank you very much for your help. I'm using the AWS. So, i created an instance Linux with Apache, that send request to ELB (Elastic Load Balance in AWS) by mod_jk, this ELB sends request to instance Linux with Jboss. The ELB contains a fix host, but the IP can change any time. Do you

Re: MaxClients and maxThreads

2013-09-20 Thread mohan . radhakrishnan
Is this a hard limit ? So if there are 4 cores there can only be 800 concurrent clients. None of our banks is calculating this like this and some have Apache and JBoss on the same machine which further limits the threads. Appreciate any help. Thanks, Mohan From:

Re: MaxClients and maxThreads

2013-09-20 Thread Daniel Mikusa
On Sep 20, 2013, at 9:27 AM, mohan.radhakrish...@polarisft.com wrote: Is this a hard limit ? No. So if there are 4 cores there can only be 800 concurrent clients. None of our banks is calculating this like this and some have Apache and JBoss on the same machine which further limits the

RE: any update on an anticipated release date for 7.0.43?

2013-09-20 Thread Bob DeRemer
-Original Message- From: Bob DeRemer [mailto:bob.dere...@thingworx.com] Sent: Tuesday, September 17, 2013 12:28 PM To: Tomcat Users List Subject: RE: any update on an anticipated release date for 7.0.43? -Original Message- From: Mark Thomas

Re: any update on an anticipated release date for 7.0.43?

2013-09-20 Thread Nick Williams
On Sep 20, 2013, at 9:18 AM, Bob DeRemer wrote: -Original Message- From: Bob DeRemer [mailto:bob.dere...@thingworx.com] Sent: Tuesday, September 17, 2013 12:28 PM To: Tomcat Users List Subject: RE: any update on an anticipated release date for 7.0.43? -Original

Re: mod_jk not changes IP of hostname when occurs changing of IP on DNS

2013-09-20 Thread Mladen Turk
On 09/19/2013 06:41 PM, Tiago Braga wrote: In apache, the module mod_jk not changes IP of hostname when occurs changing of IP on DNS. Do a graceful restart of httpd when address changes. Unfortunately like some said, we can either do a DNS lookup every time which would be a performance

I want to redirect the https traffic of apache to tomcat. Such that we can configure SSL certificate on each tomcat instance.

2013-09-20 Thread venkateswara Rao Akkireddy
Hi All Hope every one is doing good! Aim: I want to redirect the https traffic of apache to tomcat. Such that we can configure SSL certificate on each tomcat instance. Please Help me on this ASAP *1) **Configuration in /etc/httpd/conf/httpd.conf* Listen 174.132.121.115:80

Re: setenv.sh issue

2013-09-20 Thread Mark Eggers
On 9/20/2013 4:14 AM, vicky wrote: Thanks Ognjen . I need to set certain application specific enviornment variables ,pls suggest what is the best way of doing that. eg:- configuring enviornment variable for LOG4j file path eg:export path=/tc/amps/logs does above entry will be sufficient for

RE: any update on an anticipated release date for 7.0.43?

2013-09-20 Thread Bob DeRemer
From: Nick Williams [mailto:nicho...@nicholaswilliams.net] Sent: Friday, September 20, 2013 10:48 AM To: Tomcat Users List Subject: Re: any update on an anticipated release date for 7.0.43? On Sep 20, 2013, at 9:18 AM, Bob DeRemer wrote: -Original Message- From: Bob DeRemer

Re: mod_jk not changes IP of hostname when occurs changing of IP on DNS

2013-09-20 Thread Tiago Braga
Hi, I would like be automatic. Thanks. On Fri, Sep 20, 2013 at 12:29 PM, Mladen Turk mt...@apache.org wrote: On 09/19/2013 06:41 PM, Tiago Braga wrote: In apache, the module mod_jk not changes IP of hostname when occurs changing of IP on DNS. Do a graceful restart of httpd when address

Re: APR Connector questions

2013-09-20 Thread Tomcat Random
Chris, Thanks for correcting the misdirected reply. Do you mean it's not working under load, or you haven't yet tried it under load? I mean I haven't tested it under load yet. One of the main reasons for choosing APR is is that I was under the impression it's good at serving large static files.

Re: mod_jk not changes IP of hostname when occurs changing of IP on DNS

2013-09-20 Thread Mladen Turk
On 09/20/2013 07:29 PM, Tiago Braga wrote: Hi, I would like be automatic. The only thing we can do is to make directive for expiring the resolved address cache entry after some timeout. This however would not solve the random DNS change I think that this random is not actually random but

Re: setenv.sh issue

2013-09-20 Thread Ognjen Blagojevic
Vicky, On 9/20/2013 4:14 AM, vicky wrote: I need to set certain application specific enviornment variables ,pls suggest what is the best way of doing that. eg:- configuring enviornment variable for LOG4j file path 1. Please, don't top post. 2. I doubt log4j will read any environment

Re: APR Connector questions

2013-09-20 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Alec, On 9/20/13 2:03 PM, Tomcat Random wrote: Chris, Thanks for correcting the misdirected reply. Do you mean it's not working under load, or you haven't yet tried it under load? I mean I haven't tested it under load yet. One of the