60.28 REMOVE_REQUEST_HEADER Procedure

This procedure removes an HTTP request header (g_request_headers). If the header parameter name does not exist, no error is raised.

Caution:

This procedure may reorder the header entries in g_request_headers.

Syntax

APEX_WEB_SERVICE.REMOVE_REQUEST_HEADER (
    p_name  IN VARCHAR2 )

Parameters

Parameter Description
p_name The name of the header to remove.

Example

The following example removes the "Metadata-Context" header.

BEGIN
    apex_web_service.remove_request_header(
        p_name => 'Metadata-Context');
END;