Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] Jetty 10 with ALPN / H2 on the class path


I'm guessing the missing ALPN META-INF/services entry is an oversight which can be easily fixed?

One more thing:

The guide (https://www.eclipse.org/jetty/documentation/jetty-10/programming_guide.php) suggest the following ServerConnector:

new ServerConnector(server, tls, alpn, http11, h2)

I had to change this to the following in order to get a successful negotiation of H2:

new ServerConnector(server, tls, alpn, h2, http11) 

Is the guide wrong, or am I missing something?

Eirik.

Back to the top