2nd CFP - 6th Int. Workshop on Event-Driven Business Process Management (edBPM12)
by Adrian Paschke
[ our apologies should you receive this message more than one time ]
6th Int. Workshop on Event-Driven Business Process Management (edBPM12)
collocated with BPM 2012
Tallinn, Estonia, 3-7 September 2012
http://icep-edbpm12.fzi.de/
++++ SUBMISSION DEADLINE - JUNE 1st +++++
Workshop Themes
--------------------------
Authors are invited to submit novel contributions in the prior described
problem domain.
* Event-driven BPM: Concepts
o Role of event processing in BPM
o Business Events: types and representation
o Event stream processing in business processes
o Data- and event-driven business processes
o Evaluation/ROI of event-driven BPM
o Event-driven SOA
o EDA and BPM
o Real/time awareness in BPM
o Context in BPM
* Design-time CEP and BPM
o Modelling languages, notations and methods for event-driven BPM
o Event Patterns: Definition / Creation / Representation /
Learning
o BPMN and event processing
o Modelling unknown/similar events in business processes
o Modelling events in human-oriented tasks
o Semantics/Ontologies for event-driven BPM
o Publish/subscription mechanism and process modelling
* Run-time CEP and BPM
o Event pattern detection
o BPEL and event processing
o Reasoning about unknown/similar events
o Distributed event processing
o Dynamic workflows
o Ad-hoc workflows
* Applications/Use cases for event-driven BPM
o Event-driven monitoring/BAM
o Event-driven SLA monitoring
o Domains: Logistics, Automotive, .
o Event processing and Internet of Services
Important Dates
--------------------------
Deadline paper submissions: 1 June 2012
Notification of acceptance: 2 July 2012
Camera-ready papers: 30 July 2012
Workshops: 3 September 2012
Submission
--------------------------
The following types of submission are solicited:
- Long paper submissions, describing substantial contributions of novel
ongoing work. Long papers should be at most 12 pages long.
- Short paper submissions, describing work in progress. These papers should
be at most 6 pages long.
- Use case submission, describing results from an edBPM use case. These
papers should be at most 4 pages long.
Papers should be submitted in the new LNBIP format
(http://www.springer.com/computer/lncs?SGWID=0-164-6-791344-0). Papers have
to present original research contributions not concurrently submitted
elsewhere. The title page must contain a short abstract, a classification of
the topics covered, preferably using the list of topics above, and an
indication of the submission category (Long Paper/ Short Paper). Accepted
paper will be published in the joint workshops proceeding (Springer).
For submission, please visit
http://www.easychair.org/conferences/?conf=edbpm12.
Organizing Committee
--------------------------
Nenad Stojanovic
FZI - Research Center for Information Technologies at the University of
Karlsruhe, Germany.
nstojano (at) fzi dot de
Opher Etzion
IBM Research Lab in Haifa
OPHER (at) il dot ibm dot com
Adrian Paschke
Corporate Semantic Web, Free University Berlin, Germany and RuleML Inc.,
Canada
paschke (at) inf dot fu-berlin dot de
Christian Janiesch
Karlsruhe Institute of Technology (KIT)
Christian.Janiesch (at) kit dot edu
--
NEU: FreePhone 3-fach-Flat mit kostenlosem Smartphone!
Jetzt informieren: http://mobile.1und1.de/?ac=OM.PW.PW003K20328T7073a
14 years, 1 month
Object activiates same rule many times
by Christina Lau
Hi all,
I find an odd pattern in the audit log. When an Object is inserted to the
working memory, activation is created many times on same rule. The more
objects are inserted, the duplicated activations are growing exponentially
which degrade the performance a lot.
Here attached part of the audit log:
http://drools.46999.n3.nabble.com/file/n4000630/rule-DOCSEP-1337325521971...
rule-DOCSEP-1337325521971.log
In the log,
- when object (130) is inserted, rule "C020 - Gate charge (Out M)-B" is
activiated 129 times.
- when object (131) is inserted, rule "C020 - Gate charge (Out M)-B" is
activiated 130 times.
Here is the rule of "C020 - Gate charge (Out M)-B",
The "insert" in RHS only add ChargeDetailRefSeqEntity to working memory that
I don't think it causes the recursive activation.
And I'd already set no-loop to true. Does anyone offer some help here?
Thank you very much,
Christina
--
View this message in context: http://drools.46999.n3.nabble.com/Object-activiates-same-rule-many-times-...
Sent from the Drools: User forum mailing list archive at Nabble.com.
14 years, 1 month
Drools verifier - redundancy detection
by bitter
I would like to use drools-verifier to detect redundancy in my drl files. But
drools-verifier can not detect redundancy even in simple drl. Maybe I do
something wrong ;/.
*Simple drl file:*
rule "rule 1"
when
$person: Person(age==16, name=="Anna")
then
retract($person);
end
rule "rule 4"
when
$person: Person(age==16, name=="Anna")
then
retract($person);
end
*And my test:*
@Test
public void verifyRules() {
//given
VerifierBuilder vbuilder = VerifierBuilderFactory.newVerifierBuilder();
Verifier verifier = vbuilder.newVerifier();
verifier.addResourcesToVerify(new
ClassPathResource("qualityVerification.drl", getClass()), ResourceType.DRL);
if (verifier.hasErrors()) {
for(VerifierError ve : verifier.getErrors()) {
System.out.println(ve.getMessage());
}
throw new RuntimeException("ERRORS ");
}
//when
verifier.fireAnalysis();
//then
VerifierReport report = verifier.getResult();
System.out.println(">>>>>>>>> ERRORS: ");
for(VerifierMessageBase vmb : report.getBySeverity(Severity.ERROR)) {
System.out.println(vmb + ". Type: " + vmb.getMessageType());
}
System.out.println(">>>>>>>>> WARNINGS: ");
for(VerifierMessageBase vmb : report.getBySeverity(Severity.WARNING)) {
System.out.println(vmb + ". Type: " + vmb.getMessageType());
}
System.out.println(">>>>>>>>> NOTES: ");
for(VerifierMessageBase vmb : report.getBySeverity(Severity.NOTE)) {
System.out.println(vmb + ". Type: " + vmb.getMessageType());
}
System.out.println(">>>>>>>>> MISSING RANGE: ");
for(MissingRange mr : report.getRangeCheckCauses()) {
System.out.println(mr);
}
}
*OUTPUT:*
>>>>>>>>> ERRORS:
>>>>>>>>> WARNINGS:
Warning id = 0:
faulty : LiteralRestriction from rule [rule 4] value '== Anna'
Rule base covers == Anna, but it is missing != Anna
Cause trace:
. Type: MISSING_EQUALITY
Warning id = 1:
faulty : LiteralRestriction from rule [rule 4] value '== 16'
Rule base covers == 16, but it is missing != 16
Cause trace:
. Type: MISSING_EQUALITY
Warning id = 2:
faulty : LiteralRestriction from rule [rule 1] value '== Anna'
Rule base covers == Anna, but it is missing != Anna
Cause trace:
. Type: MISSING_EQUALITY
Warning id = 3:
faulty : LiteralRestriction from rule [rule 1] value '== 16'
Rule base covers == 16, but it is missing != 16
Cause trace:
. Type: MISSING_EQUALITY
>>>>>>>>> NOTES:
>>>>>>>>> MISSING RANGE:
Gap: (Field 'age' from object type 'Person') Operator = '<' 16 from rule:
[rule 4]
Gap: (Field 'age' from object type 'Person') Operator = '>' 16 from rule:
[rule 4]
Gap: (Field 'age' from object type 'Person') Operator = '<' 16 from rule:
[rule 1]
Gap: (Field 'age' from object type 'Person') Operator = '>' 16 from rule:
[rule 1]
Is it a bug or I do something wrong?
--
View this message in context: http://drools.46999.n3.nabble.com/Drools-verifier-redundancy-detection-tp...
Sent from the Drools: User forum mailing list archive at Nabble.com.
14 years, 1 month
KnowledgeRuntimeLogger file logger
by bitter
I registered file KnowledgeRuntimeLogger (logging output will be similar to
that generated by the registered WorkingMemoryEventListener) and trying to
analize output xml.
Here is output content:
<object-stream>
<org.drools.audit.event.ActivationLogEvent>
<type>4</type>
<activationId>check education - nvq [1]</activationId>
<rule>check education - nvq</rule>
<declarations>$creditApplication=CreditApplication{scoringResult=0,
clientAge=27, clientEducation=NVQ}(1)</declarations>
</org.drools.audit.event.ActivationLogEvent>
<org.drools.audit.event.ObjectLogEvent>
<type>1</type>
<factId>1</factId>
<objectToString>CreditApplication{scoringResult=0, clientAge=27,
clientEducation=NVQ}</objectToString>
</org.drools.audit.event.ObjectLogEvent>
<org.drools.audit.event.ActivationLogEvent>
<type>6</type>
<activationId>check education - nvq [1]</activationId>
<rule>check education - nvq</rule>
<declarations>$creditApplication=CreditApplication{scoringResult=0,
clientAge=27, clientEducation=NVQ}(1)</declarations>
</org.drools.audit.event.ActivationLogEvent>
<org.drools.audit.event.ActivationLogEvent>
<type>7</type>
<activationId>check education - nvq [1]</activationId>
<rule>check education - nvq</rule>
<declarations>$creditApplication=CreditApplication{scoringResult=20,
clientAge=27, clientEducation=NVQ}(1)</declarations>
</org.drools.audit.event.ActivationLogEvent>
</object-stream>
Could anyone explain me why ACTIVATION_CREATED ( type 4) event is logged
before INSERT( type 1) event?
--
View this message in context: http://drools.46999.n3.nabble.com/KnowledgeRuntimeLogger-file-logger-tp40...
Sent from the Drools: User forum mailing list archive at Nabble.com.
14 years, 1 month
Classnotfound exception on POJO model upload in guvnor
by mpgong
Hello,
I'm trying to use Guvnor but when i upload my POJO models that my DRL needs
i get a classnotfoundexception even though i uploaded the jar that has the
class in it first.
So i basically upload a jar that provides some common classes,utilities,
that have no dependencies other than on the core java libs. This jar
uploads fine. I then upload my model jar that contains my facts and other
classess that the DRL needs and it complains that it can't find the class
from the first common jar even though i uploaded it first and it is loaded
without errors.
How do i load all of my jars so that they are available in Guvnor to use
such as in creating a test scenario? It looks like the jars are upload but
i get the error, i can also build the package but i'm worried it won't work
when i try to use it in my app. Any ideas or insight to this issue.
I'm using drools.5.3.0 final.
Thanks
--
View this message in context: http://drools.46999.n3.nabble.com/Classnotfound-exception-on-POJO-model-u...
Sent from the Drools: User forum mailing list archive at Nabble.com.
14 years, 1 month
Plugging custom verification rules into Guvnor
by Joe Ammann
Hi all
coming from another thread [1], Wolfgang pointed me to the Guvnor/Drools
verifier. I am looking now for ways to implement my own verification
rules into Guvnor.
Ideally, I would like to be able to hook into 2 places in Guvnor with
custom rules (maybe these are going actually through the same code path
in Guvnor)
1) When editing BRLs (or other business oriented asset types) and
selecting "Source -> Verify"
2) When doing "Run Analysis" on a package in QA Menu
I searched the documentation and had a quick look at the source of
Guvnor, but wasn't able to quickly find the way to achieve this. Any
pointers?
--
CU, Joe
[1] http://lists.jboss.org/pipermail/rules-users/2012-May/026518.html
14 years, 1 month
Exception on at org.drools.reteoo.LeftTuple.get(LeftTuple.java:300) drools 5.0.1
by Joana Lopes
Hi There,
I'm new to drools and i'm having a problem with a rule which has an OR:
/* Rule 25_OFF
--------------------------------------------------------------------------------
*/
rule "25_OFF"
when
$p1:InferenceFactValue( param!=null, param.parameterName == "sonar_8_cm",
$v1:param.valueFloat >= 10 ) or
$p2:InferenceFactValue( param!=null, param.parameterName == "sonar_8_cm",
$v2:param.valueFloat >= 10 )
then
InferenceUtils.log( LogLevel.DEBUG, InferenceUtils.DROOLS_RULE, "Global
Clock: " + InferenceDateUtils.dateString( globalClock, false ), true, false
);
InferenceUtils.log( LogLevel.DEBUG, InferenceUtils.DROOLS_RULE,
"\t\tRegra 25_OFF " + "25", true, false );
InferenceFactValue[] params = {$p1, $p2};
RuleFire.addEndAlarm( inferenceAgent, droolsEngine, "AlarmPackage",
"25", "25", params, globalClock );
end
No errors in knowledge builder
What happens is:
org.drools.runtime.rule.ConsequenceException: java.lang.NullPointerException
at
org.drools.runtime.rule.impl.DefaultConsequenceExceptionHandler.handleException(DefaultConsequenceExceptionHandler.java:23)
at org.drools.common.DefaultAgenda.fireActivation(DefaultAgenda.java:943)
at org.drools.common.DefaultAgenda.fireNextItem(DefaultAgenda.java:885)
at org.drools.common.DefaultAgenda.fireAllRules(DefaultAgenda.java:1086)
at
org.drools.common.AbstractWorkingMemory.fireAllRules(AbstractWorkingMemory.java:660)
at
org.drools.common.AbstractWorkingMemory.fireAllRules(AbstractWorkingMemory.java:627)
at
org.drools.impl.StatefulKnowledgeSessionImpl.fireAllRules(StatefulKnowledgeSessionImpl.java:183)
at
pt.holos.dva.agents.inference.process.DroolsInferenceEngine.fireAllRules(DroolsInferenceEngine.java:644)
at
pt.holos.dva.agents.inference.process.DroolsInferenceEngine.receiveDataFromBuffer(DroolsInferenceEngine.java:342)
at
pt.holos.dva.agents.inference.process.BufferedDataReceiver.sendDataToDrools(BufferedDataReceiver.java:454)
at
pt.holos.dva.agents.inference.process.BufferedDataReceiver.run(BufferedDataReceiver.java:68)
Caused by: java.lang.NullPointerException
at org.drools.reteoo.LeftTuple.get(LeftTuple.java:300)
at
AlarmPackage.Rule_25_OFF_0ConsequenceInvoker.evaluate(Rule_25_OFF_0ConsequenceInvoker.java:15)
at org.drools.common.DefaultAgenda.fireActivation(DefaultAgenda.java:934)
... 9 more
I've tried to see the source code and the declaration
in org.drools.reteoo.LeftTuple.get(LeftTuple.java:300) is null. Can you
give me some pointers please?
Thank you,
Joana P Lopes
--
LinkedIn - http://pt.linkedin.com/in/joanpl
My Bla Bla Bla: http://joanpl.blogspot.com
.......................................................
The intuitive mind is a sacred gift and the rational mind is a faithful
servant. We have created a society that honors the servant and has
forgotten the gift. Albert Einstein.
"Doubt is not a pleasant condition, but certainty is absurd."
Voltaire
14 years, 1 month
Building Guvnor from source
by anchi
Hi!
I'm trying to build Guvnor from source. I have followed instructions listed
here:
https://github.com/droolsjbpm/droolsjbpm-build-bootstrap/blob/master/READ...
I am able to start the application. After clicking on URL in Development
Mode tab, Guvnor app starts to load but after a few seconds becomes
unresponsive and I get an OutOfMemoryException:
[org.drools.guvnor.Guvnor] Out of memory; to increase the amount of memory,
use the -Xmx flag at startup (java -Xmx128M ...)
I have increased VM memory, however, no matter how much memory I give, it
always throws this exception.
I get this output in the console:
WARN 17-05 16:14:26,525
(RulesRepositoryManager.java:createRulesRepository:65) Creating
RulesRepository with default username.
INFO 17-05 16:14:26,530 (RulesRepositoryConfigurator.java:getInstance:46)
Creating an instance of the RulesRepositoryConfigurator.
WARN 17-05 16:14:30,598
(RulesRepositoryManager.java:createRulesRepository:65) Creating
RulesRepository with default username.
WARN 17-05 16:14:31,764
(RulesRepositoryManager.java:createRulesRepository:65) Creating
RulesRepository with default username.
Any suggestions?
--
View this message in context: http://drools.46999.n3.nabble.com/Building-Guvnor-from-source-tp3999132.html
Sent from the Drools: User forum mailing list archive at Nabble.com.
14 years, 1 month