marcelv has asked for the wisdom of the Perl Monks concerning the following question:
I currently have quite some scripts running on Perl 5.24 on a Microsoft Windows Server running IIS 10.0. On this server I use a certificate to for HTTPS connections. The scripts are all using the CGI.pm module to do CGI. As I do use Non-Parsed Headers (NPH), all my scripts start with the prefix "nph-" and have the following line to import the CGI module:
Now when a browser requests one of my scripts, these scripts are executed twice. I have made a Wireshark trace and I see the following happening:use CGI qw/:standard -nph/;
Now when I remove the "nph-" prefix from the script name (and do not change the contents), the following happens:
Now my question: is it possible to HTTP2 via CGI using the CGI module or any other module?
Marcel
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl CGI HTTP2
by choroba (Cardinal) on Nov 26, 2020 at 21:25 UTC | |
|
Re: Perl CGI HTTP2
by Anonymous Monk on Nov 27, 2020 at 07:38 UTC |