oracle-ords

Oracle REST Data Service apex_pu

旧街凉风 提交于 2020-12-06 12:37:50
问题 I tried to install Oracle REST Data Service and I got this error: (on java -jar ords.war install ) SEVERE: The pool named: apex_pu is not correctly configured, error: ORA-01017: invalid username/password; logon denied oracle.dbtools.common.jdbc.ConnectionPoolException: The pool named: apex_pu is not correctly configured, error: ORA-01017: invalid username/password; logon denied at oracle.dbtools.common.jdbc.ConnectionPoolException.badConfiguration(ConnectionPoolException.java:88) at oracle

Oracle REST Data Service apex_pu

假如想象 提交于 2020-12-06 12:36:09
问题 I tried to install Oracle REST Data Service and I got this error: (on java -jar ords.war install ) SEVERE: The pool named: apex_pu is not correctly configured, error: ORA-01017: invalid username/password; logon denied oracle.dbtools.common.jdbc.ConnectionPoolException: The pool named: apex_pu is not correctly configured, error: ORA-01017: invalid username/password; logon denied at oracle.dbtools.common.jdbc.ConnectionPoolException.badConfiguration(ConnectionPoolException.java:88) at oracle

How to make a POST request with ORDS?

我们两清 提交于 2019-12-24 23:19:22
问题 I want to insert a new item with a POST request in ORDS application express. I created my handler like this : Then with android studio, I use volley to create a JSONObject (& the request at the same time) : JSONObject jsonBody = new JSONObject(); jsonBody.put("name", name); jsonBody.put("genres", genres); jsonBody.put("season", season); jsonBody.put("episodes", nb_episodes); jsonBody.put("rating", "0"); final String requestBody = jsonBody.toString(); I also tried this request with postman :

How do I pass a list in url for a REST api?

雨燕双飞 提交于 2019-12-24 23:08:33
问题 I am trying to pass a list of IDs to a REST api (apex ords). I have a url like this : https://apex.oracle.com/***/apex/anime_keeper/ak/getAnimeList/:ids when I do : https://apex.oracle.com/***/apex/anime_keeper/ak/getAnimeList/1 I get the item with id = 1 but if I do : https://apex.oracle.com/***/apex/anime_keeper/ak/getAnimeList/1,2,3 I get a 500 Internal Server Error How should I format my url so I can use the 1,2,3 list in a where id in (ids) in apex ords? this is a screenshot of ords if

Oracle Rest Data Service (ORDS) URL link

无人久伴 提交于 2019-12-12 04:15:14
问题 I have installed ORDS 3.0 on Centos 7 and using it in standalone mode, but I am currently having two issues: The URL contains /ords, e.g.: http://localhost/ords. I want to change it to /apex instead. I have tried renaming ords.war to apex.war, but the URL hasn't changed. I am unable to start ORDS at system boot. I have created a systemctl service for it, but ORDS stops after starting. 回答1: The specific version of ORDS can be important, things do change quite a bit from version 3.0 to 3.9 for

Can't get Oracle ORDS to serve a request with APEX 5 restful services and Oracle XE11g

空扰寡人 提交于 2019-12-11 14:34:01
问题 I'm using Oracle 11g XE, I installed the latest version of APEX (5) on it and now I'm trying to use the restful services options to expose my tables via rest. I've downloaded ORDS and followed the instructions here to install and run it as standalone. I create a rest service in apex but I don't know how to test it - I've tried various URLS and not got any response! My apex is installed as http://localhost:8080/apex/ On startup ORDS appears to suggest that it maps to /ords but this doesn't

File uploads in a non-Apex PL/SQL application migrated to ORDS

戏子无情 提交于 2019-12-06 13:49:08
问题 The official Oracle document 1982130.1 describes the missing feature that currently prevents us from migrating from mod_plsql to ORDS: Migrate a Non-Apex PL/SQL application from Oracle HTTP Server to Oracle REST Data Services (ORDS) 2.0.9. When running the PL/SQL application with Oracle REST Data Services, got the following error message: "ORA-20888: p_application_id must be provided" error in catalina.out regardless of the value of that parameter. What are others doing to migrate a non-Apex

File uploads in a non-Apex PL/SQL application migrated to ORDS

≡放荡痞女 提交于 2019-12-04 19:54:08
The official Oracle document 1982130.1 describes the missing feature that currently prevents us from migrating from mod_plsql to ORDS: Migrate a Non-Apex PL/SQL application from Oracle HTTP Server to Oracle REST Data Services (ORDS) 2.0.9. When running the PL/SQL application with Oracle REST Data Services, got the following error message: "ORA-20888: p_application_id must be provided" error in catalina.out regardless of the value of that parameter. What are others doing to migrate a non-Apex application from mod-plsql to ORDS? ORDS 18.3+ the logic changed to make it easier for non-apex. Here's