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!

Invoking JasperReportsIntegration with Apache infront of Tomcat using SSL

ade_adekoyaFeb 28 2019 — edited Mar 2 2019

Hello

Environment :

Oracle XE18c

APEX 18.2

ORDS 18.4

Centos Release 7.5

Has anybody installed the JasperReportsIntegration with Apache in front of Tomcat using SSL??

I have enabled SSL for Apache to listen for HTTPS requests on port 443

Tomcat talks to the Apache server via the AJP protocol on Port 8009. All traffic to Apache for the "/ords" folder will be redirected to Tomcat on port 8009, with no access to port 8080. As described in my Apache config section :

<VirtualHost *:443>

...

# proxy ORDS requests to tomcat

ProxyRequests off

ProxyPreserveHost On

\<Location "/ords">

    ProxyPass "ajp://localhost:8009/ords"

    ProxyPassReverse "ajp://localhost:8009/ords"

\</Location>

</VirtualHost>

After I deploy the JasperReportsIntegration.war to the Tomcat webapps directory, I want to understand how I invoke the JasperReportsIntegration homepage.

Do I

(A) Update my Apache config file with

<VirtualHost *:443>

...

# proxy ORDS requests to tomcat

ProxyRequests off

ProxyPreserveHost On

\<Location "/ords">

    ProxyPass "ajp://localhost:8009/ords"

    ProxyPassReverse "ajp://localhost:8009/ords"

\</Location>

\<Location "/JasperReportsIntegration">

    ProxyPass "ajp://localhost:8009/JasperReportsIntegration"

    ProxyPassReverse "ajp://localhost:8009/JasperReportsIntegration"

\</Location>

</VirtualHost>

and invoke via url https://bespokedbsolutions.com/JasperReportsIntegration

How does this effect the port parameter when calling from APEX with https?? Usually set to 8080 which I am not using.

JasperReportIntegration.PNG

OR

(B)

Will this method effect my SSL access?

Regards

Ade

Comments
Post Details
Added on Feb 28 2019
4 comments
611 views