Hi jayant,
You can easily create connection pool in JBoss. You need to deploy the xxxx-ds.xml file in to the jboss/server/default/deploy folder. You will get the sample xxxxxx-ds.xml files from the docs/examples/jca direcoty, that is coming along with the jboss build. To create oracle connection pool, you have to deploy the oracle-ds.xml (name doe's not mean much) in the jboss/server/default/deploy directory. (or in the instance which one you are using).
oracle.ds.xml file
------------------
You need to change it according to your environment.
Now you can lookup your connection pool from any
J2EE component, that is deployed in the server.
the lookup code is
------------------
yourdsname should be the same as in oracle-ds.xml file.
hope this will help you.
[ May 05, 2005: Message edited by: Sanju Thomas ]