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.