> 
> I would like to call a CGI script, and have %udat be 
> available to it. I thought the way to do that was:
> 
> Embperl::Req::SetupSession($req_rec);
> Execute({subreq => '/cgi-perl/env_test.pl?param1=...&param2=...'});
> 

Since you are already using Embperl, you don't need to call SetupSession


> and then in thescript.pl I would put:
> 
> %udat = Embperl::Req::GetSession($req_rec);
> 

This does not take the Apache Request Record and it returns a reference to
%udat, so jus call it as

$udat = Embperl::Req::GetSession();

This should work.

Gerald



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to