[jBPM] New message: "Re: jBPM console not working on JBoss 5.1.0 standard configuration"
by Dejan Mratinkovic
User development,
A new message was posted in the thread "jBPM console not working on JBoss 5.1.0 standard configuration":
http://community.jboss.org/message/522227#522227
Author : Dejan Mratinkovic
Profile : http://community.jboss.org/people/dejanmr
Message:
--------------------------------------------------------------
I have the same issue.
And all I did was running ant targets as instructed. All out of the box. Works fine with 'default' configuration, does not with 'standard' or 'all' . Issues are present JBPM console, or simple tests I did on my own (so, it is not JBPM console related).
All deployes with no errors, error is fired on runtime.
I can log in (alex, password) to JBPM console, but I got the error, and no further actions are possible. Whichever action I choose, I got the same error pop up again.
Running on 'standard' is essential, as we can not go cluster without it.
Without it being possible, we would have to look for alternative WF engine.
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/522227#522227
16 years, 2 months
[JBoss Tools] New message: "Re: JBoss Maven Problem"
by Gilles Dupont Tagne Tagne
User development,
A new message was posted in the thread "JBoss Maven Problem":
http://community.jboss.org/message/522206#522206
Author : Gilles Dupont Tagne Tagne
Profile : http://community.jboss.org/people/tagnegilles
Message:
--------------------------------------------------------------
Hi Peter, I found out a solution how to delete the dev directory before building the package. I put this plugin in my pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.3</version>
<executions>
<execution>
<id>DeleteDevDirectoryTask</id>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<inherited>false</inherited>
<configuration>
<tasks>
<delete dir="${basedir}/WebContent/WEB-INF/dev"/>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
Now i am able to deploy the project without a problem. it's work. Thanks for your advices
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/522206#522206
16 years, 2 months
[jBPM] New message: "Re: jBPM 4.3 - Which JTA config to use for non-JBoss platform."
by Martin Porter
User development,
A new message was posted in the thread "jBPM 4.3 - Which JTA config to use for non-JBoss platform.":
http://community.jboss.org/message/522205#522205
Author : Martin Porter
Profile : http://community.jboss.org/people/jedizippy
Message:
--------------------------------------------------------------
Does seem to be in the same area but not sure if its directly related or not. It appears to be related to interceptors so possibly Spring related and we are not using Spring !.
Interestingly we had removed the continue="async" off the custom and task node in our subprocess and we ran back into ConstraitnVilolations again on the JBPM4_EXECUTION table so we have put them back on again and the probelm goes away. There is definitely a bug in the id generation in that area but we dont sadly have the time to look into it unless we hit a wll we cant pass again. I guess this issue wont show up in the test suite in the distribution as those tests dont use the JobExecutor so the issue wont arise !.
It would seem that either no one is using JTA in 4.X or else if they are then maybe only on jBoss. Hoping someone might look at the question today as it should be a simple question to answer !.
Regards
Martin
--------------------------------------------------------------
To reply to this message visit the message page: http://community.jboss.org/message/522205#522205
16 years, 2 months