Re: HTTP/2 support in Maven

2020-10-25 Thread Benjamin Marwell
http/2 is not available before Java 8. ALPN and TLS 1.3 are requirements for h2. I saw httpClient 5 implemented http/2. That's fine and that's why you may have successfully connected tomcat with a http/2 client. Try another application server which does not use httpClient, e.g. OpenLiberty. You w

Re: HTTP/2 support in Maven

2020-10-25 Thread Michael Osipov
Am 2020-10-25 um 19:09 schrieb Benjamin Marwell: While TLS 1.3 and ALPN (and ciphers) may have been backported, I am not aware of http2 being backported to Java 8. Even if it was, it would not be part of EVERY JVM implementation, eg Eclipse OpenJ9. You are talking non-sense. Don't mix lower lev

Re: HTTP/2 support in Maven

2020-10-25 Thread Benjamin Marwell
While TLS 1.3 and ALPN (and ciphers) may have been backported, I am not aware of http2 being backported to Java 8. Even if it was, it would not be part of EVERY JVM implementation, eg Eclipse OpenJ9. On Sun, 25 Oct 2020, 09:52 Michael Osipov, wrote: > Am 2020-10-24 um 14:25 schrieb Benjamin

Re: HTTP/2 support in Maven

2020-10-25 Thread Michael Osipov
Am 2020-10-23 um 10:08 schrieb Jakub Bartecek: Hello, I'd like to ask if it is possible to turn on HTTP/2 support in Maven. I haven't found such an option. If not: Are there any plans to add the support? There is nothing to turn on and that would be unwise, something like this should be done

Re: HTTP/2 support in Maven

2020-10-25 Thread Michael Osipov
Am 2020-10-24 um 14:25 schrieb Benjamin Marwell: You need at least java 9 for http/2. Java 11 is a current LTS release which supports h2. Why? TLS 1.3 and ALPN have been backported to Java 8 recently. Is there anything in the transport code preventing h2 transport? Yes, your participation t