[Beginner's Corner] New message: "best report tool"
by Paolo Proni
User development,
A new message was posted in the thread "best report tool":
http://community.jboss.org/message/520437#520437
Author : Paolo Proni
Profile : http://community.jboss.org/people/pewal
Message:
--------------------------------------------------------------
What is the best report tool to be used on JBoss?
I need to provide some pdf files, generating them dynamically. I am using iText but it is very low level.
I have tried the Seam PDF tags, but they are too buggy for the header / footer sections.
XSL-FO does not run on JBoss, because of class loader issues.
Can I use BIRT or JasperReport? What is the best ? I do not want to spend some days trying, then to discover that something does not work.
Thank you,
Paolo
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/520437#520437
16 years, 5 months
[jBPM] New message: "Re: Problem Signaling a Waiting Execution"
by Santanu Saraswati
User development,
A new message was posted in the thread "Problem Signaling a Waiting Execution":
http://community.jboss.org/message/520431#520431
Author : Santanu Saraswati
Profile : http://community.jboss.org/people/saraswati.santanu
Message:
--------------------------------------------------------------
This one looks incorrect. As result of one signal to the flow you arrived at the event listener. You are yet to move to the next node. Then you call signal again. So when you make this signal at that point of time you are still in your previous node. What should be the rational outcome is something I am not sure of.
It will be good to understand what are you trying to achieve. If you do not want to wait at the next node and want it to exit (and fire 'exit' event to fire) as soon as you move there then you should not be using signal node.
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/520431#520431
16 years, 5 months
[jBPM] New message: "Re: JBPM won't save data in the database"
by Sakthivelmurugan KG
User development,
A new message was posted in the thread "JBPM won't save data in the database":
http://community.jboss.org/message/520422#520422
Author : Sakthivelmurugan KG
Profile : http://community.jboss.org/people/Sakthivel_kg
Message:
--------------------------------------------------------------
hey,
I am having the same problem. I am using JBPM 3.2.3 and MySQL 5. Can you please help what should i do to fix this?
Here is my jbpm.cfg.xml:
<jbpm-configuration>
<!--
The default configurations can be found in org/jbpm/default.jbpm.cfg.xml
Those configurations can be overwritten by putting this file called
jbpm.cfg.xml on the root of the classpath and put in the customized values.
-->
<jbpm-context>
<service name='persistence'
factory='org.jbpm.persistence.db.DbPersistenceServiceFactory' />
</jbpm-context>
<string name='resource.hibernate.cfg.xml' value='hibernate.cfg.xml' />
</jbpm-configuration>
Here is my hibernate.cfg.xml (some part):
?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- hibernate dialect -->
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<!-- JDBC connection properties (begin) -->
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost/JBPM</property>
<property name="hibernate.connection.username">cygnet</property>
<property name="hibernate.connection.password">cygnet</property>
<property name="hibernate.connection.autocommit">true</property>
<!-- JDBC connection properties (end) -->
Regards,
Sakthi
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/520422#520422
16 years, 5 months
[jBPM] New message: "Job execution exception handling in a JTA environment"
by Joel Monkey
User development,
A new message was posted in the thread "Job execution exception handling in a JTA environment":
http://community.jboss.org/message/520415#520415
Author : Joel Monkey
Profile : http://community.jboss.org/people/joel-the-wanna-be-programr
Message:
--------------------------------------------------------------
We have a jBPM workflow that executes custom activities implemented as session EJBs. Upon failure of one of these activities, the enclosing JTA transaction enters into an aborted state. The {{ExecuteJobCmd}} seems to deal with exeptions by executing a {{JobExecutionHandler}} once the current transaction completes. This sequence is assured by the following:
{code:java}transaction.registerSynchronization(jobExceptionHandler);{code}
Unfortunately, since the JTA transaction has already been marked for rollback, this call fails!
The question is, are we looking at a bug that only appears when using JTA transactions ({{org.jbpm.pvm.internal.tx.StandardTransaction}} doesn't care if the transaction is being aborted.) Or are we not scoping our JTA transactions properly?
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/520415#520415
16 years, 5 months