Re: http request (no only session) replication in cluster

2013-06-18 Thread Ja kub
yes, most of time is waiting, I use tomcat NIO connector, with async cxf webservice server (exposed as async servlet) and async cxf client, I use no my own threaded-queue regards Jakub ps possibly camel could do it more elegantly and with less programming effort On Tue, Jun 18, 2013 at 5:21 PM

Re: TCNative with FIPS OpenSSL throws fingerprint error in FIPS mode

2013-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Steve, On 6/18/13 12:58 PM, Steve Nickels wrote: > Christopher Schultz wrote: Do you think there are ways it could be improved? Better error checking, etc.? I implemented it as simply as I possibly could. >>> >>> The biggest problem

RE: TCNative with FIPS OpenSSL throws fingerprint error in FIPS mode

2013-06-18 Thread Steve Nickels
> >> Do you think there are ways it could be improved? Better error > >> checking, etc.? I implemented it as simply as I possibly could. > > > > The biggest problem seems to be that something in Tomcat on Windows > > is interfering with OpenSSL's normal base address request (0xFB0). > > Normall

Re: Running RMI client in Tomcat 7 got ClassNotFoundException

2013-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 William, On 6/17/13 11:10 PM, William Kang wrote: > I got the following error by submitting the code from RMI client to > RMI server: java.rmi.ServerException: RemoteException occurred in > server thread; nested exception is: java.rmi.UnmarshalExcep

Re: http request (no only session) replication in cluster

2013-06-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jakub, On 6/18/13 3:27 AM, Ja kub wrote: > Ravindra, > > Thx for idea, I will read about it, but at first glance it looks > like with 5000 pending servlet requests I will have 5000 threads > awaiting response from cxf client, with async servlet and

Re: Running RMI client in Tomcat 7 got ClassNotFoundException

2013-06-18 Thread Mark Thomas
On 18/06/2013 04:10, William Kang wrote: > I DID NOT set up the security manager in the code, I assume that Tomcat > will use its own. > //if (System.getSecurityManager() == null) { > // System.setSecurityManager(new SecurityManager()); > //} Only if you start Tomcat with a security manager.

Re: Precompiled tag compatibility issue between 5.5 and 7.0

2013-06-18 Thread Mark Thomas
On 17/06/2013 23:08, jeff_shanho...@mcafee.com wrote: > We have precompiled tags which were compiled under 5.5.35 and don't > work under 7.0.34. From my investigation, it appears it's due to an > interface change in JspSourceDependent. The return type of > getDependants() changed. For us the soluti

Re: http request (no only session) replication in cluster

2013-06-18 Thread Ja kub
Ravindra, Thx for idea, I will read about it, but at first glance it looks like with 5000 pending servlet requests I will have 5000 threads awaiting response from cxf client, with async servlet and async cxf webservice server, connected with async cxf client, all 5000 pending threads can be served