5.17 GET_PROXY_SERVER Function
This function retrieves the proxy server attribute of an application.
Syntax
APEX_APPLICATION_ADMIN.GET_PROXY_SERVER (
    p_application_id    IN  NUMBER )
    RETURN VARCHAR2;Parameters
| Parameter | Description | 
|---|---|
| p_application_id | The application ID. | 
Example
The following example returns the value of the application proxy server. The proxy server attribute cannot be more than 255 characters.
DECLARE
    l_proxy_server varchar2(255);
BEGIN
    l_proxy_server := apex_application_admin.get_proxy_server (
        p_application_id => 100 );
END;Parent topic: APEX_APPLICATION_ADMIN