Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: CGI environment variables and PL/SQL-cartridge

Re: CGI environment variables and PL/SQL-cartridge

From: Frank Hubeny <fhubeny_at_ntsource.com>
Date: 2000/03/22
Message-ID: <38D8805E.D1DB83E0@ntsource.com>#1/1

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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US