Oracle9iAS Portal Developer Kit

proxy_info record structure and table

In the wwctx_api_proxy API package, the proxy_info record contains proxy details and it is returned whenever information about proxies is requested, i.e. by the get_proxy, get_proxy_list and get_default_proxy functions.

Note: For security reasons, this record does not contain authorization information but it does contain default proxy information.

The proxy_info record structure is:

type proxy_info is record
(
  id varchar2(32),
  host_name varchar2(2000),
  port_number number,
  default_proxy boolean
);

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.

Datatype: varchar2

port_number

The port number of the proxy server.

Datatype:number

default_proxy

Indicates whether the proxy is to be used as the default proxy for all non-provider HTTP connections made by Portal.

Datatype: boolean

Table containing proxy details:

type proxy_info_tab is table of proxy_info index by binary_integer;

Related topics

The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio