0
Oracle Apex 5.0.3
がOracle 11.0.2 SE 1
で実行されていて、ApexがORDS 3.0.6
で構成されています。 Apache Tomcat 7.0.75
にJasper Report
を設定しました。ジャスパーレポート印刷でno listenerエラーが発生しました
私のOracle Apexアプリケーションでは、Print
ボタンをクリックすると、このエラーが発生します。
ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP",
line 1130 ORA-12541: TNS:no listener
以下は、どのボタンをクリックしているかを示すコードです。
BEGIN
-- call the report and pass parameters
xlib_jasperreports.set_report_url('http://127.0.0.1:8080/JasperReportsIntegration/report');
xlib_jasperreports.show_report (p_rep_name => 'PATH/TO/REPORT_NAME',
p_rep_format => 'pdf',
p_data_source => 'default',
p_out_filename => 'Users_info.pdf',
p_rep_locale => 'en_US'
);
-- stop rendering of the current APEX page
apex_application.g_unrecoverable_error := true;
END;
私は自分のスキーマにACL権限を適切に付与しました。 誰かが逃げた場合、この問題の修正を提案してください。
これには原因がいくつかあります。特に、クライアントのリスナーが起動していません。 –
@ J.Chomel私のリスナーは絶対に実行している、私はリスナーをリロードしましたが、同じエラーが発生します。 –
クライアントは* this very * listenerと呼んでいますか?それとも別のものを使用しようとしていますか? –