Re: [jetty-users] Jetty SPDY use split package?

2012-09-27 Thread Guofeng Zhang
Thanks for your update. I will make a try late -Original Message- From: jetty-users-boun...@eclipse.org [mailto:jetty-users-boun...@eclipse.org] On Behalf Of Hugues Malphettes Sent: Tuesday, September 25, 2012 2:22 PM To: JETTY user mailing list Subject: Re: [jetty-users] Jetty SPDY use

[jetty-users] Implementing HTTP 1.1 encrypted connection upgrade

2012-09-27 Thread Manfred
Hi. Following up on: http://jetty.4.n6.nabble.com/jetty-users-Jetty-and-Http-1-1-upgrade-header-td4959222.html I've tried to tell Jetty to use a SslConnection in order to upgrade the plain http connection to an encrypted connection. This is what I tried: --- // send 101

Re: [jetty-users] HTTP on LAN and redirect to HTTPS on WAN?

2012-09-27 Thread Will Hoover
Looks like I'm close. I also want to be able to add authentication that will only apply to WAN use. Is there an easy way to do that? Authentication is set on the context which applies to both connectors. final SslSelectChannelConnector sslCnct = new

Re: [jetty-users] SessionAuthentication class not found

2012-09-27 Thread Tore Halset
Hello. If I change hazelcast AbstractSerializer.loadClass to use WebAppClassLoader.getParent to load SessionAuthentication everything works fine. Should hazelcast try WebAppClassLoader.getParent().loadClass for classes that are not found using WebAppClassLoader.loadClass. Seems wrong for me.