|  Previous |  Next | 
This procedure is used to set the proxy server attributes of an application to be imported.
Syntax
APEX_APPLICATION_INSTALL.SET_PROXY (
    p_proxy IN VARCHAR2);
Parameters
Table: SET_PROXY Parameters describes the parameters available in SET_PROXY procedure.
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:  | 
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;