SIEBEL JAVA DATA BEAN
Hi,
We are using Java Data Mechanism to Connect to Siebel from External Application.
1. Login into Siebel Server EX: m_dataBean_first.login("siebel.tcpip.none.none://virtualip:2320/enterprise/object manager name","user id","password");
2. Attach Method we are using from external application to connect to an Siebel session
m_dataBean_second.attach(detachHandle);
3. Then Query is Initaited from External System and finally the Session is getting Detached.
4. siebel.conmgr.poolsize parameter is Set to 20 in Properties File.
Question:
How does Connection Pooling Works here? Does it Start 20 Connection to DB for each Process?
How this Connection is getting reused by Other Sessions EX(Do Some Query Operation after detaching the session it returns to Connection Pool which is used by other session ).
0