ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling
complimentary technical Workshops on Database Security for the first 30
Oracle Database customers located anywhere in North America, EMEA, LATAM, or
APAC that send an email to
asra_us@oracle.com. Request a Workshop for
your organization today.
Purpose
The DBMS_XDB package supports the following features:
Resource Management subprograms which complement Resource Views
The Access Control List (ACL)-based Security Mechanism
Configuration Session Management
Creation of the XDB username
The DBMS_XDB package subprograms and constants are deprecated with Oracle Database 12c but still present in 21c.
While all features continue to be supported for backward compatibility, Oracle recommends that you use the alternative procedures provided in each case as identified below.
Retrieves the parameters of a listener end point corresponding to the XML DB HTTP server. The parameters of both HTTP and HTTP2 end points can be retrieved by invoking this procedure.
In 12c this proc is deprecated and replaced by DBMS_XDB_CONFIG.GETLISTENERENDPOINT.
dbms_xdb.getListenerEndPoint(
endpoint IN NUMBER,
host OUT VARCHAR2,
port OUT NUMBER,
protocol OUT NUMBER);
Sets the parameters of a listener end point corresponding to the XML DB HTTP server. Both HTTP and HTTP2 end points can be set by invoking this procedure.
In 12c this proc is deprecated and replaced by DBMS_XDB_CONFIG.SETLISTENERENDPOINT.
dbms_xdb.setListenerEndPoint(
endpoint IN NUMBER,
host IN VARCHAR2,
port IN NUMBER,
protocol IN NUMBER);
Restricts listener end points of the XML DB HTTP server to listen only on the localhost interface if TRUE or to all listener end points if FALSE.
In 12c this proc is deprecated and replaced by DBMS_XDB_CONFIG.SETLISTENERLOCALACCESS.
dbms_xdb.setListenerLocalAccess(l_access IN BOOLEAN);