#9 REST Standalone batch

To Run  ORDS ,REST services must be up all time.
This can be achieved by running ORDS in standalone, deploying on Weblogic, using Apache tomcat...etc

To run ORDS in standalone mode go to this previous post 
  Here's tiny batch file to manually starting ORDS service :

  1. Suppose you have installed  JDK in the path : c:\Program Files\Java\jdk1.8.0_152\bin>java
  2. And you downloaded ORDS, and extracted to : d:\Oracle\ords\ords.war
  3. Open Notepad and add the following code :

@echo off

CD c:\Program Files\
CD Java\jdk1.8.0_152\bin\
CALL java -jar D:\Oracle\ords\ords.war
pause


4. Save file as : Start_ORDS.bat
you are done, To run ORDS anytime you just double click this Start_ORDS.bat file

That's all it.

No comments:

Post a Comment

Remove unused Layouts in Oracle Apex

 Tables used : APEX_XXXXXXX.WWV_FLOW_REPORT_LAYOUTS APEX_XXXXXXX.WWV_FLOW_SHARED_QUERIES use the following query to delete unused Layouts. ...