[jboss-user] [JBoss jBPM] - Since Ganymede the GPD has a strange appearance

2008-08-11 Thread SidKennedy
Hello to all, a week ago I switched to Ganymede. As I extend the jPDL Graphical Process Designer a little bit I need the GEF as well. But there is a strange effect with Ganymede. With Eclipse 3.3 the PaletteGroups looked like this screenshot I have from the JBoss-website [img]http://www.jboss.o

[jboss-user] [JBoss jBPM] - Add functionality to the GPD

2008-05-25 Thread SidKennedy
Hello to all, I decided to open a new thread because I think my issue is a little bit another direction than the one where I made a post. So I'll explain my problem: I want to add some functionality to the Graphical Process Designer (GPD) Plugin. I don't want to rewrite that plugin because I wa

[jboss-user] [JBoss jBPM] - Re: Expend Functionality of GPD

2008-05-23 Thread SidKennedy
I want to "upgrade" the GPD as well. But I don't really want to rewrite the code because I want that my changes will work with future versions of the GPD too. That means I want to develop a plugin which has the GPD as dependency and then want to add some functionality. And now I want to know if

[jboss-user] [JBoss jBPM] - Re: LazyInitializationException when setting variable

2007-11-26 Thread SidKennedy
can you explain what you did ti solve the problem for other users having the same. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=410#410 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=410 ___

[jboss-user] [JBoss Tools (users)] - Re: Eclipse 3.3 with JBoss IDE

2007-11-19 Thread SidKennedy
sorry and thanks a lot View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106043#4106043 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4106043 ___ jboss-user mailing list jboss-us

[jboss-user] [JBoss Tools (users)] - Eclipse 3.3 with JBoss IDE

2007-11-19 Thread SidKennedy
I'm using Eclipse 3.3 and JBoss AS 4.0.4.GA. To debug a J2EE-project I need to integrate JBoss within Eclipse. So I thought in installing the JBoss IDE 1.6.0GA. So I installed the JBoss Eclipse IDE with the Update Manager via http://download.jboss.org/jbosside/updates/stable. As I restarted Ecli

[jboss-user] [JBoss jBPM] - Re: Token.signal() throws Exception from FieldInstantiator

2007-11-06 Thread SidKennedy
I can't remove the xmlns because an exception is thrown otherwise. Here's the code of the JpdlExecutionInvoker: | public class JpdlExecutionInvoker implements ActionHandler { | | public void execute(ExecutionContext executionContext) throws Exception { | try { |

[jboss-user] [JBoss jBPM] - Re: Token.signal() throws Exception from FieldInstantiator

2007-11-06 Thread SidKennedy
what do you mean with "full config of the specifc node "? the complete xml-structure of this node? here is the action: | | | | http://www.w3.org/2001/XMLSchema-instance";> | UPPAAL-Plugin-Tool |

[jboss-user] [JBoss jBPM] - Re: How to get Pocess from server

2007-11-06 Thread SidKennedy
meanwhile I discovered that the code above is only possible if that class was deployed to the JBoss AS. But I want to get a ProcessDefinition/Instance from outside the AS. How can I do this? With EJB? Or is there an easier way? View the original post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss jBPM] - Token.signal() throws Exception from FieldInstantiator

2007-11-05 Thread SidKennedy
Hello again :) I have another problem. I have a processdefinition and I added some other xml-tags to a node for example as I thought that this is possible. Then I instantiate the definition, go for the RootToken and invoke signal() to start my process like this: | process.getRootToken().signa

[jboss-user] [JBoss jBPM] - Re: How to get Pocess from server

2007-11-05 Thread SidKennedy
meanwhile I found out that I can connect and get the ProcessDefinitions stored in the DB like this: | JbpmConfiguration config = JbpmConfiguration.getInstance(); | JbpmContext context = config.createJbpmContext(); | List processes = context.getGraphSession().findLatestProcessDefinitions();

[jboss-user] [JBoss jBPM] - Re: How to get Pocess from server

2007-11-05 Thread SidKennedy
or in another way the question is: How can I connect to a JBoss-server(working with a mysql-DB) to get a process? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4101749#4101749 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

[jboss-user] [JBoss jBPM] - How to get Pocess from server

2007-11-05 Thread SidKennedy
Hello to all, Here http://www.jboss.com/products/jbpm/docs/tutorial I found a description how to start a Process Instance on a server with that code snippet: | ExecutionService executionService = | JbpmServiceFactory.getInstance().openExecutionService("AlbertEinstein"); | executionSe

[jboss-user] [JBoss jBPM] - Re: compare ProcessDefinition's

2007-09-18 Thread SidKennedy
hmm...I get null when calling getFileDefinition() already. Maybe it's because I'm working in the context of an Eclipse Plugin? What do you think about comparing the nodes? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4085339#4085339 Reply to the post : http

[jboss-user] [JBoss jBPM] - Re: compare ProcessDefinition's

2007-09-17 Thread SidKennedy
getBytes(String) --> the String is what? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4085119#4085119 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4085119 ___ jboss-user m

[jboss-user] [JBoss jBPM] - compare ProcessDefinition's

2007-09-17 Thread SidKennedy
Hello again, how would you compare two ProcessDefinition? That's what I'm doing: I have a processdefinition.xml. It is parsed and a ProcessDefinition is created. This ProcessDefinition will be added to a list. Now it should not be possible to add the same ProcessDefinition to that list, but as I

[jboss-user] [JBoss jBPM] - Re: The org.xml.sax.SAXNotRecognizedException:

2007-09-16 Thread SidKennedy
Hello to all, I have to re-open this thread again, because I got the exception even so I'm using jdk 1.6. I want to post my Exception: [INFO] JbpmConfiguration - -using jbpm configuration resource 'jbpm.cfg.xml' [WARN] JpdlParser - -couldn't set xml parser property 'http://java.sun.com/xml/jaxp/

[jboss-user] [JBoss jBPM] - complete Javadoc

2007-08-24 Thread SidKennedy
hello to all, I'm the new one ;) For my future work I need jBPM and therefor I'm looking for the complete Javadoc. Just better than http://docs.jboss.com/jbpm/v3/javadoc. In fact there are all methods and so but only sparely documented. Can you help me? greets Sid View the original post : htt