3.17 GET_REMOTE_SERVER_HTTPS_HOST Function
Use this function to get the HTTPS Host property to be used for a given remote server during application import.
Syntax
APEX_APPLICATION_INSTALL.GET_REMOTE_SERVER_HTTPS_HOST(
    p_static_id IN VARCHAR2)
RETURN VARCHAR2;Parameters
Table 3-3 GET_REMOTE_SERVER_HTTPS_HOST Parameters
| Parameter | Description | 
|---|---|
| 
 | Static ID to reference the remote server object. | 
Example
declare
    l_https_host varchar2(255);
begin
    l_https_host := apex_application_install.get_remote_server_https_host( 'MY_REMOTE_SERVER' );
end;See Also:
Parent topic: APEX_APPLICATION_INSTALL