1

We are running 12.1.0.2 OEE

We are Getting intermittent Ora error while executing a rest call from SP

[Error] Execution (124: 1): ORA-29273: HTTP request failed

ORA-29276: transfer timeout

ORA-06512: at "SYS.UTL_HTTP", line 1258

ORA-06512: at "EDB.GET_EXPECTED_VALUES_914", line 57

ORA-06512: at line 12

What we tried:

We changed default timeout to:

UTL_HTTP.SET_TRANSFER_TIMEOUT(896000);

It worked for sometime and now we started getting this time_our error again.

The time_out occurs in 1.5 minute that means it does not respect the parameter in UTL_HTTP.SET_TRANSFER_TIMEOUT(896000).

daimne
  • 47
  • 1
  • 6

1 Answers1

1

The issue was in the network performance that fluctuated.

UTL_HTTP.SET_TRANSFER_TIMEOUT(896000) - modify default 60 sec timeout

and must be set before initiating rest call, other wise the following notation:

UTL_HTTP.SET_TRANSFER_TIMEOUT(req,896000).

daimne
  • 47
  • 1
  • 6