|
In the wwctx_api_proxy API package,
the proxy_record contains properties of a proxy and it is used when adding/editing
proxy settings, i.e. by the add_proxy, edit_proxy
and delete_proxy methods.
The proxy_record record structure is:
type proxy_record is record
(
id varchar2(32),
host_name varchar2(2000),
port_number number,
username varchar2(200,
password varchar2(4000),
realm varchar2(4000)
);
|
Version: Oracle9iAS Portal
9.0.2 or later
|
|
Field names and definitions
|
|
id
|
A unique identifier for the Proxy. This identifier is allocated
by Oracle Portal.
Datatype: varchar2
|
|
host_name
|
A name for the proxy host.
The format of the host name should be host.domain.com.
If http or https is included before the
host name, it is removed.
Datatype: varchar2
|
|
port_number
|
The port number of the proxy server.
Datatype:number
|
|
username
|
Username for connecting to the proxy, if the proxy is secure.
Note: Not currently used.
Datatype: varchar2
|
|
password
|
Password for connecting to the proxy, if the proxy is secure.
Note: Not currently used.
Datatype: varchar2
|
|
realm
|
Specifies the authorization space for the proxy. The value of
this string is assigned by the proxy server.
Note: Not currently used.
Datatype: varchar2
|
Table containing a list of proxy records:
type proxy_record_tab is table of proxy_record index by
binary_integer;
|