| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: Is it possible to install WebServer on NT and DB engine on UNIX?
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;
![]() |
![]() |