Reputation: 5651
I have a local install of Oracle XE, APEX 5.0.4.00.12 and ORDS 3.0.6.176.08.46 and I'm following this tutorial http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/apex/r50/Restful%20Services/restful_services.html
I noticed that compared to the tutorial, my instance does not have a Test section. Is this due to a misconfiguration or possibly a version issue?
Upvotes: 1
Views: 1016
Reputation: 5651
Solved it by:
Disabling the default APEX port
EXEC DBMS_XDB.SETHTTPPORT(0);
Turning on ORDS
java -jar ords.war
Upvotes: 0