Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
64 views

The idea is for my Windows app to exchange QUIC data with a browser. Upon creating a server with msquic and nghttp3, I'm not sure why chrome says Failed to establish a connection to https://host.com:...
Michael Chourdakis's user avatar
0 votes
0 answers
68 views

I run Jetty 12.1.4 demo according to instruction: https://jetty.org/docs/jetty/12.1/operations-guide/begin/index.html including enabling HTT/3 protocol as described at: https://jetty.org/docs/jetty/12....
Michał Niklas's user avatar
0 votes
0 answers
36 views

I am trying to get a .NET 9 web server to serve HTTP/3 on Ubuntu 24.04 using Kestrel and MsQuic Despite the server appearing to be configured correctly and listening on all the right ports, Firefox ...
SHIFD's user avatar
  • 105
0 votes
0 answers
43 views

I can see documentations for listening for h3 connections and forwarding to http1.1 or 2. But can it forward as a http3? I am using this config backend my_quic_backend mode http ...
Sibin George's user avatar
1 vote
0 answers
76 views

When I specified Nginx to work in a multi-process manner, the HTTP3 request would report an error. What i can sure is, when start Nginx with single worker process it can work successfully. I'am not ...
BamLubi's user avatar
  • 11
0 votes
0 answers
69 views

For a university project I am training a ML model to classify QUIC traffic. One of the requested categories for the classifier is "big file downloads". To classify this category, I need to ...
mikealexx's user avatar
0 votes
1 answer
65 views

I am trying to create HTTP3 protocol stack with Network.framework on Apple platforms. Http3 needs to creates unidirectional QUIC streams as control stream by server and client, but always not ready to ...
gazzy's user avatar
  • 21
-1 votes
1 answer
354 views

As the title, I am just considering how to use http3 datagram with URLSession on the iOS. I know the iOS uses http3 as a default if the server can accept http3, but documents by Apple don't mentioned ...
gazzy's user avatar
  • 21
1 vote
0 answers
34 views

I am using URLSession with MapKit. It has to download tiles for the screen for several different layers, so it could easily need to send 50 requests per screen. My content server supports HTTP/2 and ...
Jeshua Lacock's user avatar
0 votes
0 answers
239 views

enter image description here I don't do any decryption method. Capture QUIC,I can see the url in "Decrypted QUIC" and "Reassembled TLS Handshake" Isn't http3 already solving the ...
zhuwei's user avatar
  • 31
0 votes
1 answer
202 views

I am learning to use HTTP/3 in Rust, but I keep getting this error when I open https://127.0.0.1:4433 in the browser. error this site can't be reached, 127.0.0.1 refused to connect There are no errors ...
Fuji's user avatar
  • 117
1 vote
0 answers
666 views

I'm running into a problem when sending a QUIC/HTTP3 request to my server. My server is running nginx with QuicTLS and http3 module enabled. This is the output of my nginx -V nginx version: NGINX-...
ILikeTacos's user avatar
  • 18.9k
1 vote
1 answer
434 views

I want to implement my API's hitting mechanism to use HTTP2/3 using QUIC as their transport layer, which provides benefits for reduce latency and improved multiplexing. I am using Cronet in android ...
Sajid Zeb's user avatar
  • 2,008
1 vote
1 answer
575 views

