Title: "no resource manager found"

I'm getting a 'No resource manager found for jdbc/titanDB' error when deploying a cloudscape entity bean
and running a client. 

Ive been reading some archives and found others having the same problem.
But i did not see a solution.  

My deployment descriptor states:

<resource-ref>
           <description>DataSource for the Titan database</description>
           <res-ref-name>jdbc/titanDB</res-ref-name>
           <res-type>javax.sql.DataSource</res-type>
           <res-auth>Container</res-auth>
      </resource-ref>

jboss.conf:

<MLET CODE="org.jboss.jdbc.XADataSourceLoader" ARCHIVE="jboss.jar,cloudscape.jar" CODEBASE="../../lib/ext/">
   <ARG TYPE="java.lang.String" VALUE="CloudscapeConnPool">
   <ARG TYPE="java.lang.String" VALUE="org.jboss.minerva.xa.XADataSourceImpl">
</MLET>

jboss.jcml

<mbean name="DefaultDomain:service=XADataSource,name=CloudscapeConnPool">
       <attribute name="Properties"></attribute>
       <attribute name="URL">jdbc:cloudscape:titanDB;create=true</attribute>
       <attribute name="Password" />
       <attribute name="GCMinIdleTime">1200000</attribute>
       <attribute name="JDBCUser" />
       <attribute name="MinSize">0</attribute>
       <attribute name="GCEnabled">false</attribute>
       <attribute name="InvalidateOnError">false</attribute>
       <attribute name="TimestampUsed">false</attribute>
       <attribute name="Blocking">true</attribute>
       <attribute name="GCInterval">120000</attribute>
       <attribute name="IdleTimeout">1800000</attribute>
       <attribute name="IdleTimeoutEnabled">false</attribute>
       <attribute name="LoggingEnabled">false</attribute>
       <attribute name="MaxIdleTimeoutPercent">1.0</attribute>
       <attribute name="MaxSize">0</attribute>
     </mbean>


Reply via email to