8.49 SET_PROXY Procedure
This procedure sets the proxy server attributes of an imported application.
Syntax
APEX_APPLICATION_INSTALL.SET_PROXY (
    p_proxy            IN VARCHAR2,
    p_no_proxy_domains IN VARCHAR2 DEFAULT NULL );Parameters
| Parameter | Description | 
|---|---|
| p_proxy | 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  The following is a valid example:  | 
| p_no_proxy_domains | Default null. The list of domains for which the proxy server can not be used. | 
Example
The following example sets the value of the proxy attribute for app 100 to www-proxy.example.com.
                  
BEGIN
  apex_application_install.set_proxy( p_proxy => 'www-proxy.example.com' );
END;
/
@f100.sqlParent topic: APEX_APPLICATION_INSTALL