Re: Configuring Embedded Tomcat for SSL

2013-11-01 Thread Violeta Georgieva
2013/11/1 Matthew Westwood-Hill matthew.westwood-h...@nuix.com Tomcat version: 7.0.47 OS: Windows 7 (x64) JDK: 1.7 I am attempting to start an embedded instance of Tomcat, which is configured for SSL only, on port 443. The code I am using is as follows: *public* *static*

Re: Multi-URL Access 1 Webapp

2013-11-01 Thread Felix Schumacher
Am 31.10.2013 20:30, schrieb Chris Arnold: mod_rewrite is what's adding the extra /share/ RewriteRule ^/(.*) https://192.168.123.3:8443/share/$1 [P] should be something like either: RewriteRule ^/(.*) https://192.168.123.3:8443/$1 [P] This takes me to the tomcat home page, / If you want to be

Re: Tomcat getting stopped when idle

2013-11-01 Thread Vidyadhar
On 1 Nov 2013 00:52, Konstantin Kolinko knst.koli...@gmail.com wrote: 2013/10/31 Vidyadhar techienote@gmail.com: Hi, We are facing some weird issue in our Tomcat environment. After starting the Tomcat process on one of our Solaris server, process is automatically getting shutdown

Changelog entry missing for 7.0.47

2013-11-01 Thread Timothy Astle
I don't see an entry in the changelog for 7.0.47? Is it going to be updated? http://tomcat.apache.org/tomcat-7.0-doc/changelog.html Tim Astle

Re: Changelog entry missing for 7.0.47

2013-11-01 Thread Mark Thomas
On 01/11/2013 17:01, Timothy Astle wrote: I don't see an entry in the changelog for 7.0.47? Is it going to be updated? http://tomcat.apache.org/tomcat-7.0-doc/changelog.html It is the first version in the list. Is your cache stale? Mark

Re: Changelog entry missing for 7.0.47

2013-11-01 Thread Timothy Astle
My apologies. You're right. Tim On 01/11/2013 2:11 PM, Mark Thomas wrote: On 01/11/2013 17:01, Timothy Astle wrote: I don't see an entry in the changelog for 7.0.47? Is it going to be updated? http://tomcat.apache.org/tomcat-7.0-doc/changelog.html It is the first version in the list. Is

Re: Changelog entry missing for 7.0.47

2013-11-01 Thread Mark Thomas
On 01/11/2013 17:14, Timothy Astle wrote: My apologies. You're right. No problem. Nice to have an easy problem to solve on a Friday afternoon. If only the refactoring of Tomcat's JSP engine was as simple... Mark Tim On 01/11/2013 2:11 PM, Mark Thomas wrote: On 01/11/2013 17:01,

Re: Multi-URL Access 1 Webapp

2013-11-01 Thread Chris Arnold
Am 31.10.2013 20:30, schrieb Chris Arnold: mod_rewrite is what's adding the extra /share/ RewriteRule ^/(.*) https://192.168.123.3:8443/share/$1 [P] should be something like either: RewriteRule ^/(.*) https://192.168.123.3:8443/$1 [P] This takes me to the tomcat home page, / If you want to be

Re: Tomcat getting stopped when idle

2013-11-01 Thread Konstantin Kolinko
2013/11/1 Vidyadhar techienote@gmail.com: On 1 Nov 2013 00:52, Konstantin Kolinko knst.koli...@gmail.com wrote: 2013/10/31 Vidyadhar techienote@gmail.com: Hi, We are facing some weird issue in our Tomcat environment. After starting the Tomcat process on one of our Solaris

Re: Multi-URL Access 1 Webapp

2013-11-01 Thread Chris Arnold
So i was not able to get any of those to work. So i moved to the third option, mod_jk. It is loaded. I make the changes in my vhost: #This rewrites https://share.anydomain.tld to our share server RewriteEngine On RewriteCond %{HTTP_HOST} ^share\. RewriteCond

Re: Multi-URL Access 1 Webapp

2013-11-01 Thread André Warnier
Chris Arnold wrote: Starting over since i can not seem to get this to work with tomcat or apache. So what i have now that IS somewhat working is: #This rewrites https://share.anydomain.tld to our mail server RewriteEngine On RewriteCond %{HTTP_HOST} ^share\. RewriteCond

