weblogic « Connection « Java Database Q&A





1. Application using Pooled JDBC Connections    stackoverflow.com

I'm working with a legacy WebLogic application that contains a web-service application and a standalone, command-line application. Both need access to a common database and I would like to try ...

2. Restrict access to connection pool in Weblogic?    stackoverflow.com

In short, how can I restrict access to connection pool X based on application name or JAR name? A simple use case might help... A business web-app (call it WEB_APP_A) uses pool ...

3. How can I get Weblogic to connect to a RedBrick database?    stackoverflow.com

I am trying to get Weblogic 9.2.3 to talk to a legacy RedBrick database and am having trouble. I have the redbrick.jar file from the software installation and have added ...

4. 'The user must supply a JDBC connection' on weblogic restart    stackoverflow.com

I am using Weblogic 11. After initial deployment of all JMS configurations, JDBC configuration (from XADS-jdbc.xml) and ears everything works properly. But after weblogic restart application fails to initialize with error

Caused By: java.lang.UnsupportedOperationException: ...

5. JDBC connection in Weblogic    coderanch.com

6. WebLogic Connection Pools and VARRY    coderanch.com

We are using weblogic JDBC connection pools in a clustered environment. The stored procs are taking VARRAY's as parms. There seems to be an issue with BEA 7.0 spk2 and earlier - according to our vendors who are working on the project, there seem to be issues with the binding of VARRAY types with WLS drivers. The question is: 1. Could ...

8. Help - Data visibility in Weblogic and JDBC connection problem    coderanch.com

Hi I have a user managed transaction. I am inserting a record in database using a weblogic connection (ejbCreate method of CMP Bean). In the same transaction, I open a JDBC connection from the same class. I am trying to access the records inserted using the weblogic connection through the JDBC connection. I am not able to view the records in ...

9. WebLogic 8.1 Connection Pools - # of Connections always 0    coderanch.com

Hello, Just wondering if anyone could explain to me why after I set the initial number of connections for my Weblogic 8.1 connection pools to be 5, the monitor says there are 0 connections. I thought maybe it was because I was using Cloudscape, and the Cloudscape evaluation only allows 1 connection. However, I tried it with SQL Server, and I ...





10. database connection pooling with weblogic 8.1    coderanch.com

Hai All, I am new to weblogic database connection pooling. I am using Weblogic8.1 and want to use connection pooling to get a jdbc connection. my database server is Oracle 8.1.7. Things which i have done using the weblogic admin console. ---------------------------------------------------------- I have created a Jdbc connection pool named myconnectionpool. I have created a datasource named mydatasource. and named the ...

11. connection releasing problem in weblogic.    coderanch.com

If you close your connection using conn.close() it will be returned to the pool, but the actual connection will not necessarily be released. However, when you get a new connection from the pool this previous connection might be used again, eliminating the overhead of actually creating a new connection. You can specify the preferred and maximum number of active connections, as ...

12. How can i use weblogic Connection pool?    coderanch.com

Hi Friends, How Can i use the weblogic pooling system in my application. That means i want to use the connection pool of weblogic which is used by the weblogic to maintain the server. Is it possible? If yes could you please give me the clear picture..How can i proceed. Thanks T. Shankar Reddy

13. Weblogic connection pool question    coderanch.com

Hi, I am using weblogic(8.1 sp 3) connection pools in my application(java). But the connections are not closed properly. It seems there are lot of open connections. I found a couple of places where the connections are closed in the try block. So if there is any error, they might be left open. But I am not sure if that would ...

14. Difference between direct JDBC connection and connection from weblogic pool    coderanch.com

The connection you get from WebLogic is a kind of wrapper for the direct connection, which adds a few features - for example, connection pooling. Because WebLogic adds stuff to the direct connection, it might be a little bit slower. It's also possible that your data source in WebLogic is poorly configured so that you get poor performance. It might also ...