READ_RAW is used to read 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. The default value is empty, indicating that as much data as possible is read into data. |