使用oracle utl_http包需要注意的事项

转:http://blog.chinaunix.net/uid-411974-id-2167853.html

总结下几次使用utl_http包遇到的几个问题

关于utl_http包功能还是很强大的 可以通过他来捕捉网站页面的内容 或者调用一个url的接口完成某项功能
Eg:
declare
  req  UTL_HTTP.REQ;
  resp UTL_HTTP.RESP;
  v_text varchar2(4000);
begin
  --here you can insert other code even procedure or funciton
  --my codeing is etl monitor
  v_text := etl_monitor; --this is the etl monitor procedure
  if v_text is not null then
  req  := UTL_HTTP.BEGIN_REQUEST('http://192.168.xxx.xxx/pass/web/alertsms.php?data=' ||
                                 v_text);
  resp := UTL_HTTP.GET_RESPONSE(req);
  utl_http.end_response(resp);
  end if;

EXCEPTION
  WHEN utl_http.end_of_body THEN
    utl_http.end_response(resp);
end;
使用它来发送短信(告警) 注意这里可以再嵌套其他代码甚至是过程或函数
今天在调试上述代码时总是抛出:
declare
*
ERROR at line 1:
ORA-29273: HTTP request failed
ORA-06512: at "SYS.UTL_HTTP", line 1231
ORA-29263: HTTP protocol error
ORA-06512: at line 11
这个错误 测试半天发现是v_text文本内容中含有空格 是调用的接口程序不允许含有空格字符~汗!

第二个 关于有时中文乱码:
declare
  req  UTL_HTTP.REQ;
  resp UTL_HTTP.RESP;
  val  varchar2(32767);
begin

  req := UTL_HTTP.BEGIN_REQUEST('xxx');
  utl_http.set_header(req, 'Content-Type', 'text/html; charset=utf-8');--add this
  resp := UTL_HTTP.GET_RESPONSE(req);
  utl_http.read_line(resp, val, true);
  utl_http.end_response(resp);
  dbms_output.put_line(val);

EXCEPTION
  WHEN utl_http.end_of_body THEN
    utl_http.end_response(resp);
end;


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值