Discussions
Categories
- 197K All Categories
- 2.5K Data
- 546 Big Data Appliance
- 1.9K Data Science
- 450.8K Databases
- 221.9K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 552 MySQL Community Space
- 479 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.1K ORDS, SODA & JSON in the Database
- 556 SQLcl
- 4K SQL Developer Data Modeler
- 187.2K SQL & PL/SQL
- 21.4K SQL Developer
- 296.4K Development
- 17 Developer Projects
- 139 Programming Languages
- 293.1K Development Tools
- 111 DevOps
- 3.1K QA/Testing
- 646.1K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 161 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.2K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 19 Java Essentials
- 162 Java 8 Questions
- 86K Java Programming
- 81 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 205 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 475 LiveLabs
- 39 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 175 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 233 Portuguese
ORDS 22.2: Missing uploaded app's images on https

Hello
I'm running a local server with oracle 21xe + apex 22.1. If I set ORDS 22.2 to connect through https the images uploaded to the application are not shown. All the rest of the apex's images are shown ok. If I switch back to http all works fine.
Within the affected server all the workspaces show the same issue only on https
I moved the same application to another server with the same versions of DB/APEX/ORDS and all works fine on https
The only difference between both servers is that, in the server which do not show the images, the DB is published on port 1539 and the other, where the application works fine, the DB is published using the standard 1521 port.
Tried also to check log files, but nothings comes up.
Appreciate any comment.
W
Best Answer
-
If you clear browser cache, does images still show when you use HTTP connection?
Configure HTTPS, open browser developer tools and reproduce issue. See browser developer tools Network tab if there is failed request and what is payload and response for those.
Answers
-
If you clear browser cache, does images still show when you use HTTP connection?
Configure HTTPS, open browser developer tools and reproduce issue. See browser developer tools Network tab if there is failed request and what is payload and response for those.
-
Hello Jariola
If you clear browser cache, does images still show when you use HTTP connection? -> Yes, after clean up the cache, in http the images are shown as expected. Tried in other browsers and all show the same result.
If I click over the broken image ORDS show this:
- An unexpected error with the following message occurred: java.net.URISyntaxException: Illegal character in hostname at index 13: https://surus_int.xcampus.com:8443/ords
And in the console (running ords standalone) this is shown:
2022-07-31T11:32:02.795Z SEVERE <qD4QgLDGtg4IvDQXNTagmg> GET surus_int.xcampus.com /ords/r/surus_dev/100/files/static/v48/surus_1.png 500 An unexpected error with the following message occurred: java.net.URISyntaxException: Illegal character in hostname at index 13: https://surus_int.xcampus.com:8443/ords
Checking the name of the server cname I noticed the underscore, which actually was the cause of the error. After modify the cname to surusint.xcampus.com all is working fine.
Thanks for your comment.