I find that if I call UTL_HTTP.GET_RESPONSE
and get an error response (500 in this case), when I call UTL_HTTP.READ_TEXT
it fails with ORA-29261: bad argument
. How can I see the response body when there is an error?
相关问题
- Angular RxJS mergeMap types
- Google Apps Script: testing doPost() with cURL
- How to instantiate Http service in main.ts manuall
- C#使用http访问网络,有办法用指定网卡访问网络嘛?
- Can I skip certificate verification oracle utl_htt
The solution ended up being to call
before making the request.
What I've done in the past is to read through the headers and then do a read_line to get the individual response lines: