http2 Questions

2

What is the real-world performance difference between Websocket vs AJAX over HTTP 2.0? In particular, a project I'm working on requires bidirectional real-time updates, therefore, although nonstan...
Yerga asked 19/11, 2015 at 1:50

2

I don't know exactly how to ask it, so I will try to explain with an example. I have these resources on example.com, an HTTP/2 enabled server: //example.com/css/file.css //example.com/js/file.js ...
Lester asked 7/12, 2015 at 18:28

1

Solved

HTTP/2 introduces some very interesting features such as pipelining, multiplexing, and server push promises; which on their own are awesome. In return, we sacrificed WebSockets. In theory HTTP/2 a...
Marcimarcia asked 1/12, 2015 at 17:45

2

Solved

The HTTP/2 specification indicates that any resource identified in a PUSH_PROMISE frame won't be pushed if the client cancels it. When a browser detects a resource already in the cache, it should ...
Chrystalchryste asked 30/3, 2015 at 17:16

2

Solved

The bundling of JS and CSS files won't be necessary in HTTP/2, but what about image sprites? Looking at the demo it seems that it already works way faster than HTTP/1.1, but won't bundling images ...
Tuchun asked 22/8, 2015 at 21:6

3

Solved

I have installed SPDY Indicator chrome extension. It is detecting some sites as SPDY enabled and some as HTTP/2 enabled. Which are the web servers that currently support HTTP/2? I know nginx suppor...
Pudency asked 15/2, 2015 at 8:59

1

Solved

I would like to test okhttp's http2 function. And I make multi requsts to same host in async style. But, I found that, it involved multi connections, since the protocol is h2, It should use just on...
Dacha asked 17/9, 2015 at 7:46

1

Solved

This may just highlight some misconception of mine, but I was curious: If you had an HTTP/2 server running and wanted to make XHR requests in the browser to the server, would XHR automatically ta...
Vonnie asked 15/9, 2015 at 17:32

1

I am using Netty 4.1-Beta6 version. I want to support the use case where the HTTP2 server should be able to push events to the HTTP2 client on an existing connection - this could be an alarm or ti...
Shelleyshellfire asked 8/9, 2015 at 20:2

3

Solved

When using websocket, we need a dedicated connection for bidirectionnel communication. If we use http/2 we have a second connection maintained by the server. In that case, using websocket seems to...
Cuspid asked 7/9, 2015 at 14:17

3

Solved

I know that HTTP is a request-response protocol. My problem, in short, is that a client makes a request to the server to start a long running-process, and I want to inform the client of the progres...
Muro asked 15/6, 2015 at 0:40

2

Jetty's HTTP/2 client with server push support has been implemented in Jetty 9.3 RC (Link). However, I have not found any documentation or example code related to this. Could any one provide an exa...
Duda asked 3/5, 2015 at 3:45

1

When testing on Windows 10 we were seeing lots of browser incompatibilities that I hadn't seen before with earlier Windows versions. Some browsers would work, but others would report ERR_SPDY_PROTO...
Toothpaste asked 30/7, 2015 at 8:17

1

Solved

I'm implementing a servlet in an embedded Jetty (9.3.0.v20150612) and I would like to use HTTP/2. I'm enabling ALPN for protocol negotiation to select either HTTP1.1 or HTTP2. When I'm sending an...
Fara asked 26/7, 2015 at 21:12

2

Solved

I've configured HTTP/2 on a Jetty 9.3 server, it has a valid certificate and SSLLabs.com given it a grade A security configuration. Browsing using Chrome to https://example.com loads the correct r...
Westbrooke asked 6/7, 2015 at 5:33

1

Solved

As the title suggests, I'm looking for some information on the purpose of pseudo/colon header fields, i.e. I want to know why we have a second type of header field... Also - I know pseudo/colon he...
Nobel asked 17/6, 2015 at 18:51

1

I've just downloaded and installed the VHD of "Windows 10 Server Technical Preview 2 Build 10074" I've followed the instructions: http://blogs.iis.net/nazim/http-2-for-iis-in-windows-10-technical-...
Tallulah asked 21/5, 2015 at 11:17

2

Solved

I want to get server sockets working for HTTP/2 in Java, preferably TLS/https. I've got a TLS server socket working fine, but browsers will only talk HTTP/1.1 to it. If I understand correctly, you...
Phira asked 1/4, 2015 at 19:27

2

I'd like to move my client's site entirely to HTTPS in order to allow HTTP2 to work, however I was wondering is it ok (in the eyes of search engines) to serve older traffic (of which there is a lot...
Myall asked 4/6, 2015 at 11:48

1

Solved

Is Apache2 planning in implementing HTTP/2 protocol anytime soon ? I was searching through their website, but I didn't find any information regarding HTTP/2.
Levorotatory asked 2/6, 2015 at 7:5

1

Solved

Is it possible to use http2 features with HTTPListeners yet? I didn't hear anything about it but i heard that the new releases of the IIS / asp.net stack support it so i was hoping HTTPListener wou...
Parterre asked 8/5, 2015 at 23:49

1

UPDATE (for anyone interested in the outcome :) I wasn't able to figure out why next protocol negotiation between chrome and node-http2 server fails. My suspicion was self signed certificate or AL...
Femur asked 27/4, 2015 at 1:45

2

Solved

I want to use http/2 with cURL. First I got an error when I tried this curl --http2 https://http2.akamai.com/ - "Protocol not supported". I installed nghttp2 and reinstalled cURL like it is describ...
Chantry asked 20/4, 2015 at 22:13

1

Solved

HTTP/2 prohibits connection-specific header fields. The following header fields must not appear: "Connection", "Keep-Alive", "Proxy-Connection", "Transfer-Encoding" and "Upgrade". Additionally, "TE...
Centerboard asked 7/4, 2015 at 7:24

1

I've enabled HTTP/2 connector over SSL with jetty. When I try to connect with the browser I get an 'ERR_SSL_PROTOCOL_ERROR' error. If I switch to HTTP/1.1 connector everything works fine. Here are...
Frampton asked 1/4, 2015 at 11:34

© 2022 - 2024 — McMap. All rights reserved.