[jboss-user] [JBoss jBPM] - Re: special types of Nodes

2008-05-01 Thread yairfr
yes, the question was how do i : 1. advance to the node under the fork ? by pi.signal() ? 2. why don't i get the task under the fork as unfinished task ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4148056#4148056 Reply to the post :

[jboss-user] [JBoss jBPM] - special types of Nodes

2008-04-30 Thread yairfr
hi , we have a basic JBPM based system , that supports process that is consisted os TaskNode type nodes . we want to insert Fork ,Join, and espesially Sub-Process type of Nodes . i have tried to add support to Fork Node , but it doesn't seem to work with our implementation . the problem is

[jboss-user] [JBoss jBPM] - jbpm.cfg.xml default is taken instead of mine!!

2008-02-25 Thread yairfr
hi, i am working on SqlServer on Jboss . i have in my project a config directory these files : SqlServer_hibernate.cfg.xml jbpm.cfg.xml hibernate.properties jbpm.cfg.xml code: | jbpm-configuration | jbpm-context | service name='persistence'

[jboss-user] [JBoss jBPM] - problem integrating JBPM HIBERNATE

2008-02-04 Thread yairfr
hi, i am trying to integrate the hibernate with the JBPM (that worked fine when we have worked JDBC) . i have done it by injecting the hibernate session into the JBPM one : | JbpmConfiguration conf = JbpmConfiguration.getInstance(); | context = conf.createJbpmContext(); |

[jboss-user] [JBoss jBPM] - Re: problem integrating JBPM HIBERNATE

2008-02-04 Thread yairfr
things i didn't mention : i am working on SqlServer , and probably some of the definitions are wrong like the c3p0 , it connects to oracle instead to the sqlserver . i have this hirarchy : home - Config - hibernate.cfg.xml hibernate.properties where should the jbpm.cfg.xml sit

[jboss-user] [JBoss jBPM] - Making JBPM and Hibernate Work Together

2008-01-02 Thread yairfr
hi , i am trying to make JBPM use Hibernate session . the JBPM code worked with before . the error i get is : | 16:15:07,937 ERROR [STDERR] org.hibernate.MappingException: Named query not known: GraphSession.findLatestProcessDefinitionQuery | | at

[jboss-user] [JBoss jBPM] - Re: Making JBPM and Hibernate Work Together

2008-01-02 Thread yairfr
i found part of the problem : JBPM XML files were not mapped in the hibernate.cfg.xml file . when i mapped them all i got this error : | | 2008-01-02 17:55:14,468 INFO [STDOUT] 17:55:14,452 ERROR [[/Total-e]] StandardWrapper.Throwable | java.lang.NoClassDefFoundError:

[jboss-user] [JBoss jBPM] - Re: Installation JBPM on SqlServer

2007-12-20 Thread yairfr
Thanks very Much !! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4114557#4114557 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4114557 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Installation JBPM on SqlServer

2007-12-19 Thread yairfr
hi, we are moving our application from Oracle to SqlServer DB . is there Installation Script to SqlServer like the Once for Oracle ? i need them ASAP !! Thanks, Yair View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4114242#4114242 Reply to the post :

[jboss-user] [JBoss jBPM] - installation script of jbpm tables

2007-12-02 Thread yairfr
hi, i am migrating the DataBase from oracle to SqlServer. i wonder if you can direct me where i can find insallation scripts for the JBPM tables on sqlserver . apparently it it is not a stright forward task View the original post :

[jboss-user] [JBoss jBPM] - problem with attributes of Node - XPath

2007-08-16 Thread yairfr
hi , i am showing a process with it's currrent task (Node) . the code that retrieve the measurments of the red box that will wrap the Node is : | public int[] extractBoxConstraint(Element root, Token currentToken) { | int[] result = new int[4]; |

[jboss-user] [JBoss jBPM] - Re: hook the JBPM engine to JBOSS

2007-08-09 Thread yairfr
1. thanks for the answer 2. i wrote a hook function : | protected void hookFunc() | { | logger.debug(hookFunc::Start); | conf = JbpmConfiguration.getInstance(); | context = conf.createJbpmContext(); | graphSession =

[jboss-user] [JBoss jBPM] - hook the JBPM engine to JBOSS

2007-08-07 Thread yairfr
hi, is there a way to attach the load the JBPM engine (to load all the Configuration of JBPM) to the JBOSS server initialization ? i want to save a time at the later stages of the application, in order that the user won't waut until the getGraphSession will finish 20 seconds for example.

[jboss-user] [JBoss jBPM] - showing image of current process stage

2007-08-06 Thread yairfr
hi , i develped a small program that reads the gpd.xml and the processdefinition.xml of the process and show the map of the process with a red rectangle arround the current task of the process . sometimes the rectange is not sorrounding the Node but is in other location , i suspect it is

[jboss-user] [JBoss jBPM] - Re: showing image of current process stage

2007-08-06 Thread yairfr
here it is. you need to print via JSPout the output. to see. th function get the process instance id | public StringBuffer showProcessImage (long processInstanceId) { | byte[] gpdBytes = null; | byte[] imageBytes = null; | Token currentToken=null;

[jboss-user] [JBoss jBPM] - how can i show a graph of the instance that i specify ?

2007-07-25 Thread yairfr
hi, i am trying to show the graph of the current task in the process instance that i pass by the taskInstanceId parameter. today i can see the general graph of the process , not of the instance of the process . the error in on : gpdBytes = fileDefinition.getBytes(gpd.xml); because the