It appears that CGI::PSGI does not implement the script_name() method from CGI or returns a blank string. How do I get the script URI from a HTTP request under a PSGI environment? Specifically plackup using Starman?

link|improve this question

27% accept rate
1  
Works for me: use CGI qw(); my $c = CGI->new; print $c->header; print $c->script_name;starman -MPlack::App::CGIBin -e 'Plack::App::CGIBin->new(root => ".")->to_app'curl -v 'http://localhost:5000/foo.pl?1=2;3=4#fnord' – daxim Jan 10 at 8:27
You're creating a new CGI object, I am referring to CGI::PSGI. – MadHacker Jan 11 at 1:46
I showed my code to explain what I mean, why don't you? Please edit the question to include what exactly does not work for you. sscce.org – daxim Jan 11 at 8:22
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.