Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Apec call jasper report

ma434554anJan 26 2018 — edited Jan 27 2018

dears,

am using apex 5.1

when i call jasper report using process:

begin begin

  xlib_jasperreports.set_report_url(:G_REPORT_URL);

  xlib_jasperreports.show_report (p_rep_name                   => 'report9',

                                   p_rep_format                 => 'pdf',

                                   p_data_source                => 'default',

                                  -- p_out_filename               => :p5_out_filename,

                                   p_rep_locale                 => 'en_us',

                                   p_rep_encoding               => 'utf-8',

                                   p_additional_params          => 'POL_ID='

                                  ||Apex_util.url_encode (:P114_ID)

                                  );

  apex_application.g_unrecoverable_error := true;

/*

exception

  when others then

    xlog('PRC_SHOW_REPORT_TUNNEL', sqlerrm, 'ERROR');

    raise;

*/

end;

end;

i got below error

ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1369 ORA-29263: HTTP protocol error

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 24 2018
Added on Jan 26 2018
2 comments
494 views