Re: [rules-users] JBPM fails to resume a rehydrated active process instance

2012-06-07 Thread Alberto R. Galdo
Finally found the problem. JBPM's WSHumanTaskHandler connects to JBPM HumanTask server only when executing a workitem. If a connection is already established it doesn't connect again so it is durable. At connection time, it also registers taskEventHandlers, one of them for receiving TaskCompleted

[rules-users] getting HEAP space error when decision table contains 26000 records

2012-06-07 Thread zeeshan
Hi All ! Please find the attached Decision table which contains 26000 records. It is giving Heap space error. When I tested with few hundred records inn the tale it works fine. Though my Eclipse helios shows ample amount of memory i.e. 426 M. Shall I increase more?? If so, how.?? Thanks

Re: [rules-users] Guvnor Guided Editor

2012-06-07 Thread zeeshan
Hi Amrita ! refer to this link ---> http://drools.46999.n3.nabble.com/rules-users-can-t-put-formula-on-Guvnor-screen-td3987830. http://drools.46999.n3.nabble.com/rules-users-can-t-put-formula-on-Guvnor-screen-td3987830. there was possibly a bug in 5.4 CR1 that has been fixed by Mark in some

[rules-users] Guvnor Guided Editor

2012-06-07 Thread Amrita Jain
Hi, Does Guvnor provide capability to use expression editor in RHS (or then clause) If so, is there any setting I need to enable. Also, I do see I can assign a formula, while modifying a field value of a model. But I cant enter any text in that box. I am trying to do something like a.count = a.c

[rules-users] Drools & jBPM Workshops : June : WDC NYC

2012-06-07 Thread Mark Proctor
http://blog.athico.com/2012/06/drools-jbpm-workshops-june-wdc-nyc.html pasted from url--- JBoss BRMS (Drools and jBPM) Workshops Drools 5, the upstream for JBoss BRMS, is a Business Logic integration Platform, and provides a unified and integrated platform for Rules, Workflow and Event P

Re: [rules-users] drools osgi issue

2012-06-07 Thread jnorris
Here's a second issue that shows up in the ESB log file: 15:09:09,859 | ERROR | ExtenderThread-2 | ContextLoaderListener| 111 - org.springframework.osgi.extender - 1.2.1 | Application context refresh failed (OsgiBundleXmlApplicationContext(bundle=keystone-bpm-services, config=osgibundl

Re: [rules-users] Initial rule delay

2012-06-07 Thread Paul R.
Thanks Wolfgang, that works for me. On Thu, Jun 7, 2012 at 1:14 PM, Wolfgang Laun wrote: > The several distinct activations created from the rule fire once. To > see this, add this snippet: > >session.addEventListener( new DefaultAgendaEventListener() { >public void beforeActivationFi

[rules-users] drools osgi issue

2012-06-07 Thread jnorris
Hi All, I'm trying to deploy web services wired to drools via spring into servicemix. Everything seems to be installed and active. However, when I deploy the application and spring tries to wire in the beans I get the following exception: 13:46:26,359 | ERROR | ExtenderThread-1 | WaiterApplicat

Re: [rules-users] guvnor repo with Oracle issue

2012-06-07 Thread jnorris
Hi Mike, I actually bumped up the settings to -Xms2048m -Xmx2048m -XX:MaxPermSize=512m. These settings are in standalone-conf.xml and are for running jboss which is being started using the standalone.bat command. No builds or eclipse involved. Anyway I'm still getting the out of memory exceptio

[rules-users] Multiple DSL files with Eclipse IDE

2012-06-07 Thread gboro54
I would like to add more then one DSL file to a DSLR file. I understand that semantically the knowledge base will allow this but is there away to allow eclipse the ability to view the DRL when multiple DSLs are being used? I found JBRULES-1615 but I am not sure if this was actually resolved or just

Re: [rules-users] Initial rule delay

2012-06-07 Thread Wolfgang Laun
The several distinct activations created from the rule fire once. To see this, add this snippet: session.addEventListener( new DefaultAgendaEventListener() { public void beforeActivationFired(BeforeActivationFiredEvent event) { super.beforeActivationFired( event );

Re: [rules-users] Initial rule delay

2012-06-07 Thread Paul R.
Hi Wolfgang, I've attached a simple test case, which demonstrates the repetitions. If you run it, you'll see that the rule fires 3 times. [Tested in 5.4] count = 5, time = 5000ms count = 5, time = 1ms count = 5, time = 15000ms Changing the repeat-interval to 0 has identical results. Changing