Configuration of ORDS: Standalone, Tomcat, and WebLogic on Windows Step-by-Step
If you did not install Oracle database 23ai and Apex24.2 you can first use the below link to install them and then back here to install and config ORDS.
How we can Install APEX 24.2 and Oracle Database 23ai on Windows Step by Step:
👀Watch The below video in my YouTube channel about Installation of Oracle Database 23ai and APEX 24.2 on Windows Step-by-Step
Why Do We Need ORDS for APEX?
Oracle ORDS (Oracle REST Data Services) is a middle-tier application that enables RESTful web services for Oracle databases. It is essential for running Oracle APEX (Application Express) because APEX is a web-based application development platform that needs a web server to handle HTTP requests.We need it because APEX does not include a built-in web server. It acts as a bridge between an Oracle Database and web applications, allowing developers to expose database objects as RESTful APIs. Without ORDS, APEX applications would not be accessible via a web browser.
✹ ORDS can run in standalone mode or be deployed on Tomcat, and WebLogic. here in This article you will learn about each one and configuration step by step.
- Installation & Configuration of ORDS Standalone Mode
This way of deployment ORDS is Simple to set up and manage and it is Suitable for small-scale deployments.
It should be mentioned you need JDK.
create a folder in your words folder for example ords_config.this is [path for config files] .
java -jar ords.war --config [path for config files] install
as database servicename:FREEPDB1
database user: sys as sysdba
in the next step for changing apex static resources location write 9 and then give the path of image folder of apex apex/images
- Deploy ORDS on Apache Tomcat
It is Suitable for mid-size applications-scale.Provides better security and performance than standalone mode.
- Deploy ORDS on Oracle WebLogic Server
Comments
Post a Comment