Re: TLS extension needed for HTTP/2.0

2013-07-25 Thread Xuelei Fan
On 7/24/2013 6:41 AM, Zhong Yu wrote: Hi there, HTTP/2.0 draft (based on google's SPDY) requires the use of a new TLS extension (ALPN), see http://tools.ietf.org/html/draft-ietf-httpbis-http2-04#section-3.3 The current javax.net.ssl API does not support that, so it'll be a problem for someone t

Re: TLS extension needed for HTTP/2.0

2013-07-25 Thread Bernd Eckenfels
Hello, no direct response, but just a pointer: there is a third party Project by Ben Murphy which brings NPN to JSSE. I guess the same codebase can be used to add ALPN. This will allow to do experiments. https://github.com/benmmurphy/ssl_npn It is btw very unfortunate that there is no clea

Re: TLS extension needed for HTTP/2.0

2013-07-25 Thread Zhong Yu
Hi, can someone shed some light on the questions? Any information will be greatly appreciated. Thanks, Zhong Yu On Tue, Jul 23, 2013 at 5:41 PM, Zhong Yu wrote: > Hi there, > > HTTP/2.0 draft (based on google's SPDY) requires the use of a new TLS > extension (ALPN), see > http://tools.ietf.org/ht

Re: TLS extension needed for HTTP/2.0

2013-07-23 Thread Zhong Yu
On Tue, Jul 23, 2013 at 5:50 PM, Matthew Hall wrote: > On Tue, Jul 23, 2013 at 05:41:52PM -0500, Zhong Yu wrote: >> Note that HTTP/2.0 is in very early stage; it's possible that the >> requirement of ALPN could be relaxed if there's difficulty to >> implement it on popular platforms; see this thre

Re: TLS extension needed for HTTP/2.0

2013-07-23 Thread Matthew Hall
On Tue, Jul 23, 2013 at 05:41:52PM -0500, Zhong Yu wrote: > Note that HTTP/2.0 is in very early stage; it's possible that the > requirement of ALPN could be relaxed if there's difficulty to > implement it on popular platforms; see this thread: > http://lists.w3.org/Archives/Public/ietf-http-wg/2013

TLS extension needed for HTTP/2.0

2013-07-23 Thread Zhong Yu
Hi there, HTTP/2.0 draft (based on google's SPDY) requires the use of a new TLS extension (ALPN), see http://tools.ietf.org/html/draft-ietf-httpbis-http2-04#section-3.3 The current javax.net.ssl API does not support that, so it'll be a problem for someone trying to implement the HTTP/2.0 draft on