Database Administration (MOSC)

MOSC Banner

utl_http

Hi,

on 11.2.0.4 on AIX

I followed oracle note 1375312.1. Created functions as said and ran:

set serverout on

declare

  request clob;

  xmlrequest xmltype;

  response clob;

  xmlresponse xmltype;

  data clob;

begin

  for i in 1..1000 loop

    request := request||'ABCDEFGH';

  end loop;

  response := PostRecClob('http://Your_URL/YourServlet', request);

  dbms_output.put_line(response);

end;

/

It only showed :

PL/SQL procedure successfully completed.

What should it show normaly?

What should I add to my code to have something more understandable?

If I run

http://Your_URL/YourServlet

in a browser in Windows I have a web page.

Thanks and regards.

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center