[Design of JBoss jBPM] - Re: mavenize enterprise
by thomas.diesler@jboss.com
I think this done actually. If you follow
http://jbpm.dyndns.org/jbpmwiki/index.php?title=JBPM3BuildingTheInstaller
you should see the jbpm-console working and the enterprise beans deploy
| 16:56:00,550 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=JbpmDS' to JNDI name 'java:JbpmDS'
| 16:56:00,865 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
| 16:56:01,638 INFO [EjbModule] Deploying TimerEntityBean
| 16:56:01,983 INFO [EjbModule] Deploying CommandServiceBean
| 16:56:02,107 INFO [EjbModule] Deploying TimerServiceBean
| 16:56:02,113 INFO [EjbModule] Deploying CommandListenerBean
| 16:56:02,182 INFO [EjbModule] Deploying JobListenerBean
| 16:56:04,193 INFO [BaseLocalProxyFactory] Bound EJB LocalHome 'TimerEntityBean' to jndi 'java:ejb/TimerEntityBean'
| 16:56:04,202 INFO [BaseLocalProxyFactory] Bound EJB LocalHome 'CommandServiceBean' to jndi 'java:ejb/CommandServiceBean'
| 16:56:04,250 INFO [ProxyFactory] Bound EJB Home 'CommandServiceBean' to jndi 'ejb/CommandServiceBean'
| 16:56:04,274 INFO [BaseLocalProxyFactory] Bound EJB LocalHome 'TimerServiceBean' to jndi 'local/TimerServiceBean@14694596'
|
Early next week, I'll try to integrate the enterprise tests in the hudson matrix
http://jbpm.dyndns.org/jbpmwiki/index.php?title=JBPM3HudsonSetup
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4173361#4173361
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4173361
16 years, 2 months
What's going on exactly
by Bernd Rücker
Hi all!
I am really confused by now what is going on in the jBPM project and JBoss
BPM project. Could somebody please clarify:
- Is JBoss BPM now a different project than jBPM? Or is it one?
- Where is the exact goal of the BPM?
- Where does this BPM-API should lead to?
- The BPM documentation uses some XML notation. Which language is
that?
- How does PVM / jBPM 4 relate to the JBoss BPM?
- What products will be available? PVM, jBPM jPDL 3, jBPM jPDL 4?
Whats with BPEL?
- What effort is going to on to integrate BPMN?
- Who is project lead of what?
And:
- When is the mailinglist used, when the forum?
Sorry, but I am really confused. I thought there was a clear vision in the
jBPM project (PVM / jBPM jPDL 4 as reference implementation), but now
there are a lot of other things, like this BPM product. What is exactly
going on here?
Sorry for asking that silly questions, I have some idea in my mind about
how everything goes on, but am not sure if that picture reflects reality
;-)
And as long I dont have a clear picture is hard for me to contribute
ideas or code and to continue giving presentations on jBPM on conferences
(since normally I try to know what I am talking about). Also it will be an
interesting information for delivering the RedHat jBPM trainings
.
Thanks for your answers
Bernd
--
EJB-3-Buch: <http://www.ejbbuch.de/> http://www.ejbbuch.de/
SENS-Experte: <http://www.softwareexperts.de/>
http://www.softwareexperts.de/
---------------------------------------------
camunda services GmbH - The Business Process Company
Werastraße 18 - 70182 Stuttgart
<http://www.camunda.com> www.camunda.com - <mailto:info@camunda.com>
info(a)camunda.com
---------------------------------------------
Bernd Rücker
Geschäftsführer
Telefon +49 711 3278645
Mobil +49 171 1473461
<mailto:bernd.ruecker@camunda.com> bernd.ruecker(a)camunda.com
---------------------------------------------
Amtsgericht Charlottenburg: HRB 113230 B
Geschäftsführer: Jakob Freund, Bernd Rücker
---------------------------------------------
16 years, 2 months
Upcomming jBPM3 release
by Thomas Diesler
Hi Folks,
only six days to go until the next jBPM3 release on 1-Sep-2008. Could
you please comment on the status of your open issues?
cheers
-thomas
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Thomas Diesler
BPM Product Lead
JBoss, a division of Red Hat
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
16 years, 3 months
[Design of JBoss jBPM] - variable inside task controller
by clandestino_bgd
Hello,
I am using JBPM with Spring and Struts, so I do not use JSF for task form generation which is a mechanism supported by GPD. I generate task form on my task form jsp page by using some gymnastics with predefined prefixes in variable mapped-name and it works well more than 1 year (touch the wood).
jbpm-3.2 XSD for variable looks like this:
| <xs:element name="variable">
| <xs:complexType>
| <xs:sequence>
| <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded" />
| </xs:sequence>
| <xs:attribute name="name" type="xs:string" use="required"/>
| <xs:attribute name="access" type="xs:string" default="read,write"/>
| <xs:attribute name="mapped-name" type="xs:string" />
| </xs:complexType>
| </xs:element>
|
What by my opinion is missing here is the way to specify default value.
How I do it in the moment, is to specify variable in process-start event script, and use the same variable in controller.
So, I would be happy if variable definition could have also these attributes:
| <xs:attribute name="default-value" type="xs:string" />
|
and maybe:
| <xs:attribute name="description" type="xs:string" />
|
which should store some custom info usable by somebody like me, who has different way to generate task forms :)
But wouldn't it be more comfortable for process designer to have ability to specify variable default value inside task directly?
I would appreciate your views.
Thanks a lot,
Milan
P.S
I read all Tom's articles about different roles for BA and developer, but my research is not targeted to BAs but for scientists, who usually do not have developer in the same room.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4171798#4171798
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4171798
16 years, 3 months