ORA-29270: Too Many Open HTTP Requests
(Doc ID 1397117.1)
Last updated on DECEMBER 18, 2019
Applies to:
PL/SQL - Version 10.2.0.4 and laterInformation in this document applies to any platform.
***Checked for relevance on 26th Dec 2018***
Symptoms
The following procedure is producing an error.
FUNCTION RunThis(.....) AS
...
utl_http.set_header(http_req, 'Content-Type', 'text/xml');
utl_http.set_header(http_req, 'Content-Length', LENGTH(env));
utl_http.write_text(http_req, env);
utl_http.set_header(http_req, 'Host', 'localhost:443');
...
...
utl_http.set_header(http_req, 'Content-Type', 'text/xml');
utl_http.set_header(http_req, 'Content-Length', LENGTH(env));
utl_http.write_text(http_req, env);
utl_http.set_header(http_req, 'Host', 'localhost:443');
...
Error being encountered:
ORA-29270: TOO MANY OPEN HTTP REQUESTS
Changes
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Changes |
Cause |
Solution |