The READ_RAW procedure reads binary data from the HTTP response body.
Note
This system package is introduced in V4.4.1.
Syntax
UTL_HTTP.READ_RAW(
r IN OUT NOCOPY resp,
data OUT NOCOPY RAW,
len IN PLS_INTEGER DEFAULT NULL);
Parameters
Parameter |
Description |
|---|---|
| r | The HTTP request. |
| data | The binary data read from the HTTP response body. |
| len | The number of bytes to read. If not specified, it reads as much data as possible into data. |
