I’m configuring Oracle APEX 24.2 with ORDS 24.4 deployed on WebLogic 14c. I followed the standard steps to create and deploy i.war
for APEX static files:
✅ Verified IMAGE_PREFIX
is set to /i/
using:
SELECT APEX_INSTANCE_ADMIN.GET_PARAMETER('IMAGE_PREFIX') FROM DUAL;
✅ Then created i.war
using:
jar cMf i.war <apex_directory>
✅ Deployed i.war
through WebLogic Admin Console.
But when accessing APEX via https://<server>:<port>/ords
, the images are not loading properly.
❓ Do I need to update any context-root settings or mappings in WebLogic for /i/
?
❓ Is there a different approach for serving static files in ORDS 24.4 with WebLogic?
Appreciate any help or guidance from the community!
