在第一期中我们曾经提到过,安装oracle后,点击http://localhost:8080/的时候会在浏览器中表示xmldb的内容,以下简称webroot。如下图
******************************************************************************
index of /
name last modified size home/
sat, 11 sep 2004 10:40:55 gmt
–
public/
wed, 10 mar 2004 00:45:15 gmt
–
sys/
wed, 10 mar 2004 00:45:31 gmt
–
xdbconfig.xml
wed, 10 mar 2004 00:45:55 gmt
0
******************************************************************************
如何更改其中的内容呢?
我们登录到oracle中,执行如下plsql命令:
declare
res boolean;
begin
res := dbms_xdb.createresource(/home/poorder2.xml,
bfilename(xmldir,poorder2.xml),
nls_charset_id(al32utf8));
end;
其中xmldir是在上期note中建立的directory,确保物理的xmldir目录下存在poorder2.xml文件啊。
执行成功后,访问http://localhost:8080/home/,看到了什么?
如下图:
******************************************************************************
index of /home/
name last modified size poorder2.xml
sat, 11 sep 2004 10:38:29 gmt
8948
test
sat, 11 sep 2004 10:40:53 gmt
8948
******************************************************************************
点击poorder2.xml文件,看到文件的内容了吧,就是刚才执行plsql中所用到的那个xml文件的内容。