RE: Keystore error trying to use SSL JSSE

2013-06-06 Thread Carrillo, Dan
It's not complaining about the file path, but about the property name. Capitalize the F - it should be keystoreFile= -Original Message- From: Tim Colletto [mailto:tcolle...@cra.com] Sent: Thursday, June 06, 2013 8:30 AM To: users@tomcat.apache.org Subject: Keystore error trying to use

RE: Which version of tomcat for apache 2.2.24 and JDK 1.6.0

2013-04-30 Thread Carrillo, Dan
If you want to utilize Servlet spec 3.0 or JSP spec 2.2 then use Tomcat version 7.0.39. This is compatible with Java 1.6. If you prefer or are constrained to using the older servlet or JSP specifications, then use Tomcat version 6.0.36. If you don't know or don't care, then my recommendation

RE: Which version of tomcat for apache 2.2.24 and JDK 1.6.0

2013-04-30 Thread Carrillo, Dan
1.6.0 From: Carrillo, Dan [mailto:dcarri...@idanalytics.com] Subject: RE: Which version of tomcat for apache 2.2.24 and JDK 1.6.0 If you want to utilize Servlet spec 3.0 or JSP spec 2.2 then use Tomcat version 7.0.39. This is compatible with Java 1.6. If you prefer or are constrained

RE: SSL configuration on Tomcat7.

2013-04-25 Thread Carrillo, Dan
You didn't provide very much information. But one thing to check is that the domain name of your site matches what you specified for the certificate. -Original Message- From: Shahid Tamboli [mailto:shahid1...@gmail.com] Sent: Thursday, April 25, 2013 8:10 AM To:

RE: Diagnosing Silently Frozen Tomcats

2013-03-22 Thread Carrillo, Dan
Take a full thread dump of the PID. Linux kill -3, if Windows CTRL+BREAK if you have a console window open. This will allow you to see the state of all threads and see whether it's your own application class (likely), or Tomcat itself. -Original Message- From: Robinson, Eric

RE: Achieve large number of concurrent websocket connections (~40000-50000)

2013-02-13 Thread Carrillo, Dan
You should consider setting up a cluster of Tomcat's to service your requests. With 40-50 thousand concurrent connections you're likely to need to balance the load anyway. Are you familiar with setting up a Tomcat cluster? -Original Message- From: Amit Bhagra

RE: Shutdown.sh doesn't. At least not reliably. (7.0.25)

2012-11-27 Thread Carrillo, Dan
If you take a thread dump you'll be able to see the state of both Tomcat's threads and your own application's threads to see where it's hanging. -Original Message- From: James Lampert [mailto:jam...@touchtonecorp.com] Sent: Tuesday, November 27, 2012 9:10 AM To: Tomcat Users List

sessions replication

2012-09-19 Thread Carrillo, Dan
Hi folks, My sessions are replicating across the cluster as indicated by my session listener debug output. E.g I can see the session created/destroyed messages in each respective log. I have a Service object that is serializable, which contains a String member variable (x) which is not

RE: Unable to start cluster (java.net.BindException: Cannot assign requested address)

2012-08-15 Thread Carrillo, Dan
Hi Jeff, java.net.BindException: Address already in use indicates there is another process using this ip/port. You'll need to change it to a unique value. Dan -Original Message- From: Jeff Hall [mailto:jhall@gmail.com] Sent: Wednesday, August 15, 2012 12:50 PM To:

RE: Unable to start cluster (java.net.BindException: Cannot assign requested address)

2012-08-15 Thread Carrillo, Dan
Jeff, Can you include your entire server.xml for each instance and also your /etc/hosts? From: Jeff Hall [mailto:jhall@gmail.com] Sent: Wednesday, August 15, 2012 1:32 PM To: users@tomcat.apache.org Cc: Carrillo, Dan Subject: Re: Unable to start cluster (java.net.BindException: Cannot assign

RE: jsessionid cookie across webapps

2011-10-24 Thread Carrillo, Dan
Read up on the emptySessionPath connector setting in the Tomcat configuration guide. This will explain it. -Original Message- From: chad.da...@emc.com [mailto:chad.da...@emc.com] Sent: Monday, October 24, 2011 10:34 AM To: users@tomcat.apache.org Subject: jsessionid cookie across