Oracle Database 26ai will be available on generic Linux platforms in January and soon on AIX and Windows
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 23ai.
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.
dbms_xdb.getListenerEndPoint(
endpoint IN NUMBER,
host OUT VARCHAR2,
port OUT NUMBER,
protocol OUT NUMBER);
Deprecated in 12c: Use DBMS_XDB_CONFIG.GETLISTENERENDPOINT
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.
dbms_xdb.setListenerEndPoint(
endpoint IN NUMBER,
host IN VARCHAR2,
port IN NUMBER,
protocol IN NUMBER);
Deprecated in 12c: Use DBMS_XDB_CONFIG.SETLISTENERENDPOINT