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

來源:互聯網
上載者:User

標籤:out   bsp   not   錯誤   type   failed   res   url   pass   

總結下幾次使用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 failedORA-06512: at "SYS.UTL_HTTP", line 1231ORA-29263: HTTP protocol errorORA-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;

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.