Found a fix but don't know if its "good" or not. In the Jboss home directory there is a file called hsqldb-ds.xml. I believe is starts life in JBOSS_HOME/server/default/deploy but then gets copied to the equivilent directory in JBOSS_HOME/server/jbpm/deploy
About line 90 is an MBean that needs to be uncommented. This is the whole thing | <mbean code="org.jboss.jdbc.HypersonicDatabase" | name="jboss:service=Hypersonic"> | <attribute name="Port">1701</attribute> | <attribute name="Silent">true</attribute> | <attribute name="Database">default</attribute> | <attribute name="Trace">false</attribute> | <attribute name="No_system_exit">true</attribute> | </mbean> | After doing that I was able to use the ProcessArchiveDeployer.deployProcess e method. It does complain when starting up JBoss that the bean is already instantiated but nonetheless that method would not work unless the above MBean is activated. So far connecting to the database has by far given me the most headaches. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911040#3911040 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911040 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
