3 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
117
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
1
answer
94
views
Dockerfile ok, but docker compose fails with an obscure rpc error
I have a Dockerfile that reads like this
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# Create a directory for the application code
RUN mkdir /app
# Create a directory ...
0
votes
0
answers
185
views
Http1AndHttp2AndHttp3 never selects the http2 over http
I have created the below .net server with multiple listeners over multiple ports and each with specific http port and http protocol configuration
using Microsoft.AspNetCore.Builder;
using Microsoft....