Hi,

I have a stored procedure that uses UTL_HTTP for sending XMLs, which runs fine.
When I attempt to execute it in background by submitting it as a job using DBMS_JOB, I get:

ORA-29273: HTTP request failed
ORA-06512: at "SYS.UTL_HTTP", line 1227
ORA-29276: transfer timeout

So, this runs fine:
begin
proc; -- UTL_HTTP is called inside this.
end;


And this fires the exception:
declare
x number;
begin
dbms_job.submit(x, 'begin proc; end;');
end;
/

commit
/


Oracle9i Enterprise Edition Release 9.2.0.8.0.

Any Ideas?