[jboss-user] [JBoss jBPM] - Re: Deploy new process definitions by the client

2007-08-25 Thread kukeltje
it is not called zipdeployer, it is the 'generic' deployer that e.g. the servlet in the webapp uses. it is a static method on the ProcessDefinition.. surprising isn't it... I think you should search a little more clever in the future (no offence) View the original post :

[jboss-user] [JBoss jBPM] - Re: Deploy new process definitions by the client

2007-08-24 Thread kukeltje
be creative... there is an api to deploy processes so you can do whatever you want. e.g. build a custom webpage or whatever... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077840#4077840 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Deploy new process definitions by the client

2007-08-24 Thread dingo001
kukeltje wrote : be creative... there is an api to deploy processes so you can do whatever you want. e.g. build a custom webpage or whatever... Using jbpmContext.deployProcessDefinition(definition); I can deploy the definition. What about the custom actions, assignments and tasks that might

[jboss-user] [JBoss jBPM] - Re: Deploy new process definitions by the client

2007-08-24 Thread kukeltje
look at the zipdeployer in the source... it parses an xml file, creates objects and deploys them ... oh... btw. this deployer can be used by you as well.. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4077868#4077868 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Deploy new process definitions by the client

2007-08-24 Thread dingo001
kukeltje wrote : look at the zipdeployer in the source... it parses an xml file, creates objects and deploys them | | ... oh... btw. this deployer can be used by you as well.. having something like this would be great.. where can i find it. i searched the source.. no such animal.