[jboss-user] [JBoss jBPM] - jbpm tag libs and process designer

2008-02-19 Thread seanmcelroy
Can someone tell me how jbpm4jsf and jbpm.org/jsf interact. 
Specifically, in the sample admin console application how are the forms created 
by the process designer integrated with the console app. 

Any help at would be appreciated as trying to develop a JBPM application is 
proving to be painstakingly slow. 


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4130405#4130405

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4130405
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - jbpm-console sample application

2008-02-19 Thread seanmcelroy
Hi,

I'm trying to decipher the jbpm-console application with a view to getting an 
understanding of jbpm4jsf. 

One of the jbpm4jsf tags used in the application is . Can you tell me where proclist is defined?

Thanks.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4130360#4130360

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4130360
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Developing a web console

2008-02-15 Thread seanmcelroy
Hi,

I've been trying to develop a web console to run in tomcat. Is there a 
recommended deveopment approach or is there any documentation other than the 
getting started guide.

Thanks. 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4129652#4129652

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4129652
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: An association from the table JBPM_NODE refers to an unm

2008-02-15 Thread seanmcelroy
I am using jbpm-jpdl-3.2.2 and Script.hbm.xml is not commented out. 

I get the error when I execute this code:


  | JbpmConfiguration jbpmConfiguration = JbpmConfiguration.getInstance();
  | JbpmContext jbpmContext = jbpmConfiguration.createJbpmContext();
  | return jbpmContext.getGraphSession().findLatestProcessDefinitions();
  | 
  | 


As an aside, I am trying to develop my own web based admin console. Can you 
recommend a good approach?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4129595#4129595

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4129595
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - An association from the table JBPM_NODE refers to an unmappe

2008-02-15 Thread seanmcelroy
I am trying to create my own admin console using Tomcat and SQLServer. I have 
create the SQLServer database ok and I have configured hibernate to point to 
it, however when I delpoy my application I get this error: 

An association from the table JBPM_NODE refers to an unmapped class: 
org.jbpm.graph.action.Script

Can anyone tell me why this happening?

Thanks.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4129578#4129578

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4129578
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Token is locked by token[26]

2008-02-09 Thread seanmcelroy
Thanks again. I understand that they use a node and not a state, what I can't 
quite get to grips with is why and when would you use a state node? 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4128079#4128079

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4128079
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Token is locked by token[26]

2008-02-08 Thread seanmcelroy
Thanks. This has left me a bit confused as to why or when would one use a state 
node, if you can't automate the control flow?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4127814#4127814

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4127814
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Token is locked by token[26]

2008-02-04 Thread seanmcelroy
Hello,

I have created a simple example jBPM project and I can deploy it using 
jbpm-console. I have create a state node like this:


  | 
  | 
  | 
  | 
  | 

In the class com.sample.action.LOAActionHandler I have coded the execute method 
like this: 

public void execute(ExecutionContext context) throws Exception {
  | System.out.println("Letter of offer generated");
  | context.getToken().signal();
  | }

When the signal method is executed I get this error message:
"org.jbpm.JbpmException" was thrown. The message is: this token is locked by 
token[26] 

Can you tell me what I am doing wrong. I have tried using the transiation tag 
and adding an action to it, but the execute method never gets call in this 
instance. 

Thanks.



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126063#4126063

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126063
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - jbpm4jsf help

2008-02-01 Thread seanmcelroy
Hello,

Where can I find documentation on jbpm4jsf?

Many Thanks.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4125580#4125580

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4125580
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Can't add tasks or task actions using process designer in Ec

2008-01-30 Thread seanmcelroy
I am following the Jbpm Getting Started guide but my progress has been halted 
because I can't add a task to a task node using the graphical process designer 
in Eclipse. When I right click on a node there is no Add Task menu item. Is 
this a known problem and is there a fix?

I am using jbpm-jpdl-3.2.2 which contains version 3.1.0.SP1 of the designer and 
I am using Eclipse 3.3.0.

Many thanks.



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4124814#4124814

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4124814
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user