All things Artificial Intelligence related: Rules, Processes, Events, Agents, Planning, Ontologies and more :)
Drools DotNet 3.0
That's pretty cool. I just saw this blog today. Someone ran into limitations of windows worflow engine and tried the old drools.net 2.http://lovedjohnysmith.wordpress.com/2007/03/26/droolsnet-net-rules-engine/I posted a comment suggesting they try the jbossrules3, but I didn't realize there's already drools3.net.you might want to drop the guy a comment. seems like a chance to get more .NET users.
Hi,I'm using Drools.NET and run into a Decision Table specific problem.If I merge cells in the first row for the ObjectType and put the conditionst into the second row, the parser throws 'ScriptTempalteIsNull' Exception.The main problem is that if I'm using the same class in more than one column then the parser creates when Person(Age==$param) Person(Likes==$param) ...and not when Person(Age==$param, Likes==$param) ...drl rules.I like the decision table modell - but how can I use it?Thanx guys!
Solution:when p:Person(Age==$param) p:Person(Likes==$param) ...
That's pretty cool. I just saw this blog today. Someone ran into limitations of windows worflow engine and tried the old drools.net 2.
ReplyDeletehttp://lovedjohnysmith.wordpress.com/2007/03/26/droolsnet-net-rules-engine/
I posted a comment suggesting they try the jbossrules3, but I didn't realize there's already drools3.net.
you might want to drop the guy a comment. seems like a chance to get more .NET users.
Hi,
ReplyDeleteI'm using Drools.NET and run into a Decision Table specific problem.
If I merge cells in the first row for the ObjectType and put the conditionst into the second row, the parser throws 'ScriptTempalteIsNull' Exception.
The main problem is that if I'm using the same class in more than one column then the parser creates
when
Person(Age==$param)
Person(Likes==$param)
...
and not
when
Person(Age==$param, Likes==$param)
...
drl rules.
I like the decision table modell - but how can I use it?
Thanx guys!
Solution:
ReplyDeletewhen
p:Person(Age==$param)
p:Person(Likes==$param)
...