Re: Really Confused about Apex, 11g and Http
From: Maxim Demenko <mdemenko_at_gmail.com>
Date: Tue, 09 Jun 2009 21:52:52 +0200
Message-ID: <4A2EBD94.7040707_at_gmail.com>
11g uses embedded plsql gateway (it is available on 10g as well, however not supported with Apex) . It acts like apache within database itself, so, no need to have an additional web server. Of course, not all directives of full webserver are implemented, but for ApEx it is enough. You have an plsql api for querieng/setting listening ports
>
>
Date: Tue, 09 Jun 2009 21:52:52 +0200
Message-ID: <4A2EBD94.7040707_at_gmail.com>
11g uses embedded plsql gateway (it is available on 10g as well, however not supported with Apex) . It acts like apache within database itself, so, no need to have an additional web server. Of course, not all directives of full webserver are implemented, but for ApEx it is enough. You have an plsql api for querieng/setting listening ports
select dbms_xdb.gethttpport from dual;
select dbms_xdb_getftpport from dual;
exec dbms_xdb.sethttpport(8080);
exec dbms_xdb.setftpport(8021);
You can disable listening on both, if you sets ports to 0.
You can read about it more detailed here:
http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28369/xdb22pro.htm#g1031760
Best regards
Maxim
Taylor, Chris David schrieb:
> That is one of the guides I used.
>
>
-- Why make things difficult, when it is possible to make them cryptic and totally illogical, with just a little bit more effort? Aksel Peter Jørgensen -- http://www.freelists.org/webpage/oracle-lReceived on Tue Jun 09 2009 - 14:52:52 CDT