Close the user session and fix the problem.
The internal limit is 5 HTTP requests.
Perhaps the problem is the lack of: utl_http.end_response
or an exception in the application, not closure from the resp object.
change the code as follows:
EXCEPTION
WHEN UTL_HTTP.TOO_MANY_REQUESTS THEN
UTL_HTTP.END_RESPONSE(resp);
source
share