[JBoss Tools] - Install jboss tools
by michele cardoni
michele cardoni [https://community.jboss.org/people/mik73] created the discussion
"Install jboss tools"
To view the discussion, visit: https://community.jboss.org/message/719086#719086
--------------------------------------------------------------
hi, i'm trying to install jboss 3.3 on eclipse, following the getting started documentation but doesn't work. the log is attached below.
could someon help me please?
thanks
Cannot complete the install because of a conflicting dependency. Software being installed: JBoss Packaging Maven Configurators 1.3.0.v20111209-0524-H40-M5 (org.jboss.tools.maven.jbosspackaging.feature.feature.group 1.3.0.v20111209-0524-H40-M5) Software currently installed: Shared profile 1.0.0.1322129114546 (SharedProfile_epp.package.jee 1.0.0.1322129114546) Only one of the following can be installed at once: JBossAS RSE Tools 0.9.0.v20111110-1751-H262-Final (org.jboss.ide.eclipse.as.rse.core 0.9.0.v20111110-1751-H262-Final) JBossAS RSE Tools 2.3.0.v20111213-1423-H61-M5 (org.jboss.ide.eclipse.as.rse.core 2.3.0.v20111213-1423-H61-M5) Cannot satisfy dependency: From: Shared profile 1.0.0.1322129114546 (SharedProfile_epp.package.jee 1.0.0.1322129114546) To: org.jboss.ide.eclipse.as.rse.core [0.9.0.v20111110-1751-H262-Final] Cannot satisfy dependency: From: JBossAS Tools 2.3.0.v20111213-1423-H61-M5 (org.jboss.ide.eclipse.as.feature.feature.group 2.3.0.v20111213-1423-H61-M5) To: org.jboss.ide.eclipse.as.server.rse.integration.feature.feature.group [2.3.0.v20111213-1423-H61-M5] Cannot satisfy dependency: From: JBossAS Tools Server / Remote Systems Integration 2.3.0.v20111213-1423-H61-M5 (org.jboss.ide.eclipse.as.server.rse.integration.feature.feature.group 2.3.0.v20111213-1423-H61-M5) To: org.jboss.ide.eclipse.as.rse.core [2.3.0.v20111213-1423-H61-M5] Cannot satisfy dependency: From: JBoss Packaging Maven Configurators 1.3.0.v20111209-0524-H40-M5 (org.jboss.tools.maven.jbosspackaging.feature.feature.group 1.3.0.v20111209-0524-H40-M5) To: org.jboss.ide.eclipse.as.feature.feature.group 2.3.0
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/719086#719086]
Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
14 years, 1 month
[jBPM] - JBPM stuck when reach AdHocSubprocess and stop executing when reach IntermediateThrowEvent
by Kiattchai Preecha-anusond
Kiattchai Preecha-anusond [https://community.jboss.org/people/kiattchaipr] created the discussion
"JBPM stuck when reach AdHocSubprocess and stop executing when reach IntermediateThrowEvent"
To view the discussion, visit: https://community.jboss.org/message/718943#718943
--------------------------------------------------------------
Hello everyone,
I integrated my application with JBPM5.1Final and found some problem when I try to execute AdHocSubprocess or IntermediateThrowEvent that contain EscalationEventDefinition inside. This is some code from the application.
KnowledgeBuilder kbuilder = KnowledgeBuilderFactory.newKnowledgeBuilder();
kbuilder.add(ResourceFactory.newFileResource(new File("test.bpmn2")), ResourceType.BPMN2);
KnowledgeBase knowledgeBase = kbuilder.newKnowledgeBase();
StatefulKnowledgeSession kSession = knowledgeBase.newStatefulKnowledgeSession();
kSession.addEventListener(new ProcessEventListener() {
@Override
public void beforeNodeLeft(ProcessNodeLeftEvent arg0) {
System.out.println(arg0.getNodeInstance().getNode().getName());
}
@Override
public void beforeNodeTriggered(ProcessNodeTriggeredEvent arg0) {
System.out.println(arg0.getNodeInstance().getNode().getName());
}
....
});
System.out.println("Start")
kSession.startProcess("process_1");
//kSession.startProcess("process_2");
while (!mKSession.getProcessInstances().isEmpty()) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println("Done")
kSession.dispose();
Output: process_1
=====================================
Start
triggered: StartEvent
left: StartEvent
triggered: AdHoc Subprocess
=====================================
Output: process_2
=====================================
Start
triggered: StartEvent
left: StartEvent
triggered: ThrowEscalation
Done
=====================================
It seem that it will struck when found the AdHocSubprocess and stop executing when found the IntermediateThrowEvent. In case of IntermediateThrowEvent, it can execute through to the EndEvent if the IntermediateThrowEvent do not contain the EscalationEventDefinition inside. Could anyone suggest me what is the cause of this problem?
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/718943#718943]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
14 years, 1 month
[jBPM] - JBPM5.2:After I start human task server, why there is no data in table OrganizationalEntity?
by Jimmy dong
Jimmy dong [https://community.jboss.org/people/jimmy.dongjia] created the discussion
"JBPM5.2:After I start human task server,why there is no data in table OrganizationalEntity?"
To view the discussion, visit: https://community.jboss.org/message/718674#718674
--------------------------------------------------------------
I find that there is only one "persitence.xml" in jbpm5.2, the path is "jbpm-gwt-console-server.war/WEB-INF/classes/META-INF/",
the content is :
<persistence-unit name="org.jbpm.persistence.jpa" transaction-type="JTA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>java:jdbc/testDS1</jta-data-source>
<mapping-file>META-INF/JBPMorm.xml</mapping-file>
<class>org.jbpm.persistence.processinstance.ProcessInstanceInfo</class>
<class>org.drools.persistence.info.SessionInfo</class>
<class>org.drools.persistence.info.WorkItemInfo</class>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
<property name="hibernate.max_fetch_depth" value="3"/>
<property name="hibernate.hbm2ddl.auto" value="create" />
<property name="hibernate.show_sql" value="false" />
<property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup" />
</properties>
</persistence-unit>
but in jbpm5.1 there is another "persistence.xml" which its content is:
<persistence-unit name="org.jbpm.task">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>org.jbpm.task.Attachment</class>
<class>org.jbpm.task.Content</class>
<class>org.jbpm.task.BooleanExpression</class>
<class>org.jbpm.task.Comment</class>
<class>org.jbpm.task.Deadline</class>
<class>org.jbpm.task.Comment</class>
<class>org.jbpm.task.Deadline</class>
<class>org.jbpm.task.Delegation</class>
<class>org.jbpm.task.Escalation</class>
<class>org.jbpm.task.Group</class>
<class>org.jbpm.task.I18NText</class>
<class>org.jbpm.task.Notification</class>
<class>org.jbpm.task.EmailNotification</class>
<class>org.jbpm.task.EmailNotificationHeader</class>
<class>org.jbpm.task.PeopleAssignments</class>
<class>org.jbpm.task.Reassignment</class>
<class>org.jbpm.task.Status</class>
<class>org.jbpm.task.Task</class>
<class>org.jbpm.task.TaskData</class>
<class>org.jbpm.task.SubTasksStrategy</class>
<class>org.jbpm.task.OnParentAbortAllSubTasksEndStrategy</class>
<class>org.jbpm.task.OnAllSubTasksEndParentEndStrategy</class>
<class>org.jbpm.task.User</class>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
<property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"/>
<property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/jbpm" />
<property name="hibernate.connection.username" value="root"/>
<property name="hibernate.connection.password" value=""/>
<property name="hibernate.connection.autocommit" value="false" />
<property name="hibernate.max_fetch_depth" value="3"/>
<property name="hibernate.hbm2ddl.auto" value="create" />
<property name="hibernate.show_sql" value="false" />
</properties>
I want to know in jbpm5.2 where the other "persistence.xml" is?
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/718674#718674]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
14 years, 1 month