[JBoss jBPM] - Re: MSSQL Exceptions
by robro99
In case anyone gets this error and cannot figure it out. Using the standard installers you will likely end up with 3 spots referencing your datasource. Unfortunately I was only updating 2 of them. I had missed jbosscmp-jdbc.xml, hence the reason using an XA datasource seemed to get me along further. Anyways with the standard install changing to a datasource named MSSQLDS I would recommend the following changes.
C:\jboss-4.2.3.GA\server\default\deploy\ejb-deployer.xml
change datasource from
jboss.jca:service=DataSourceBinding,name=DefaultDS
to
jboss.jca:service=DataSourceBinding,name=MSSQLDS
C:\jboss-4.2.3.GA\server\default\deploy\jbpm\jbpm-service.sar\hibernate.cfg.xml
change from
java:JbpmDS
to
java:MSSQLDS
also change from
org.hibernate.dialect.HSQLDialect
to
org.hibernate.dialect.SQLServerDialect
C:\jboss-4.2.3.GA\server\default\deploy\jbpm\jbpm-enterprise.jar\META-INF\jbosscmp-jdbc.xml
change from
java:/JbpmDS
to
java:/MSSQLDS
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4217633#4217633
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4217633
17 years, 1 month
[JBoss jBPM] - error in import statements using jbpm3.2.4.GA and deploying
by arpan25
Hi all,
I am trying to use a workflow (initially developed using jbpm 3.1.4 )with jbpm 3.2.4.GA , the java files which I am using give error in the import statements shown below.. I am using eclipse separately with jbpm designer added externally as a local archive site. Can anyone tell me what should i do to remove these errors ? I think this problem is trivial but I am unable to resolve it..
import org.jbpm.JbpmConfiguration;
import org.jbpm.JbpmContext;
import org.jbpm.db.GraphSession;
import org.jbpm.graph.*;
import org.jbpm.graph.def.ActionHandler;
import org.jbpm.graph.def.ProcessDefinition;
import org.jbpm.graph.exe.ExecutionContext;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.jbpm.*;
import org.jbpm.graph.def.*;
import org.jbpm.JbpmConfiguration;
import java.util.*;
thanks,
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4217628#4217628
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4217628
17 years, 1 month