Showing posts with label Proxy. Show all posts
Showing posts with label Proxy. Show all posts

Monday, July 10, 2017

JDev/ADF sample - ADF 12c BC Proxy User DB Connection and Save Point Error

  • ADF 12c BC Proxy User DB Connection and Save Point Error. If you are modernising Oracle Forms system, high chance you need to rely on DB proxy connection. Read more about it in my previous post for ADF 11g - Extending Application Module for ADF BC Proxy User DB Connection. It works in the same way for ADF 12c, but there is issue related to handling DB error, when DB proxy connection is on. DB error is propagated to ADF but is being substituted by save point error (as result - user would not see original error from DB). It seems like related to JDBC driver in 12c. The workaround is to override ADF SQL builder class and disable save point error propagation (there might be better ways to workaround it).
    Download - AMExtendApp_v3.zip

Tuesday, March 20, 2012

JDev/ADF sample - Testing ADF BC Proxy User DB Connection in Multi-User Environment

    Download - AMExtendApp_v2.zip

Thursday, March 8, 2012

JDev/ADF sample - Extending Application Module for ADF BC Proxy User DB Connection

  • Extending Application Module for ADF BC Proxy User DB Connection. n this post I will describe how to retrieve database connection for ADF BC proxy user connection. I will provide best practice as well, how to implement Common AM and extend your local AM with common functionality. In the next post will test how ADF BC proxy user approach works when database connection pooling is enabled. We are using proxy user connection approach, when there is requirement to login into database with Web user. Such connection can be established through JDBC Data Source proxy user.
    Download - AMExtendApp.zip