I have a grpcServer configured to utilize HTTP/3 and it is verified that it is capable to serve HTTP/3: public static class Program { public static void Main(string[] args) { var ...
Andreas's user avatar
  • 1,812
1 vote
2 answers
549 views

I'm familiar with the HTTP/3 and QUIC specifications somewhat, and I'm building web services and infrastructure for bringing an application online. The general structure of a request to my service ...
Naftuli Kay's user avatar
  • 92.6k
0 votes
0 answers
376 views

I tried using rcgen, but when I try to conenct to http3 with my browser, firefox says "rx_record_too_long". Other browsers just say "invalid ssl certificate".
Liran's user avatar
  • 1
0 votes
0 answers
2k views

I'm using Okhttp3 to send an xml file http-Request. When I try to send a long file (several thousand lines), I'll get a StreamResetException. Otherwise it works always fine, an error occurs only with ...
GörmenProgrämmer's user avatar
2 votes
1 answer
453 views

Is it possible to implement Http3 when using Laravel 10 and Forge with nginx? I have tried it myself but i didnt found anything on the Internet. Is Http3 even the current standard or is it still http2?...
Tobias Vogt's user avatar
2 votes
0 answers
648 views

I'm trying to use Google Chrome's WebTransport connection by following the example provided in https://github.com/GoogleChrome/samples/blob/gh-pages/webtransport/README.md. I've generated the OpenSSL ...
Sungwon Choi's user avatar
1 vote
1 answer
2k views

New HTTP protocol version was proposed in 2022. What changes in our Java code should we made in order to make sure the code is compatible with the new version? For example request code var response = ...
camilajenny's user avatar
  • 5,256
0 votes
0 answers
920 views

I'm writing here since I haven't found the solution to my problem with the app I'm creating for testing purposes. It is a simple app that performs HTTP GET requests, and I want it specifically to ...
josemariafr-upm's user avatar
1 vote
1 answer
171 views

I am a total beginner in NGINX and wanted to use HTTP/3 but the docs say that it is not an inbuilt module and for config nginx code has to be built. I followed this video:https://www.youtube.com/watch?...
Kartic Joshi's user avatar
1 vote
1 answer
2k views

I have checkout spring-boot-http-3-jetty and run. It's working as expected[http-3(h3) from 2nd request] furthermore, I want to test it with POST request with body so, I have added the following ...
mcacorner's user avatar
  • 1,274
1 vote
1 answer
2k views

I have a Nginx 1.25.3 server configured to accept HTTP/3 QUIC connections in port 443. While benchmarking using apache bench, the following output. hari@hari-virtual-machine:~$ ab -n 100 -c 10 https://...
hari19's user avatar
  • 137
0 votes
1 answer
476 views

I have started to transfer my websites from Apache to Nginx because of pre-built QUIC support but I have stuck with http3check.net verification. It gives me an error: However browsers shows "h3&...
KovMus's user avatar
  • 31
0 votes
1 answer
325 views

HTTP/3 (Quic) is advertised as it reduces round trip time by using UDP instead of TCP. In theory, it reduces response time on slow connections (high latency). When I take a test on my computer, I see ...
Doraemon's user avatar
  • 410
1 vote
1 answer
583 views

I was create a QUIC server with crate quinn in Rust. code below: use std::net::SocketAddr; use quinn::{Endpoint, ServerConfig}; use rcgen::Error; use rustls::Certificate; #[tokio::main] async fn main(...
dvorak's user avatar
  • 33
4 votes
2 answers
5k views

I am trying to configure HTTP/3 for my site https://jscoder.io. I have installed Nginx v1.25 on the server, and the conf file is: root@localhost:~# cat /etc/nginx/conf.d/jscoder.io.conf server { ...
Joy's user avatar
  • 9,600
1 vote
1 answer
595 views

While investigating (in Chromium and Firefox devtools) some resources sent over HTTP/3, I noticed that the content-length header is never sent. Why?
lonix's user avatar
  • 22.4k
4 votes
1 answer
2k views

I've been trying to run some of the samples of the implementation of WebTransport, like https://github.com/quic-go/webtransport-go/tree/master/interop https://github.com/streaming-university/public-...
Farrel's user avatar
  • 47
1 vote
0 answers
810 views

I'm trying to implement a HTTP/3 using embedded Jetty with Java API. I have a running Jetty with HTTP/2 support, valid certificate on HTTPS default ports. I'm following the code in Jetty the ...
Horcrux7's user avatar
  • 24.6k
5 votes
1 answer
4k views

I have add support of HTTP/3 to my server with embedded Jetty. But the browser does not use it. In the dev console of the browser I see only HTTP/2 requests to my server. It is a Chrome browser which ...
Horcrux7's user avatar
  • 24.6k
2 votes
0 answers
181 views

I am experimenting with HTTP/3, I compiled both nghttpx and nginx with HTTP/3 support and deployed them to an EC2 instance. I also compiled curl 8.4.0 with HTTP/3 support and use Firefox 118.0.2 as an ...
woggioni's user avatar
  • 1,442
1 vote
0 answers
693 views

I have two AWS CloudFront distributions, one over an S3 bucket and one over an Application Load Balancer (ALB). On both of them I checked the box "Enabled HTTP/3". While using my ...
PatientOtter's user avatar
  • 2,348
2 votes
0 answers
703 views

We currently have a Vuejs web app using axios for communicating with our API server. All is working well on all devices except we are getting reports from users complaining that they are occasionally ...
Amr El Aswar's user avatar
  • 3,525
0 votes
1 answer
247 views

I have a working HTTP/2 configuration with an embedded Jetty 10. Now I want add HTTP/3 support. I follow the Jetty HTTP/3 documentation. I get the follow exception: java.lang.IllegalStateException: No ...
Horcrux7's user avatar
  • 24.6k
0 votes
1 answer
1k views

I am trying to configure nginx 1.25.2 with HTTP/3 support on Ubuntu 22.04. I build it using BoringSSL library. But when I try to connect to my server using browser, I don't get anything.("Unable ...
Sanch3s's user avatar
0 votes
0 answers
305 views

if Traefik receives a request for a webpage that includes images and a audio and the configuration specifies different servers for the different content types, does Traefik open individual streams for ...
Mormorion's user avatar
2 votes
1 answer
3k views

Now that Nginx 1.25.1 support quic/http3 on the run, I try to enable it by following either their doc or few examples over the internet, but so far I couldn't get anything to work: it's always served ...
EmmanuelBeziat's user avatar
2 votes
0 answers
468 views

As can be seen in this screenshot, the Chrome's (Version 116.0.5813.0) network panel is missing the connection id for any h3 request. Is there any configuration to allow that? or it is simply not ...
mbehzad's user avatar
  • 3,898
10 votes
3 answers
10k views

NGINX 1.25 introduced support for http/3 (over QUIC). To enable it, one can add listen 443 quic reuseport; to the server block, alongside the likely existing listen 443 ssl http2; However, if I add ...
Ruud's user avatar
  • 3,312
4 votes
1 answer
1k views

I'm trying to implement a HTTP/3 test server using Jetty 11 with Java 11 (as experiment). I'm following the code in the documentation: public class HTTP3Server { public static void main(String[] ...
lepe's user avatar
  • 25.4k
1 vote
1 answer
2k views

Is there a way to configure Kubernetes to work with HTTP/3 and QUIC? QUIC protocol is a quite new transport protocol, explained in the RFC9000, that many research highlight to mix the advantages of ...
Alez's user avatar
  • 2,877
2 votes
1 answer
2k views

I'm trying to implement HTTP/3 with QUIC support in my Android app using OkHttp and the Cronet transport. However, all requests are being made under HTTP/2. I have used different devices with ...
lak's user avatar
  • 544
0 votes
1 answer
701 views

This RFC for HTTP/1.1 says The HTTP protocol is a request/response protocol. Moving to newer HTTP protocols - HTTP/2 spec says that each stream is a bidirectional sequence of frames. Both client and ...
ns15's user avatar
  • 9,352
0 votes
1 answer
442 views

We've enabled HTTP/3.0 on our IIS 10 webserver, but have noticed some strange behaviour. Sometimes we see (randomly?) a POST-request in the IIS logs that falls back to HTTP/2. The problem is that both ...
Jan Gils's user avatar
0 votes
2 answers
2k views

sudo docker run -d -it -p 443:443 -p 443:443/udp --name nginxx nginxx 4ae3a17df82316bd010a0899d91db78c6c64467e5c585a36e73fa3ae31975b1f docker: Error response from daemon: driver failed programming ...
user18353669's user avatar
0 votes
0 answers
2k views

My goal is capture the pcap file on my linux machine which is using nginx to connect and decrypt those packets using ssl key log file.but i am unable to find how to capture ssl key log file on nginx. ...
kartheek dasari's user avatar
5 votes
1 answer
5k views

The new HTTP/3 protocol is supposed to be faster and more secure than HTTP/2. How do I enable it on Windows Server running IIS websites?
Dave L's user avatar
  • 3,745
0 votes
0 answers
146 views

Is there any way we can replay the captured QUIC or HTTP/3 pcap from Ubuntu machine(any machine) using any tools. Looking for the tools which would help to replay the QUIC or HTTP/3 pcap on Ubuntu ...
kartheek dasari's user avatar