I'm kind of busy to complete the demo application, but in the meanwhile, this is my application configuration you asked:
- JBPM 5.4 - The process, knowlodge base, and etc it's in a remote server
- Spring 3
- My bean configuration for the entity manager factory:
<bean id="entityManagerFactoryJbpm"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="org.jbpm.process" />
</bean>
- JBoss 7.1.1: Here's my data source for the persistence of the process
<datasource jndi-name="java:jboss/datasources/processDS" pool-name="processDS" enabled="true" use-java-context="true">
<connection-url>jdbc:postgresql://localhost:5432/mydatabase</connection-url>
<driver-class>org.postgresql.Driver</driver-class>
<driver>postgresql</driver>
<security>
<user-name>myuser</user-name>
<password>mypassword</password>
</security>
</datasource>
What kind of information do you need?
Thanks