http2 Questions
3
Solved
How can i send a httpVersion 2.0 request in nodejs?
I have tried almost every request module there is, and all of them is httpVersion 1.1
2
Solved
I know the following about various python HTTP libraries:
Requests does not support HTTP/2 requests.
Hyper does support HTTP/2 requests, but is archived as of early 2021 and wouldn't be a good cho...
Crosspollination asked 13/4, 2022 at 14:6
2
Solved
AWS ELB/ALB now supports HTTP/2.
According to the documentation (https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html):
Application Load Balancers pr...
Galyak asked 27/10, 2018 at 1:35
10
Solved
I'm learning about HTTP/2 protocol. It's a binary protocol with small message frames. It allows stream multiplexing over single TCP connection. Conceptually it seems very similar to WebSockets.
Ar...
0
I need to leave possibility to execute requests only with HTTP/2 protocol.
System: Apache Tomcat 8, configured to use the HTTP/2 protocol.
I execute this request with --http2 and get result:
Nex...
3
Solved
I am using HttpClient of Java 11 to post the request to an HTTP2 server. The HttpClient Object is created as a Singleton Spring bean as shown below.
@Bean
public HttpClient getClient() {
return H...
Erastatus asked 28/2, 2019 at 3:19
2
Solved
There is a confusing bit of terminology in the RFC for HTTP/2 that I wish was clearer.
Per the RFC https://www.rfc-editor.org/rfc/rfc7540#section-8.1.2
Just as in HTTP/1.x, header field names are ...
3
Solved
I'm trying to use http2 in my angular application. So I searched and found this chrome plugin https://chrome.google.com/webstore/detail/http2-and-spdy-indicator/mpbpobfflnpcgagjijhmgnchggcjblin?hl=...
2
Solved
I'M testing a site that supports HTTP/2,like this,
and I try to use okhttp to send the request:
OkHttpClient okHttpClient = new OkHttpClient();
Request request = new Request.Builder()
.url("http...
3
How can I verify that okhttp negotiated http/2 successfully and did not use https/1.1 instead? Is there some info in the response I can check?
Thanks,
-Tony
6
I'm really stumped. In my server logs I'm seeing:
org.apache.coyote.CloseNowException: Connection [215], Stream [95], This stream is not writable
at org.apache.coyote.http2.Http2UpgradeHandler.re...
2
Solved
I'm trying to figure out how to enable http2 for my rest api. I uses fastify as its server and according to their documentation secure http2 can be enabled in the following way
https://www.fastify....
Simitar asked 31/3, 2021 at 11:36
2
I have a server installed with Windows Server 2019 and IIS 10.
According to https://learn.microsoft.com/en-us/iis/get-started/whats-new-in-iis-10/http2-on-iis all https sites should work using HTTP...
Backsight asked 9/8, 2019 at 12:43
1
Traffic to my site is using HTTP1.1, and I want to force the server to only use HTTP/2.
I'm running Windows Server 2016 and IIS 10. I've tried adding
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Se...
5
I'm creating a small chat application in gRPC right now and I've run into the issue where if a user wants to connect to the gRPC server as a client, I'd like to broadcast that the event has occurre...
Hardin asked 30/3, 2018 at 20:9
2
In one of my API's I mostly return a result (let's say paged 50 results) as one whole in an json array like so:
[{},{},{},{},{},...]
I was wondering if there are better ways of doing this over H...
3
Solved
I'm using AWS Application Load Balancer (ALB) to expose the ASP.NET Core gRPC services. The services are running in Fargate containers and expose unsecured HTTP ports. ALB terminates the outer TLS ...
Greyback asked 26/3, 2021 at 14:15
4
Solved
I'm evaluating what I can get for my web site from HTTP2 in terms of performance and getting weird result - the site in Europe is loaded from US:
with HTTP/2 - in 6-7 seconds
with plain HTTPS - i...
Aldas asked 11/11, 2015 at 19:25
3
I'd like to send HTTP/2 requests to a server via a proxy using Node.js's http2 library.
I'm using Charles v4.2.7 as a proxy, for testing purposes, but Charles is not able to proxy the request. Char...
Shiloh asked 10/7, 2020 at 18:27
1
Chrome has turned on the enable-quic switch ,but when i But when I visit google, it still uses http2 protocol ,how can I use the browser's http3/quic feature?
enable-quic
http2 protocol
Octavie asked 24/2, 2022 at 13:25
4
Solved
I'm trying to debug difference between HTTP/1.1 and HTTP/2.
Is there any possibility for disabling HTTP/2 in chrome or chromium?
I couldn't find this option flag in chrome 56. I have tried chromium...
Spaceport asked 24/2, 2017 at 10:5
4
Solved
Http/2 is enabled on server and yesterday I noticed that on Iphone (IOS 10.2) does not load some resources with error:failed to load resource:connecting to server is not possible. When I connect Ip...
Cos asked 6/4, 2017 at 11:24
4
Solved
I have two network services - a gRPC client and gRPC server. Server is written in .NET Core, hence HTTP/2 for gRPC is enforced. Client however is a .NET Framework 4.7.2 web app hosted on IIS 8.5, s...
Crannog asked 16/1, 2020 at 13:31
2
Solved
I'm trying to run the xamarin forms sample from the Dot net conf 2019 keynote. I've hosted the grpc service and a .net core console application can get data from it without any issues.
But when run...
1
Solved
I have an angular web application that uses Spring boot with an embedded tomcat server in the backend. I want to keep established http connections alive longer to improve the response time of subse...
Herwick asked 15/1, 2022 at 4:14
© 2022 - 2024 — McMap. All rights reserved.