asked on
ASKER
ASKER
Oracle is an object-relational database management system. It supports a large number of languages and application development frameworks. Its primary languages are SQL, PL/SQL and Java, but it also includes support for C and C++. Oracle also has its own enterprise modules and application server software.
TRUSTED BY
Fairly simple. Likely you've gotten this far.
2. Trigger an oracle function
In your API code, after the SOAP call comes in, you do database connect + perform a database activity, like a SELECT, then format the data into a response packet of data.
3. Send a response back
Then return the response.
Tip: If you're doing many complex SELECTs + returning a simple data structure, might be best (in some cases) to build a caching mechanism to transform incoming API calls into cache lookups, then return your SOAP response with no database I/O (disk trash).
You get some big wins if you have 1000s of API calls each second doing the exact same work.