Questions tagged [utl-http]

19 questions
0
votes
1 answer

Send huge data through post request from oracle database

I am trying to send data via an HTTP post request from Oracle using UTL_HTTP. The code is like this: REQ :=…
kikicoder
  • 383
  • 3
  • 16
0
votes
1 answer

Oracle UTL_HTTP bad request with ngixx

I've a ngnix as a reverse proxy with the next entry: location /jrri/ { proxy_pass http://xxx.xxx.xxx.xxx:8080/; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For…
Pedro Luque
  • 164
  • 2
  • 13
0
votes
1 answer

utl_http.HTTP_CONTINUE example

I would like to use "utl_http.HTTP_CONTINUE" on my pl sql code. But I could not find any example how to use this. Can anyone help me about how to use "utl_http.HTTP_CONTINUE" during calling rest api from pl sql side?
AliMusa
  • 53
  • 1
  • 8
0
votes
1 answer

Oracle UTL_HTTP request returns a shorter response than when the same request is done in Python or curl

I'm accessing a REST service for data query and download. This is the very first call that performs the authentication. The response is a json structure that contains an authentication token. When I do this call with curl ... $ curl -v -X POST…
Albert Godfrind
  • 1,978
  • 1
  • 12
  • 20
1
2