Posts

Showing posts from September, 2021

Oracle ADF 12C : JBO-28102: A request was timed out while waiting for a resource to be returned to the resource pool

Image
Hello Everyone , JBO Exception : JBO-28102 - A Request was timed out while waiting for a Resource Introduction :  In this post, I would like to explain you a generic JBO exception in Oracle ADF that throws an exception when there are no resources available to accommodate the new connection in the connection pool. In my project we have implemented a Web service using Oracle ADF SDO(Service Data Objects) to expose CRUD operations on the Business components. After the deployment in WebLogic server, we started observing the exceptions in server logs with the error message  "JBO-28102 - A Request was timed out while waiting for a Resource". This exception normally happens when there is no available resource to allocate new database connection.  To avoid such exceptions, there are options such as tuning connection pool configurations besides that, Below two other solutions that we have tried to resolve this issue, I believe any one of these will be useful for your us...