>
>
> http://www.oracle.com/technology/products/database/xe/index.html
It's working well under (fully patched) SuSE 9.3
--
Hans Forbrich
Canada-wide Oracle training and consulting
mailto: Fuzzy.GreyBeard_at_gmail.com
*** Top posting guarantees I will not respond further ***
Does it include mod_plsql / http server? Cant find any refrences yet in
the doc?
--
jeremy
Interesting question.
XE includes HTMLDB, and listens on an http port and it includes HTMLDB
(apparently version 2.1). Yet there is no Apache subdirectory and no
mod_plsql listed.
HTMLDB is not active until I start the database using the 'startdb.sh' in
the $ORACLE_HOME/scripts directory. That shell script does nothing other
than a traditional SQLPlus start followed by a lsnrctl start if the
database is up. But so far I don't see a database startup trigger either.
When I access http://{server}:8080 I see a directory listing. Drilling
in, I see many .gif files that are not on disk, or at least not found
using 'find' as root.
The listener does not have an entry to listen on port 8080.
And finally, only the traditional DB background processes are visible to a
"ps -ef | grep oraclexe"
Hmmmm.
XE uses the new built in HTTP listener and PL/SQL gateway that comes
with Oracle Database 10g Release 2. So the database is serving it;s own
HTTP requests. No Apache required (unless you want to offload or place
in a DMZ)
The GIF files you can see are for HTMLDB, and are stored in the database.
Sounds very interesting. I am looking at the XE forum now and have come
across a thread "URL access to procedures" where someomne states that
Oracle has embedded the pl/sql gateway into the database and that you
can add your own DADs. So it suggests to me that we could potentially
ship a complete app (ours is all pl/sql via mod_plsql) with XE.
--
jeremy
Sure. Enjoy :-) Note that you can also do this with any edition of
Oracle Database 10g Release 2 (i.e it's not just an XE thing)
jg
--
@home.com is bogus.
http://www.signonsandiego.com/uniontrib/20051102/news_1b2overland.html
> How long until I get the email with the XE forum instructions? It's
> been a couple of days... I expected it to be right away. What
> title/author should I be expecting on the email?
Have you installed XE? If so, in your browser you fire up
http://{server_with_XE}:{XE-port}/htmldb
eg: http://fuzzybox:8080/htmldb
and click on the 'register' link. After that, you sign in to the otn
forums and see the XE link on the forum master page.
--
Hans Forbrich
Canada-wide Oracle training and consulting
mailto: Fuzzy.GreyBeard_at_gmail.com
*** Top posting relies guarantees I won't respond. ***
thanks
--
jeremy
Answering for Mark - That's right.
I've just confirmed that the XE provides an internal listener run by
DBMS_EPG and configured by DBMS_XDB packages. No external Apache, yet the
DAD and mod_plsql functionality is there, entirely in the DB.
Read the XML DB Developer's guide (10G R2) for a list of the limitations.
A few, and not horrible, but they exist.
--
Hans Forbrich
Canada-wide Oracle training and consulting
mailto: Fuzzy.GreyBeard_at_gmail.com
------
Thank you for registering for the private Oracle Database XE Discussion
Forum hosted by Tom Kyte. A confirmation email containing the Forum URL
should arrive shortly.
Please note: If you have not received a confirmation email within 24
hours, please verify that the account under which you registered
contains a valid email address. If it does not, please create a new
account and then re-register.
-----
When I go to OTN, I'm still signed in with my account that I've had
since the last century. Ohhhhh... when I go to the forums, I'm a
guest. I click sign in, and now it is there on the discussion forums
page. Wow, wish they would have sent the email. This SSO stuff is too
strange.
Thanks Hans!
Whoa, can't believe they're even contemplating not allowing
archivelogged recoveries...
jg
--
@home.com is bogus.
http://www.signonsandiego.com/uniontrib/20051104/news_1b4guidant.html
I can research inside oracle xe database , but this will be a process
on trail & error . I wonder if anyone did that.
Sent via Archivaty.com
OR ... you could read the documentation. Specifically the 10gR2 "PL/SQL
Packages and Types Reference" and "XML DB Developer's Guide"
> I've just confirmed that the XE provides an internal listener run by
> DBMS_EPG and configured by DBMS_XDB packages. No external Apache, yet the
> DAD and mod_plsql functionality is there, entirely in the DB.
Hans,
are there any docs about that? I tried google, otn and asktom without
success.
Thank you. Kind regards,
--
Cris Carampa (cri...@operamail.com)
Assistente di laboratorio di Iconologia Braille
Facoltà di Irrilevanza Comparata
> HansF wrote:
>
>> I've just confirmed that the XE provides an internal listener run by
>> DBMS_EPG and configured by DBMS_XDB packages. No external Apache, yet the
>> DAD and mod_plsql functionality is there, entirely in the DB.
>
> Hans,
>
> are there any docs about that? I tried google, otn and asktom without
> success.
>
> Thank you. Kind regards,
Oracle Database 10g Release 2
'PL/SQL Supplied Packages and Procedures' manual
DBMS_EPG and DBMS_XDB sections provide the API reference
'XML DB Developer's Guide'
provides the dev overview.
Note that XE does not implement the HTTPS (yet).
--
Hans Forbrich
Canada-wide Oracle training and consulting
mailto: Fuzzy.GreyBeard_at_gmail.com
*** Top posting replies guarantees I won't respond. ***
>
> Note that XE does not implement the HTTPS (yet).
>
This is correct in context of previous posts, however, i would like to
add, UTL_HTTP is available, thus HTTPS *from* XE (plsql webservices,
etc) is possible.
Best regards
Maxim
Thanks. I missed your previous reference to DBMS_EPG, so I was
investigating how to create a DAD with DBMS_XDB, obviously with no success!
Thanks to this article I quickly learned how to create a DAD with DBMS_EPG:
http://www.oracle-base.com/articles/10g/dbms_epg_10gR2.php
Now I'm trying to find a way to store database password in the DAD (just
like mod_plsql) in order to prevent the browser to ask it to the user.
Do you know if this is possibile?
Thanks again. Kind regards,
--
Cris Carampa (cri...@operamail.com)
Assistente di laboratorio di Storia della agricoltura antartica
Facoltà di Irrilevanza Comparata
doc for DBMS_EPG:
http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_epg.htm#BABFFDEH
PlsqlDatabaseUsername's equivalent is listed, but there's a note that says
"The PlsqlDatabasePassword attribute is not needed" -- haven't looked into
it yet, thoug.
++ mcs
> PlsqlDatabaseUsername's equivalent is listed, but there's a note that says
> "The PlsqlDatabasePassword attribute is not needed" -- haven't looked into
> it yet, thoug.
It's not needed because IIUC database username and password are asked by
XDB before to process the URL and pass it to EPG system, so it's not an
EPG thing, it's an XDB thing. I have to investigate further, though.
Thank you. Kind regards,
--
Cris Carampa (cri...@operamail.com)
Supplente di Lingue ugro-romanze
Facoltà di Irrilevanza Comparata