Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: CGI environment variables and PL/SQL-cartridge
The following procedure will show the cgi variables:
create procedure t
is
begin
htp.p('<pre>');
owa_util.print_cgi_env;
htp.p('</pre>');
end;
After installing it in a DAD schema and then calling it from a web page, I did not find http_iv_user.
Frank Hubeny
Tim van Dooremalen wrote:
> Hi,
>
> I've got a question about the use of CGI variables in a PL/SQL
> cartridge on OAS 4.0.8. I'd like to read a CGI variable
> ("HTTP_IV_USER") from a PL/SQL procedure using the
> owa_util.get_cgi_env function. Right now it won't work. I am very sure
> the variable is set and has a value (checked it with a Perl-script).
> Does anybody have a clue about why the owa_util will not return any
> value for this environment-variable??
>
> Thanx!
>
> Tim
Received on Wed Mar 22 2000 - 00:00:00 CST
![]() |
![]() |