Oracle9i Supplied PL/SQL Packages and Types Reference
Release 1 (9.0.1)

Part Number A89852-02
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback

Go to previous page Go to beginning of chapter Go to next page

UTL_HTTP , 39 of 59


GET_HEADER Procedure

This procedure returns the nth HTTP response header name and value returned in the response.

Syntax

UTL_HTTP.get_header (

r  IN OUT NOCOPY resp,
n  IN PLS_INTEGER,
name  OUT NOCOPY VARCHAR2,
value  OUT NOCOPY VARCHAR2);

Parameters

Table 78-39 shows the parameters for the GET_HEADER procedure.

Table 78-39 GET_HEADER Procedure Parameters
Parameter  Description 
r (IN/OUT)
 

The HTTP response. 

n (IN)
 

The nth header to return. 

name (OUT)
 

The name of the HTTP response header. 

value (OUT)
 

The value of the HTTP response header. 

Usage Notes

If the response body returned by the remote Web server is encoded in chunked transfer encoding format, the trailer headers that are returned at the end of the response body will be added to the response, and the response header count will be updated. You can retrieve the additional headers after the end of the response body is reached and before you end the response.


Go to previous page Go to beginning of chapter Go to next page
Oracle
Copyright © 1996-2001, Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback