The Web application allows only up to 5 sessions, from the sixth it breaks

There is no need to implement HTTP/2 to support it. The web server can handle browser communications using HTTP/2 and deliver them to Xojo using HTTP/1.1.

For example, if you’re using NGINX as a web browser, adding “http2” to the listen line will enable it:

listen 443 ssl http2;

Internal communication between processes won’t suffer from the network latency HTTP/2 fixes.

4 Likes