in reply to Re^3: mod_perl and CGI behavior
in thread mod_perl and CGI behavior
Interesting. That did the trick actually. So this test code...
my $test_header = $cgi->header( -type => 'application/xml' ); ddump('test_header', __LINE__, $test_header); my $another_test_header = $cgi->header( -nph => 1, -type => 'application/xml' ); ddump('another_test_header', __LINE__, $another_test_header);
...produced the following debug output...
$test_header_line_673_1 = ''; $another_test_header_line_680_1 = 'HTTP/1.1 200 OK Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips mod_perl/2.0.11 Pe +rl/v5.22.4 Date: Wed, 07 Oct 2020 21:53:46 GMT Content-Type: application/xml; charset=ISO-8859-1 ';
--
Andy
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: mod_perl and CGI behavior
by davebaker (Pilgrim) on Oct 08, 2020 at 16:54 UTC | |
by naChoZ (Curate) on Nov 02, 2020 at 14:54 UTC |