You have to run your application inside the container. I assume that
you are creating a WAR(or EAR) file and deploying it to websphere.
If not, you need to.
How are you running the application?
Nathan
On Sep 6, 2005, at 1:58 PM, Dionisio Egiluz Ruiz de Zárate wrote:
i am ttring to configure ibatis for using one connection pool
configured into my websphere
i have one jndi name (jdbc/dsDIT) and for connect i have into the
ibatins conf file (SqlMapConfig.xml) this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMapConfig
PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
<sqlMapConfig>
<typeAlias alias="order" type="testdomain.Order" />
<transactionManager type="JDBC">
<dataSource type="JNDI">
<property name="DataSource" value="java:comp/env/jdbc/jdbc/dsDIT" />
</dataSource>
</transactionManager>
<sqlMap resource="DITT01CATEGORIAS.xml"/>
</sqlMapConfig>
but when i test the conection i recibed one exception (initial
context exception).
i think that it doesn't find the jndi name but i have configure it.
Can you help me?
thanks