標籤: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包需要注意的事項