Reputation: 12484
I'm curious about how to use Oracle APEX. Is there a way to manage the data I put there(say in a sample table "Employees" ) via an external web page ?
So far , I found this site regarding how to implement a web service
Sorry if this is a little vague, I'm new to apex and have no idea where to start. any tips appreciated, thanks
Upvotes: 0
Views: 98
Reputation: 188
can you give more details abou your needs oracle apex is a flexible platform on integration with its oracle infrastructure
if you are new to it, for seeing its standalone capability you can check examples in oracle web site or internet
for integration of it to third party systems you can use different methods like
1 you can embed a third party web page to your application by using iframe code structure like below https://community.oracle.com/thread/2622038?start=0&tstart=0
2 or you can use javascript for poping up a third party site when an action occurs like pressing a button
3 for authentication you can use LDAP integrations and find details by doing a search at internet by using oracle apex custom authentication schema
4 for getting data from third party service you can use web services as you find
5 for publishing data from apex to other system you can use REST interface
6 for single sign on mechanism you can use oauth mechanism
etc.
Upvotes: 1