Finally i found a "solution" or "workaround" ?

Just replacing in ra.xml :

  | 
<connectionfactory-interface>javax.resource.cci.ConnectionFactory</connectionfactory-interface>
  | 
  | 
<connectionfactory-impl-class>com.test.cci.S3kConnectionFactory</connectionfactory-impl-class>
  | 
  | 
  | <connection-interface>javax.resource.cci.Connection</connection-interface>  
    
  |  <connection-impl-class>com.test.cci.S3kConnection</connection-impl-class>
  | 

by :

  | 
<connectionfactory-interface>com.test.cci.MyConnectionFactory</connectionfactory-interface>
  | 
  | 
<connectionfactory-impl-class>com.test.cci.S3kConnectionFactoryImpl</connectionfactory-impl-class>
  | 
  | <connection-interface>com.test.cci.MyConnection</connection-interface>      
 
  | 
  | 
<connection-impl-class>com.test.cci.S3kConnectionImpl</connection-impl-class>
  | 

Where :

com.test.cci.MyConnectionFactory is an empty interface that extends 
javax.resource.cci.ConnectionFactory and javax.naming.Referenceable


com.test.cci.MyConnection is an empty interface that extends 
javax.resource.cci.Connection and javax.naming.Referenceable


Also in web.xml, i replaced :

<res-type>com.test.cci.S3kConnectionFactory</res-type>

by

<res-type>com.test.cci.MyConnectionFactory</res-type>

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952566#3952566

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952566

All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to