connection « weblogic « Java Enterprise Q&A





1. Weblogic connection pool    stackoverflow.com

I'm trying to create a connection pool in weblogic (8.1) and getting the following exception:

<BEA-001129> <Received exception while creating connection for pool "testPool": 7>
I have no clue about that number ...

2. Weblogic connection pool    stackoverflow.com

Whenever I change connection pool parameters (url, id, pwd etc) I try to deploy the new connection pool in weblogic using the Control tab. I do a shutdown and start which ...

3. What are instance connection and service connection in Oracle?    stackoverflow.com

I am configuring a WebLogic app server. I am unclear about what is an instance connection and what is a service connection. Also, in my SQL Developer, when I make a ...

4. Slow Connection Pool in Weblogic 10 and Oracle 10    stackoverflow.com

We are currently moving from Weblogic 8 and Oracle 8 to Weblogic 10 and Oracle 10 as a big upgrade project. It appears that for most applications, they are running faster, better ...

5. Forcibily releasing the connection in weblogic 10.3.4    stackoverflow.com

I am getting following error in my managed server console on oracle soa server(11g).

--------------------
<Apr 14, 2011 10:51:37 AM SGT> <Warning> <JDBC> <BEA-001153> <Forcibly releasing inactive connection "weblogic.jdbc.wrapper.PoolConnection_oracle_jdbc_driver_T4CConnection@14267" back into the connect
ion ...

6. How to tell which part of the stack trace is causing connection leak in WebLogc 8.1    stackoverflow.com

i have a connection leak, which is captured by BEA WebLogic fortunately. However, after reading through some literature, i am still trying to find out which part of the stack trace ...

7. Weblogic 9.2 Datasource has inactive connections    stackoverflow.com

We are using Weblogic datasource to fetch connections. We execute a stored procedure on the connection. The stored procedure does a fetch on a Synonym which is a DB Link to ...

8. Adobe LiveCyle - when to use connection properties for ServiceClientFactory in WebLogic?    stackoverflow.com

When making a connection from Java to Adobe LiveCycle ES 2.5, the Setting connection properties page lists the default connection properties you should use depending on your server type. For ...

9. wlstModule connection information lost    stackoverflow.com

When using wlst with a WebLogic 10.3.5.0 release I am puzzled by the following situation and hoping for an answer. Given a standard wlst command to connect to a server

connect('weblogic','welcome1','t3s://localhost:7002')
it connects as ...





10. weblogic connection pool access    coderanch.com

Hi All, I am looking for creating singleton class for connection with DB. We are using weblogic connection pool. we have jar for 1.8.1 framework. We need to use FWDBManager class instance. We have connection pool name to access that. Anyone can help me how to create singleton class to access database? Thanks

11. Differences between Connection Pool managers in Weblogic 6.0    coderanch.com

I'm trying to understand the difference between two ways to get a connection from a Weblogic 6.0 connection pool. I've come across two different ways that we can get a connection from a pool (after it's been created thru the console). 1. Have a connection pool manager with a getConnection method that uses the following code: Connection conn = null; Driver ...

12. Problems while getting data from weblogic server when using connection pooling    java-forums.org

Hello, I am new to database connection pooling. I am using weblogic server, Java 1.6, MySql database. I have done connection pooling in weblogic server. The problem arise when I try to run select query I cannot fetch data in ResultSet. For insert it works fine... import java.io.Serializable; import java.sql.Connection; import java.sql.ResultSet; import java.sql.Statement; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import ...