Re: Need Help!

2015-01-28 Thread Leon Rosenberg
On Wed, Jan 28, 2015 at 8:48 PM, David kerber dcker...@verizon.net wrote: On 1/28/2015 2:03 PM, Hyder Hashmi wrote: Hi, I am working on a small project and need your help in this. I have a java program in which I read and write in a file that is located in the current folder. Now I have

Re: AJP connector address vs. IPv4/6

2015-01-28 Thread Wang, Andy
On Fri, 2015-01-23 at 16:05 -0500, Christopher Schultz wrote: If only one address per Connector can be specified, can you not just use 2 Connectors, one for each ? They should not conflict. That should definitely work (address=127.0.0.1 and address=::) but one connector might be nice.

RE: Need Help!

2015-01-28 Thread Caldarale, Charles R
From: Tim Watts [mailto:t...@cliftonfarm.org] Subject: Re: Need Help! It sounds like you're trying to force your notion of what a web app's current folder should be onto Tomcat. Code that depends on the current directory setting is naïve at best. The Servlet Spec makes no guarantee as to

RE: AJP connector address vs. IPv4/6

2015-01-28 Thread Caldarale, Charles R
From: Wang, Andy [mailto:aw...@ptc.com] Subject: Re: AJP connector address vs. IPv4/6 The two connectors idea is an interesting one, but that has the unfortunate aspect of now maintaining 2 separate thread pools Not true - use an Executor:

Re: Need Help!

2015-01-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Leon, On 1/28/15 3:16 PM, Leon Rosenberg wrote: On Wed, Jan 28, 2015 at 8:48 PM, David kerber dcker...@verizon.net wrote: On 1/28/2015 2:03 PM, Hyder Hashmi wrote: Hi, I am working on a small project and need your help in this. I have

FIPS Mode enabling on Tomcat 7.00.057

2015-01-28 Thread Geett Chanddra Singha
*Hi all,* I'm getting the following error when enabling FIPS mode on Apache Tomcat: Jan 28, 2015 5:02:33 PM org.apache.catalina.core.AprLifecycleListener lifecycleEvent SEVERE: Failed to initialize the SSLEngine. java.lang.Exception: error:2D06C06E:FIPS routines:FIPS_mode_set:fingerprint does

Tomcat 7.0.57 + CXF message truncated

2015-01-28 Thread Jose Monreal
Hi guys! I'm currently working on moving an app from JBoss-7.1.1 Final to Tomcat 7.0.57 under CentOS 6.6. I have been able to do it without many problems, but I'm experiencing a behaviour that's different when using the following option in the JVM,

Need Help!

2015-01-28 Thread Hyder Hashmi
Hi, I am working on a small project and need your help in this. I have a java program in which I read and write in a file that is located in the current folder. Now I have written a few servlets and trying to use the previous code along with servlets. Tomcat is searching for the file in its

Re: Need Help!

2015-01-28 Thread David kerber
On 1/28/2015 2:03 PM, Hyder Hashmi wrote: Hi, I am working on a small project and need your help in this. I have a java program in which I read and write in a file that is located in the current folder. Now I have written a few servlets and trying to use the previous code along with

Re: Need Help!

2015-01-28 Thread Mark Eggers
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 1/28/2015 11:48 AM, David kerber wrote: On 1/28/2015 2:03 PM, Hyder Hashmi wrote: Hi, I am working on a small project and need your help in this. I have a java program in which I read and write in a file that is located in the current

Re: Need Help!

2015-01-28 Thread Tim Watts
On Thu, 2015-01-29 at 00:33 +0530, Hyder Hashmi wrote: Hi, I am working on a small project and need your help in this. I have a java program in which I read and write in a file that is located in the current folder. Now I have written a few servlets and trying to use the previous code