I am trying different settings in my jbpm-bpel-ds.xml but still get that same 
error. Here is my current xml file -
------------------------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>


  <local-tx-datasource>

    <!-- The jndi name of the DataSource, it is prefixed with java:/ -->
    <!-- Datasources are not available outside the virtual machine -->
    <jndi-name>JbpmBpelDS</jndi-name>

    <!-- for tcp connection, allowing other processes to use the hsqldb
      database. This requires the org.jboss.jdbc.HypersonicDatabase mbean.-->
    <connection-url>jdbc:hsqldb:hsql://localhost:1701</connection-url>
    
    <!-- for totally in-memory db, not saved when jboss stops. 
      The org.jboss.jdbc.HypersonicDatabase mbean necessary

    <connection-url>jdbc:hsqldb:.</connection-url>
    -->    
    <!-- for in-process persistent db, saved when jboss stops. The
      org.jboss.jdbc.HypersonicDatabase mbean is necessary for properly db 
shutdown
    
    <connection-url>
      jdbc:hsqldb:${jboss.server.data.dir}${/}hypersonic${/}bpel
    </connection-url>-->
    
    <!-- The driver class -->
    <driver-class>org.hsqldb.jdbcDriver</driver-class>

    <!-- The login and password -->
    <user-name>sa</user-name>
    

    <!-- The minimum connections in a pool/sub-pool. Pools are lazily 
constructed on first use -->
    <min-pool-size>5</min-pool-size>

    <!-- The maximum connections in a pool/sub-pool -->
    <max-pool-size>20</max-pool-size>

    <!-- The time before an unused connection is destroyed -->
    <!-- NOTE: This is the check period. It will be destroyed somewhere between 
1x and 2x this timeout after last use -->
    <!-- TEMPORARY FIX! - Disable idle connection removal, HSQLDB has a problem 
with not reaping threads on closed connections -->
    <idle-timeout-minutes>0</idle-timeout-minutes>

    <!-- Whether to check all statements are closed when the connection is 
returned to the pool,
      this is a debugging feature that should be turned off in production -->
    <track-statements />

    <!-- Use the security domain defined in conf/login-config.xml 
    <security-domain>HsqlDbRealm</security-domain>
    -->

    <!-- Use the security domain defined in conf/login-config.xml or the
      getConnection(user, pw) for logins. The security domain takes precedence.
    
<security-domain-and-application>HsqlDbRealm</security-domain-and-application>
    -->

    <!-- corresponding type-mapping in the standardjbosscmp-jdbc.xml (optional) 
-->
    
      <type-mapping>Hypersonic SQL</type-mapping>
    

    <!-- This mbean can be used when using in process persistent hypersonic 
    jboss:service=Hypersonic,database=bpelDB-->
  </local-tx-datasource>

  <!-- This mbean should be used only when using tcp connections. Uncomment
    when the tcp based connection-url is used.-->
    
    1701
    true
    default
    false
    true
    
  

  <!-- This mbean can be used when using in process persistent db 
  --><!--
  
    bpel
    true
  -->


-----------------------------------------------------------------------------------

I always get that JbpmBpelDS object is not installed. There are no exceptions 
thrown. Is it possible that even if I get this message it will run the BPEL 
service?

It is very important that I get this running asap for my project. Btw I am 
using extension separately now. So JBPM version is 3.0.2
-Meghana

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

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


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to