http2 Questions

4

Solved

Is there a command or a service that will tell me whether my websites are being served over HTTP or HTTP/2. I found this tool: HTTP/2 Test | A simple HTTP/2.0 test tool, but it only tells me wheth...
Handball asked 29/4, 2016 at 14:17

1

Solved

I’m working on a site with the goal of being as fast as possible. This goal requires letting mobile clients make the initial HTTP request in one round-trip. (HTTP/2’s HPACK should take care of subs...
Katydid asked 18/8, 2019 at 19:48

2

Solved

I'm currently learning HTTP/2 Client in Java 11(java.net.http module) My purpose is send a POST JSON data to local server using Java 11 HTTP/2 Client, but I occurred some IOException, EOFException...
Mossback asked 29/10, 2018 at 8:55

5

Solved

I want to implement a JAX-RS client that support HTTP/1.1 and HTTP/2 for a JAX-RS client. The idea is to use HTTP/2 if the server supports ALPN with HTTP/2 and uses HTTP/1.1 if the server does not...
Hypogastrium asked 20/2, 2017 at 15:10

1

Solved

I have a NGINX reverse proxy in front of a website. The NGINX server is http2/ready. If I run a test, all seems good: However, when I go to the website using a browser, chrome indicates the webs...
Seavey asked 9/7, 2019 at 12:38

1

I'm trying to get HTTP/2 working with ASP.Net Core 2.2. I'm testing on Windows 10 x64 1809. I'm using the basic template with the following web host builder: public static IWebHostBuilder Create...
Amalea asked 18/3, 2019 at 19:40

3

Solved

Having already followed the steps from here, I still have Unsupported Protocol when using curl --http2 option. Similarly, setting the CURLOPT_HTTP_VERSION to CURL_HTTP_VERSION_2_0 results in the pr...
Tabor asked 25/6, 2015 at 3:37

1

Solved

While I'm writing a service with grpc, I'm trying to compare http/2 with websocket by server side pushing mechanism. I know for websocket, the client will send a request with Upgrade: WebSocket a...
Argyres asked 24/6, 2019 at 15:40

0

I encountered problems in IE11 in combination with HTTP2 (SCRIPT7002: XMLHttpRequest: Network Error 0x2eff, Could not complete the operation due to error 00002eff.). These seem only to occur with I...
Disconsider asked 10/5, 2019 at 14:4

1

Solved

As HTTP2 supports multiplexing, do we need still a pool of connections for microservice communication? If yes, what are the benefits of having such a pool? Example: Service A => Service B Both ...
Henbane asked 4/5, 2019 at 18:33

1

Using only the standard Java library, as a client, how can an insecure HTTP/2 connection be established with prior knowledge that that version of the protocol will be used? I.e. without sending an ...
Agnella asked 26/9, 2018 at 9:6

0

We have many React Native <Image> components rendering per screen and are witnessing performance issues due to many simultaneous http requests. Opening and closing a connection is expensive, ...

1

Solved

I am trying to continuously send GET and POST requests to a REST API every few minutes. The issue is that after exactly 1000 requests I receive a GOAWAY frame (and an IOException): The GOAWAY fram...
Arsenal asked 10/3, 2019 at 11:42

4

The problem I'm trying to solve is latency between Microservice communication on the backend. Scenario. Client makes a request to service A, which then calls service B that calls service C before r...
Celin asked 17/4, 2016 at 17:59

1

Solved

Some articles describing http/2 are praising it for being both bidirectional and full-duplex. AFAIK bidirectional means that communication is in both directions so duplex is by its nature bidirect...
Tiffanytiffi asked 1/3, 2019 at 7:45

1

Solved

My application will send approx 1000 POST requests/minute to my tomcat server(which is http/2 enabled) which will poll the given url and return back the html and response time, I want to achieve tr...
Ammoniacal asked 24/2, 2019 at 8:3

1

Solved

HTTP/2 server push allows a server to "push" resources to the browser before the browser has actually requested them. When using the network tab of the Chrome DevTools, how can I tell which resour...
Gorge asked 22/2, 2019 at 18:1

1

Solved

I want to know if a request between a JavaScript Client and Node.js server is performed using HTTP1.x or HTTP2. How I know in XMLHttpRequest, Chrome Console and Node.js what type of protocol is u...
Berna asked 21/2, 2019 at 16:54

1

Solved

HTTP/2 does not seem to be running after what seems to be a proper installation. I am running CentOS 7. I installed the latest version of Apache, version httpd-2.4.35-5.el7.x86_64, and have...
Breen asked 16/2, 2019 at 5:13

1

Solved

I have not been able to find any great examples to outline using Java's new HTTP2 support. In previous versions of Java (Java 8) I was making many calls to a REST server using multiple threads. ...
Inner asked 1/2, 2019 at 17:46

3

I've got the latest version of curl and still not seeing http2 show up as a feature. I've followed steps around related questions, but still out of luck. $ /usr/local/Cellar/curl/7.43.0/bin/curl -...
Paracasein asked 29/7, 2015 at 18:38

1

I have enabled HTTP 2.0 in Spring boot 2.1.2 and Tomcat with SSL using below configuration in application.property file - server.port=8443 server.http2.enabled=true security.require-ssl=true serve...
Sigma asked 31/1, 2019 at 5:43

5

Solved

I have a node.js server running behind an nginx proxy. node.js is running an HTTP 1.1 (no SSL) server on port 3000. Both are running on the same server. I recently set up nginx to use HTTP2 with S...
Fulvia asked 13/1, 2017 at 14:40

2

Nowadays HTTP/2 is rising as of its performance. The recent version of Node.js supports HTTP/2 very well. https://nodejs.org/api/http2.html But I have no idea how to implement HTTP/2 client in t...
Venetian asked 11/9, 2018 at 9:47

3

I'm trying to get h2 (HTTP/2) to work on my webserver. Installed Apache 2.4.20 via the "ondrej" repository. I tested on a Debian 8 and Ubuntu 14.04 server, but I keep running into the sam...
Pazpaza asked 19/5, 2016 at 11:53

© 2022 - 2024 — McMap. All rights reserved.