UTL_HTTP ORA-29270

  • 19 December 2023
  • 1 reply
  • 86 views

Userlevel 1
Badge +7

Hello All,

 

İ try to use utl_http get method , but even I end my request and response i take too many requests were open error . Could you suggest me what İ shoul do .

 

 

utl_http.end_request(req);
utl_http.end_response(resp);


1 reply

Userlevel 1
Badge +7

Hello ,

I solve this problem with this code , thanks;

 

WHEN UTL_HTTP.REQUEST_FAILED THEN
UTL_HTTP.END_RESPONSE(resp);

Reply