[jboss-user] [jBPM Users] - Re: Deploying processes on Tomcat
sebastian.s
do-not-reply at jboss.com
Tue Sep 15 04:47:31 EDT 2009
The actual problem is that I don't succeed in deploying processes with the help of the ANT task. The tasks runs but it always deploys the processs to an in-memory database although I have specified the connection details in the build.xml file.
I have to say I am a bit confused because there are jdbc-properties and hibernate-properties. To be sure I set them both
| <property name="jdbc.driver" value="org.hsqldb.jdbcDriver"/>
| <property name="jdbc.url" value="jdbc:hsqldb:hsql://myserver.mydomain.de:1701"/>
| <property name="jdbc.username" value="sa"/>
| <property name="jdbc.password" value=""/>
|
| <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialec"/>
| <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver"/>
| <property name="hibernate.connection.url" value="jdbc:hsqldb:hsql://myserver.mydomain.de:1701"/>
| <property name="hibernate.connection.username" value="sa"/>
| <property name="hibernate.connection.password" value=""/>
| <property name="hibernate.format_sql" value="true"/>
|
But obviously connection details are ignored:
| [jbpm-deploy] INFO: using driver: org.hsqldb.jdbcDriver at URL: jdbc:hsqldb:mem:.
|
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4255229#4255229
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4255229
More information about the jboss-user
mailing list