1,892 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
51
views
Tomcat10 Http2UpgradeProtocol does not provide ConnectionID or StreamID values? [closed]
Tomcat10.1.20 does not provide Http2 connectionID or streamID values in a request attributes as stated in a docs.
Firefox connection uses HTTP2 protocol but values are always NULL.
I need to use an ...
2
votes
0
answers
52
views
Separate domain for static content in the days of HTTP2 [closed]
More than 15 years ago, it was asked here if it is "worth having static resources in a separate domain/server". Also in 2009, it was "considered a best practice to serve static content, ...
0
votes
2
answers
116
views
If a clear-text HTTP/2 (h2c) server supports the Upgrade: h2c mechanism, does it also have to accept HTTP/2 "prior knowledge" connections? [closed]
I’m experimenting with HTTP/2 (h2c) startup modes when talking to gRPC servers.
According to RFC 7540 §3.2, an HTTP/2 connection over clear-text (h2c) can be established in two ways:
1. Upgrade from ...
1
vote
2
answers
137
views
Safari corrupts uploads when using HTTP/2 on Tomcat server
When files are uploaded via a form with Safari (v18.5) and the server (Tomcat v11.0.9) has HTTP/2 enabled, they're being corrupted.
Success without Safari:When using Chrome (v137.0.7151.122) the ...
0
votes
0
answers
239
views
AH10034: The mpm module (prefork.c) is not supported by mod_http2 - but http2 IS working?
Hi Everyone thank you for reading. Any advice appreciated. I am fairly new to webservers etc. I've read lots of pages but still don't understand :-(
LAMP stack running 4x small sites in Apache2 ...
0
votes
0
answers
23
views
Is there a way to get more detail about why a request was cancelled when using the server side C++ gPRC API?
When a request is considered cancelled in gRPC, i.e. OnCancel is called, is there a way to get more detailed reason for why the request was cancelled?
For example, whether it was triggered client side ...
0
votes
0
answers
41
views
Apache2 multiple vhost http2 only in one
I'm configuring Apache2 with 2 virtual hosts (VH) (nohttp2.com and http2.com). The idea is that one of the VH works with http2 and the other only with http/1.1.
I have enabled http2 module and I'm ...
0
votes
0
answers
89
views
How can I increase HTTP/2 keep‐alive timeout on Node.js/Koa behind ALB and Cloudflare?
I have a Koa/Node.js app behind an AWS Application Load Balancer and Cloudflare (Free plan). My goal is to reuse the same TCP connection for up to 5 minutes of inactivity, but I see connections ...
1
vote
1
answer
778
views
Spring HTTP/2 Support with RestClient
I am refactoring my code to use RestClient for calling upstream services. These services support HTTP/2. What do I need to do (if anything) to configure RestClient to use HTTP/2?
For example, if I was ...
0
votes
0
answers
76
views
Http streams breaking issues after shifting to http2
So in my application i have to run alot of http streams so in order to run more than 6 streams i decided to shift my server to http2.
My server is deployed on google cloud and i enabled http2 from the ...
1
vote
2
answers
215
views
How to decide whether to use chunked upload in OkHttp or not?
I am uploading files to WebDav servers using
RequestBody requestBody = new MultipartBody.Builder()
.addPart(RequestBody.create(data, MediaType.parse("application/...
0
votes
1
answer
356
views
Does an HTTP 1.1 proxy support HTTP 2 connections?
I am trying to implement an HTTP proxy server, aimed for low latency.
From what I understand, an HTTP proxy request is either a raw request with the HOST header set to the destination, or a CONNECT ...
0
votes
0
answers
355
views
nginx server not enabling HTTP/3 and QUIC
i have hosted my video on nginx server and serving through localhost.
but still the client-protocol being shown in my dev tools network tab on chrome and safari browser for macos is HTTP/2 and not ...
0
votes
0
answers
58
views
Why does RedirectGet work in place of FormPost for OpenIdConnectRedirectBehavior when redirecting to IdentityServer4 on Windows 11 machines?
I have a Blazor server app that uses IdentityServer4 for authentication. For context, all of the following is occurring on developer machines running the app through the Visual Studio 2022 debugger. ...
1
vote
0
answers
85
views
Express.js with HTTP/2 (SPDY) - net::ERR_HTTP2_PROTOCOL_ERROR in Chrome Only
I have a Node.js server using Express.js with SPDY to enable HTTP/2 requests. The goal is to handle more concurrent streams than HTTP/1.1 allows.
Setup
I'm using SPDY to create an HTTP/2 server:
...