Re: HTTP2 with WebSockets

2019-02-06 Thread Jesse Schulman
port in > which the app can access tomcat for websockets directly. We've not been > able to get this to work over httpd. > John > > > On Wed, Feb 6, 2019 at 5:32 PM Jesse Schulman > wrote: > > > Is it possible for tomcat to run with HTTP2 and WebSockets on the sa

HTTP2 with WebSockets

2019-02-06 Thread Jesse Schulman
Is it possible for tomcat to run with HTTP2 and WebSockets on the same connector? I have tried configuring it myself and looked for examples without success. Thanks! Jesse

SSL Session Cache with Tomcat 9 and Java 9

2018-05-16 Thread Jesse Schulman
I noticed on ssllabs.com that when I upgrade from java 8 to java 9 (9.0.4 to be exact) that without changing any other variables I start to get "Session resumption (caching) No (IDs assigned but not accepted)" as a warning. I also tried explicitly setting the sessionCacheSize (even tho docs say de

Re: How to get the AbstractEndpoint from Tomcat with tomcat-embed

2017-12-08 Thread Jesse Schulman
expected and should I keep an eye out for that possibly changing in a future version? Thanks again for your help! Jesse On Thu, Dec 7, 2017 at 5:43 AM Mark Thomas wrote: > On 06/12/17 18:32, Jesse Schulman wrote: > > For some reason there are no Catalina names from that MBean server: >

Re: How to get the AbstractEndpoint from Tomcat with tomcat-embed

2017-12-06 Thread Jesse Schulman
be able to get access to the Endpoint instance to call those two new public methods to pass my SSLHostConfig to the add method? Thanks! Jesse On Wed, Dec 6, 2017 at 1:41 AM Mark Thomas wrote: > On 06/12/17 00:17, Jesse Schulman wrote: > > Now that 8.5.24 is released with new s

How to get the AbstractEndpoint from Tomcat with tomcat-embed

2017-12-05 Thread Jesse Schulman
Now that 8.5.24 is released with new support for runtime SNI/SSLHostConfig changes (thank you Mark!) I am trying to access the AbstractEndpoint from our application to call these 2 new methods: public void addSslHostConfig(SSLHostConfig sslHostConfig, boolean replace) public SSLHostConfig

Re: Upgrading to 8.5.20 - issue when certificateKeyAlias is not set

2017-08-22 Thread Jesse Schulman
Will do, thanks Mark! On Tue, Aug 22, 2017 at 8:42 AM Mark Thomas wrote: > On 21/08/17 22:54, Jesse Schulman wrote: > > I'm pretty sure this is a bug/regression related to a recent change by > > markt: http://svn.apache.org/viewvc?view=revision&revision=1800868 >

Re: Upgrading to 8.5.20 - issue when certificateKeyAlias is not set

2017-08-21 Thread Jesse Schulman
nts()) { throw new IOException(sm.getString("jsse.noKeys")); } keyAlias = aliases.nextElement(); Should I send this to the dev list instead? Thanks! Jesse On Wed, Aug 16, 2017 at 3:02 PM Jesse Schulman wrote: > We use tomcat-em

Upgrading to 8.5.20 - issue when certificateKeyAlias is not set

2017-08-16 Thread Jesse Schulman
We use tomcat-embed and we have a test that is breaking with an upgrade from 8.5.12 to 8.5.20, it seems due to the fact that we do not set the certificateKeyAlias when we configure an SSLHostConfigCertificate. The documentation for certificateKeyAlias states "If not specified, the first *key* read

Re: tomcat-embed 8.5.9 - runtime changes to SSLHostConfig objects

2017-01-09 Thread Jesse Schulman
On Mon, Jan 9, 2017 at 1:53 PM Mark Thomas wrote: > On 09/01/2017 20:13, Jesse Schulman wrote: > > On Thu, Jan 5, 2017 at 9:48 PM Jesse Schulman > wrote: > > > >> On Thu, Jan 5, 2017 at 2:08 PM Mark Thomas wrote: > >> > >> On 05/01/2017 21:05, Je

Re: tomcat-embed 8.5.9 - runtime changes to SSLHostConfig objects

2017-01-09 Thread Jesse Schulman
On Thu, Jan 5, 2017 at 9:48 PM Jesse Schulman wrote: > On Thu, Jan 5, 2017 at 2:08 PM Mark Thomas wrote: > > On 05/01/2017 21:05, Jesse Schulman wrote: > > We are using tomcat-embed 8.5.9, java8 and running on Centos7. Given > > Tomcat's new support for SNI, we wish

Re: tomcat-embed 8.5.9 - runtime changes to SSLHostConfig objects

2017-01-05 Thread Jesse Schulman
On Thu, Jan 5, 2017 at 2:08 PM Mark Thomas wrote: > On 05/01/2017 21:05, Jesse Schulman wrote: > > We are using tomcat-embed 8.5.9, java8 and running on Centos7. Given > > Tomcat's new support for SNI, we wish to support adding/removing/updating > > certificates via

tomcat-embed 8.5.9 - runtime changes to SSLHostConfig objects

2017-01-05 Thread Jesse Schulman
We are using tomcat-embed 8.5.9, java8 and running on Centos7. Given Tomcat's new support for SNI, we wish to support adding/removing/updating certificates via our application at runtime without restarting tomcat or binding/unbinding the port. Our configuration is very simple, we have a single se