iwhome/local/config/lib/content_center/livesite_customer_src/etc/conf/livesite_customer/resources/customer-resource-config.xml( this goes INSIDE the <beans> element in that file )<bean id="customer.db.DefaultPoolFactory" parent="db.DefaultPoolFactory" init-method="init"> <property name="pools"> <map merge="true"> <!-- This is an example of a custom pooled data source, there must be a single entry per pool. NOTE: The connection information is standard JDBC. <entry key="customer_pool_name"> <bean class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> <property name="driverClassName" value="<classname>"/> <property name="url" value="<connectionstring>"/> <property name="username" value="<username>"/> <property name="password" value="<password>"/> </bean> </entry> --> </map> </property> </bean>Notice the merge="true" in the <map> node. This means that any new pools created here will be merged with the existing set.To retrieve a connection from the pool:com.interwoven.livesite.runtime.servlet.RequestUtils.getConnection(String poolName);After you make changes to this file, you must rebuild the livesite_customer toolkit by running build.bat(or .sh) in the toolkit home directory:iwhome/local/config/lib/content_center/livesite_customer_src