Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: does utl_http work ?

Re: does utl_http work ?

From: Jining Han <hanj_at_mailcity.com>
Date: Tue, 02 Jan 2001 21:27:00 GMT
Message-ID: <92th2q$jd0$1@nnrp1.deja.com>

It is working for us. We are running 8.1.6 on HP. (64-bit Enterprise Edition need bug fix 1332748, though).

In article <3A51FEFB.86034D1E_at_eli.net>,
  Frank_Calfo <frank_calfo_at_eli.net> wrote:
> I'm testing the utl_http.request() method with this procedure:
>
> procedure sp_http_test
> as
> rc VARCHAR2(4000);
> begin
> rc := utl_http.request('http://www.google.com/');
> dbms_output.put_line('result = ' || SUBSTR(rc, 1, 100));
> exception
> WHEN UTL_HTTP.REQUEST_FAILED THEN
> DBMS_OUTPUT.PUT_LINE ('HTTP Request Failed!');
> WHEN UTL_HTTP.INIT_FAILED THEN
> DBMS_OUTPUT.PUT_LINE ('HTTP initialization failed!');
> end;
>
> this works fine the first time I call the procedure
> but the second time I call it, I lose my connection to Oracle from the
> utility I'm using (TOAD and PowerBuilder) to call the procedure
>
> is utl_http in Oracle 8.0.6.0.0 reliable enough to use?
>
>

--
Jining Han
Sallie Mae


Sent via Deja.com
http://www.deja.com/
Received on Tue Jan 02 2001 - 15:27:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US