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: Is it possible to install WebServer on NT and DB engine on UNIX?

Re: Is it possible to install WebServer on NT and DB engine on UNIX?

From: William B. Severin <wbs109_at_psu.edu>
Date: 1997/04/19
Message-ID: <335872A5.D07854C7@psu.edu>#1/1

Steve Lai wrote:

> I am trying to install WebServer 2.1 on NT 3.51, and the backend
> Oracle
> database version 7.3.2.2 is on another AIX box in the same LAN, is
> it
> doable?

 Sure is.

I had trouble with the "right out of the box" applications as well. Try creating your own DCD and writing a simple pl/sql for it to call like:

create or replace procedure webtest
begin

    htp.htmlopen;
    htp.headopen;
    htp.title('This is a test of the web server');
    htp.headclose;
    htp.bodyopen;
    htp.header(1, 'It works!!');
    htp.bodyclose;
    htp.htmlclose;

end;
/ Received on Sat Apr 19 1997 - 00:00:00 CDT

Original text of this message

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