So I want to communicate with an OracleDB through my Android app. Allowing users to update the tables in the DB from their mobile phone. Currently this application is running in desktop form using a JSP file. I want to transition this JSP file to work with Android. I’ve read I could connect directly to the OracleDB although this is not generally acceptable for obvious security reasons. My question is could I use the existing JSP file with android and interact with the server through that? How would I make a GET request to the JSP file so I can call upon certain info to be downloaded from server and populate fields in my app? Thank you.
Share
Honestly, I’d drop the JSP and look at a Web Service to the database through the Apex Listener.
Examples here and here