Mailing List Archive

IIS page post to apache
I have an Oracle server running on Apache and I am looking for a way
to post the username from IIS to apache. I tried an active server
page (ASP) running under IIS that POSTs a form variable but I haven't
figured out how to make Oracle/Apache read the post. Anyone have any
ideas?

Thanks,
Randy




---------------------------------------------------------------------
To unsubscribe, e-mail: asp-unsubscribe@perl.apache.org
For additional commands, e-mail: asp-help@perl.apache.org
Re: IIS page post to apache [ In reply to ]
Hi Randy,

>
> I have an Oracle server running on Apache and I am looking for a way
> to post the username from IIS to apache. I tried an active server
> page (ASP) running under IIS that POSTs a form variable but I haven't
> figured out how to make Oracle/Apache read the post. Anyone have any
> ideas?

If you are using Apache::ASP to receive the Post-Data (that's what i
suppose)
you can use

my $username = $Request->Form ('INPUT_NAME');

where INPUT_NAME is the name of the Form's input tag.

Helmut

---------------------------------------------------------------------
To unsubscribe, e-mail: asp-unsubscribe@perl.apache.org
For additional commands, e-mail: asp-help@perl.apache.org