Use this procedure to set the proxy server attributes of an application to be imported.
Syntax
APEX_APPLICATION_INSTALL.SET_PROXY (
    p_proxy            IN VARCHAR2,
    p_no_proxy_domains IN VARCHAR2 DEFAULT NULL );
Parameters
Table 3-11 SET_PROXY Parameters
| Parameter | Description | 
|---|---|
| 
 | The proxy server. There is no default value. The proxy server cannot be more than 255 characters and should not include any protocol prefix such as http://. A sample value might be:  | 
| 
 | The list of domains for which the proxy server should not be used. There is no default value. | 
Example
The following example sets the value of the proxy variable in APEX_APPLICATION_INSTALL.
declare
    l_proxy varchar2(255) := 'www-proxy.company.com'
begin
    apex_application_install.set_proxy( p_proxy => l_proxy );
end;
See Also:
Parent topic: APEX_APPLICATION_INSTALL