5.29 SET_PROXY_SERVER Procedure

This procedure sets the proxy server attributes of an application.

Syntax

APEX_APPLICATION_ADMIN.SET_PROXY_SERVER (
    p_application_id   IN NUMBER,
    p_proxy_server     IN VARCHAR2 ,
    p_no_proxy_domains IN VARCHAR2 DEFAULT NULL )

Parameters

Parameter Description
p_application_id The application ID.
p_proxy_server

The proxy server. There is no default value.

The proxy server must be fewer than 255 characters and must exclude any protocol prefix such as http://. The following example is valid: www-proxy.example.com

p_no_proxy_domains Comma-delimited list of domains for which the proxy server is invalid. Default value is null. Must be fewer than 500 characters.

Example

The following example sets the value of the proxy for an application.

BEGIN
    apex_application_admin.set_proxy_server ( 
        p_proxy_server => 'www-proxy.example.com' );
END;