Re: Multi-URL Access 1 Webapp

2013-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Chris, On 11/1/13, 1:16 PM, Chris Arnold wrote: Am 31.10.2013 20:30, schrieb Chris Arnold: mod_rewrite is what's adding the extra /share/ RewriteRule ^/(.*) https://192.168.123.3:8443/share/$1 [P] should be something like either: RewriteRule

attempting to achieve 100K concurrent websocket connections on Tomcat 7.0.48 NIO

2013-11-01 Thread Bob DeRemer
QUESTION: I'm looking for some advice on what Tomcat NIO connector settings to use to support 100K concurrent websocket connections. Hopefully I can reach this goal through a combination of Tomcat NIO Connector settings, and Server 2008 R2 configuration [if needed]. BACKGROUND: We're scale

Re: Multi-URL Access 1 Webapp

2013-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Chris, On 11/1/13, 5:51 PM, Christopher Schultz wrote: The above is not using mod_jk. If you are using mod_jk, then you are either using the JkMount directive, or the SetHandler jk directive. Anything else is using mod_proxy_(http|ajp).

Re: attempting to achieve 100K concurrent websocket connections on Tomcat 7.0.48 NIO

2013-11-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Bob, Just a quick note: with NIO, you should not need 100k threads to serve 100k connections. Can a single process even request 100k threads from the OS under your current environment? - -chris On 11/1/13, 6:00 PM, Bob DeRemer wrote: QUESTION:

Re: attempting to achieve 100K concurrent websocket connections on Tomcat 7.0.48 NIO

2013-11-01 Thread Mark Thomas
On 01/11/2013 22:00, Bob DeRemer wrote: QUESTION: I'm looking for some advice on what Tomcat NIO connector settings to use to support 100K concurrent websocket connections. Hopefully I can reach this goal through a combination of Tomcat NIO Connector settings, and Server 2008 R2 configuration

Re: attempting to achieve 100K concurrent websocket connections on Tomcat 7.0.48 NIO

2013-11-01 Thread Mark Thomas
On 01/11/2013 23:15, Mark Thomas wrote: On 01/11/2013 22:00, Bob DeRemer wrote: QUESTION: I'm looking for some advice on what Tomcat NIO connector settings to use to support 100K concurrent websocket connections. Hopefully I can reach this goal through a combination of Tomcat NIO Connector

RE: attempting to achieve 100K concurrent websocket connections on Tomcat 7.0.48 NIO

2013-11-01 Thread Bob DeRemer
-Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Friday, November 01, 2013 6:11 PM To: Tomcat Users List Subject: Re: attempting to achieve 100K concurrent websocket connections on Tomcat 7.0.48 NIO -BEGIN PGP SIGNED MESSAGE-

RE: attempting to achieve 100K concurrent websocket connections on Tomcat 7.0.48 NIO

2013-11-01 Thread Bob DeRemer
-Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Friday, November 01, 2013 7:16 PM To: Tomcat Users List Subject: Re: attempting to achieve 100K concurrent websocket connections on Tomcat 7.0.48 NIO On 01/11/2013 22:00, Bob DeRemer wrote: QUESTION: I'm

Re: Multi-URL Access 1 Webapp

2013-11-01 Thread Terence M. Bandoian
On 10/31/2013 2:30 PM, Chris Arnold wrote: mod_rewrite is what's adding the extra /share/ RewriteRule ^/(.*) https://192.168.123.3:8443/share/$1 [P] should be something like either: RewriteRule ^/(.*) https://192.168.123.3:8443/$1 [P] This takes me to the tomcat home page, / or:

Re: Tomcat getting stopped when idle

2013-11-01 Thread Vidyadhar
Hi Konstantin, On 2 Nov 2013 01:06, Konstantin Kolinko knst.koli...@gmail.com wrote: 2013/11/1 Vidyadhar techienote@gmail.com: On 1 Nov 2013 00:52, Konstantin Kolinko knst.koli...@gmail.com wrote: 2013/10/31 Vidyadhar techienote@gmail.com: Hi, We are facing some weird