[jboss-user] [JBoss jBPM] - jBPM helps define the business process

2006-12-11 Thread jbpmndc
Most programs today put all the workflow logic in the code. jPDL is a big improvement. A business analyst may need a technical person to walk them trough a process definition the first time, but jpdl is readable. In addition, just being able to define a process in one xml file is a big improv

[jboss-user] [JBoss jBPM] - Re: handler in a decision node

2006-09-13 Thread jbpmndc
There's an test examples in the source code jbpm\src\java.jbpm.test View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971397#3971397 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3971397 __

[jboss-user] [JBoss jBPM] - Re: Storage of process variables outside jbpm?

2006-09-13 Thread jbpmndc
I've come to the conclusion domain data should exist separately. Only data that must be used by the process is managed by jBPM. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971399#3971399 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[jboss-user] [JBoss jBPM] - Re: Help getting a condition to work

2006-09-11 Thread jbpmndc
try this: | | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970864#3970864 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3970864 ___ jboss-user mailing list jboss-u

[jboss-user] [JBoss jBPM] - Re: advanced examples

2006-09-06 Thread jbpmndc
For examples of using jbpm there is a wealth of examples under jbpm/src/jbpm.test. One set of examples is particularly useful: src\java.jbpm.test\org\jbpm\jpdl I beg to differ on the documentation. Tom Baeyens has written some of the most insightful docs I've ever read. Thanks Tom! View th

[jboss-user] [JBoss jBPM] - Fedora Directory Server and jBPM identity integration

2006-08-31 Thread jbpmndc
A lot of people have told me Fedora Directory Server is one of the best on the markets. You would think with JBoss/Redhat now one company, they would put together a little tutorial on integrating jBPM and Fedora DS. Any plans on doing this? View the original post : http://www.jboss.com/inde

[jboss-user] [JBoss jBPM] - Re: Problem creating Process Instance and Tasks

2006-08-29 Thread jbpmndc
Have you tried it in standalone mode, like the 'purchasing' example? If it works there, than it's an app server configuration problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968083#3968083 Reply to the post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBoss jBPM] - Re: how to save data to my existed table but not jbpm_variab

2006-08-26 Thread jbpmndc
It's best to decouple the bpm data from your domain data. I prefer to use jBPM or any BPM engine variables for process management and process management only. I hold domain related data in separate tables. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3967

[jboss-user] [JBoss jBPM] - Re: taken end and task instance end

2006-08-14 Thread jbpmndc
anonymous wrote : taskInstance.end ends the task, but SIGNALS the token to the next node. I understand this. I'm wondering why anyone would use token.signal in their code. If task.endInstance signals the token to move to the next task, then writing in your code taskInstande.end("foo") is mo

[jboss-user] [JBoss jBPM] - Re: taken end and task instance end

2006-08-14 Thread jbpmndc
What are situations when you should use token.signal instead of token.end()? It seems to me you should always use token.end. It's more clear and intuitive. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3965075#3965075 Reply to the post : http://www.jboss.co

[jboss-user] [JBoss jBPM] - jBPM and Voip

2006-07-31 Thread jbpmndc
Here's a list of success stories using jBPM. These are useful for selling jbpm to the 'boss'. The jBPM and Voip one is very cool. http://www.jbossworld.com/jbwv_2006/jems_verticles.htm I've been working with jbpm for a while and have not seen these. JBoss ought to put these in the forefront

[jboss-user] [JBoss jBPM] - seam and process instance question

2006-07-26 Thread jbpmndc
This is more of a SEAM question, but if anyone has an answer here I would appreciate it. In the dvd example a process instance is retrieved using an entity bean's id. Is jBPM aware of all entity beans or how is it aware that there is a process that has an orderId of x value? ProcessInstance p

[jboss-user] [JBoss jBPM] - Re: Ripping out identity component

2006-07-26 Thread jbpmndc
in hibernate.cfg.xml follow the directions to comment out the user,group and membership objects. Then, you can just delegate the security to your application container and manage access using the container's built in security mechanism. A lot can be discussed about when you should do this an

[jboss-user] [JBoss Seam] - Re: ACL in Seam

2006-07-25 Thread jbpmndc
Acegi's voter mechanism provides the ability to assemble permissions dynamically based on changing events. Does anyone one know if JAAS provides an equivalent. A common situation people may encounter is the need to dynamically add permissions to a user when a task is assigned to them using j

[jboss-user] [JBoss Seam] - Re: dvd example - get process instance from order id questio

2006-07-25 Thread jbpmndc
Is this a case where I need to read the docs again or has no one encountered how this works? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3960772#3960772 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3960772 _

[jboss-user] [JBoss Seam] - Re: dvd example - get process instance from order id questio

2006-07-24 Thread jbpmndc
This query takes place in the ShowOrdersAction bean. I don't see the table LongInstance in the data model for jBPM: http://wiki.jboss.org/wiki/Wiki.jsp?page=Jbpm31DataModel Has anyone had any success in piecing this together? View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Seam] - Re: dvd example - get process instance from order id questio

2006-07-23 Thread jbpmndc
You would think the process definition would need to define the variables and the code would need to set the variable values: contextInstance.setVariable("orderId", "20") So I can't figure out when and/or where orderId is being set that allows the above query to work. View the original post

[jboss-user] [JBoss Seam] - dvd example - get process instance from order id question

2006-07-21 Thread jbpmndc
In the dvd example a process instance is retrieved using an entity bean's id. Is jBPM aware of all entity beans or how is it aware that there is a process that has an orderId of x value? ProcessInstance pi = (ProcessInstance) context.getSession() | .createQuery("select pi from

[jboss-user] [JBoss Seam] - Re: $100.00

2006-07-20 Thread jbpmndc
I'm ready to buy it too View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3959751#3959751 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3959751 ___ jboss-user mailing list jboss-u

[jboss-user] [JBoss Seam] - Re: Eclipse - Dynamic Web Project

2006-07-16 Thread jbpmndc
Seam and jBPM are truly innovative products and I want them to gain in popularity so that I can use them on future products. Therefore I think it's important for people with more experience to be understanding of early adopters and help them or at least not say things that may offend them. my

[jboss-user] [JBoss jBPM] - Re: Regarding Identity Management Component

2006-07-14 Thread jbpmndc
Because jBPM works right in the app, why have a separate authentication/authorization mechanism from the server? I assume the reason the big vendors often have a separate identity component is becuase their implementations are often separate from the application server. View the original post :