[JBoss jBPM] - problem with jbpm 3.2 (insert into tables)
by kefran
Hi,
I started to use jbpm two weeks age and now i have a big problem:
I want to deploy a processDefinition and save it in my database but data are not saved.
I wrote this:
| processDefinition=ProcessDefinition.parseXmlResource(fileJpdl);
| jbpmContext.deployProcessDefinition(processDefinition);
| jbpmContext.close();
|
and i have this response:
| Hibernate: insert into JBPM_PROCESSDEFINITION (NAME_, DESCRIPTION_, VERSION_, ISTERMINATIONIMPLICIT_, STARTSTATE_, CLASS_, ID_) values (?, ?, ?, ?, ?, 'P', ?)
|
the data of my processDefinition are not saved in my database (i use postgresql) and i don't know why
Is somebody can help me please??
(excuse me for my english...)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4135514#4135514
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4135514
18 years, 1 month
[Messaging, JMS & JBossMQ] - Re: How to persist JMS message in the Oracle Database
by adrian@jboss.org
"ajayks" wrote :
| 1. What configuration I need to do in JBOSS 4.2.2.GA for persisting JMS message in the oaracke Database
|
Besides the FAQ, try docs/examples/jms
(and docs/examples/jca for datasource config)
anonymous wrote :
| 2. How can I view persisted message in the Database /what is the name of table in which message would be stored by the JBOSS AS.
|
JMS_MESSAGES
anonymous wrote :
| 3. When I configure message to be persisted, is every JMS message would be stored in the database.
| 4. My requirement is that all JMS message should be persisted in database before it is delivered to Queue and after successfully delivering message to the Queue it should be removed from the database. Only those message which are not delivered to Queue due to any reason for example system crash etc, should be made stored in the database. Can is it possible in JBOSS 4.2.2.GA
|
It would be a strange JMS Server that didn't support this semantic,
it is a spec requirement. ;-)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4135506#4135506
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4135506
18 years, 1 month