[rules-users] New version of Combis Rule Editor

2008-03-05 Thread Marko Frankovic
Greetings
After months of inactivity we have finally released a new version of MSM
Combis Rule Editor.
Main features:
- Fully graphical rule representation
- Parser for drools, oracle and HQL/SQL
- Fast rule testing using HQL/SQL
- Replay of rule fireing (for drools only)
  - save/load capabilities
  - HTML representation
- Rule packaging
  - One rule per graph
  - Graphs are stored in a package for easier manipulation/overview
and more...

Java 1.5 required, java 1.6 recommended

Download it from http://www.sourceforge.net/projects/droolsruleedit and tell
us what you think of it
Any feedback is welcome.

MSM Team
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


Re: [rules-users] New version of MSMTeam RuleEditor is on SourceForge

2007-06-06 Thread Marko Frankovic

We're very sorry for the inconvenience, however the application hasn't been
tested on (any) Mac platforms
At this moment the application, on windows (and linux) platforms doesn't run
if started from a directory with empty spaces in it (for instance, desktop
since it is in ( e.g) "C:\Documents And Settings\name\Desktop"), also the
very same error appears.
The problem is somewhat inconveniant, (sorry about that) and is already
fixed and will be released shortly with a few other bug fixes (it's in
version 0.2, so a couple of bugs, unfortunately, exist).
This is probably the reason it doesn't work on your Mac. Since we do not
have any mac computers available to us (so it is kind of a bigger problem
than originaly assessed) we cannot test it whether the fix works on macs or
not :(
In the meantime please try some alternate fix (e.g. moving the app to
another directory).
P.S.
Thanks for the bug notice ;)


On 6/6/07, Fernando Meyer <[EMAIL PROTECTED]> wrote:


I got a verbose stacked-error trying to run on mac,
WARN  06 06 2007 17:18:53 [org.hibernate.util.JDBCExceptionReporter:71] -
SQL Error: -33, SQLState: S1000
ERROR 06 06 2007 17:18:53 [org.hibernate.util.JDBCExceptionReporter:72] -
Access is denied
WARN  06 06 2007 17:18:53 [org.hibernate.cfg.SettingsFactory:109] - Could
not obtain connection metadata
java.sql.SQLException: Access is denied

basically an permission or missing database error thing, do I need to
configure any native database to use with?

Fernando Meyer
[EMAIL PROTECTED]
GPG: 5A6D 3374 B055 A513 9A02  A03B 3DB3 7485 D804 DDFB


On Jun 6, 2007, at 6:44 AM, Marko Frankovic wrote:

Greetings!

Having difficulties in writing rules? Then try this visual editor!

What is new ?
- Fuzzy logic on one specific way
- New Decision and Arithmetic Tables are built in.
- Debuger (replay of rules fire)
- and much more

What is next ?
Bayes Decision Table
AHP Decision Table
Export to Oracle Syntax
Eclipse as new platform

You can get it here : http://sourceforge.net/projects/droolsruleedit
And a short presentation here : http://droolsruleedit.sourceforge.net/

All comments and suggestions are appreciated!

Best regards,
MSM Team

___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users



___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


[rules-users] New version of MSMTeam RuleEditor is on SourceForge

2007-06-06 Thread Marko Frankovic

Greetings!

Having difficulties in writing rules? Then try this visual editor!

What is new ?
- Fuzzy logic on one specific way
- New Decision and Arithmetic Tables are built in.
- Debuger (replay of rules fire)
- and much more

What is next ?
Bayes Decision Table
AHP Decision Table
Export to Oracle Syntax
Eclipse as new platform

You can get it here : http://sourceforge.net/projects/droolsruleedit
And a short presentation here : http://droolsruleedit.sourceforge.net/

All comments and suggestions are appreciated!

Best regards,
MSM Team
___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


Re: [rules-users] RE: Need DRL authoring Help

2007-04-05 Thread Marko Frankovic

Try this out : http://sourceforge.net/projects/droolsruleedit . It's in
early development stage, but it might help you.

On 4/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:


Drools developers,



In our specific use case we have customers who need to be able to write
validation rules and NOT have to resort to writing them in Java.  Hence our
interest in using drools as an open source 'standard' to potentially replace
a proprietary rules engine we already have.



In the previous case I mentioned where I want to do this:



> *rule* "UCCnet_DVE_Depth_All"

>   *when*

> catalogObject : CatalogObject( )

> String s = catalogObject.getElementValue("depth");

> *eval*( s == *null* || s == "" )

>   *then*

> logWriter.logDebug("Package Depth is Blank");

> *end*



This is because potentially, in our use for data validation, there might
be 50 values we need to compare against.  Those values need to be on the
drools (not java) side of the world.  So getting the result of
catalogObject.getElementValue("depth") into a String variable and being
able to use String methods like indexOf or multiple || cases is much more
desirable than crossing from the rule back into the object by having to call
getElementValue 50 times.  There are numerous, other cases, where the result
of catalogObject.getElementValue need to be saved into a local drools
variable and evaluated multiple times without encurring the overhead of
multiple calls back into java.



Please consider enhancing drl syntax to support this use case.  Is there a
bug/enhancement process for me to follow to submit this functionality
request.



Thanks



John









Date: Thu, 5 Apr 2007 16:47:07 +1000

From: "Michael Neale" <[EMAIL PROTECTED]>

Subject: Re: [rules-users] RE: Need DRL authoring Help

To: "Rules Users List" 

Message-ID:

  <[EMAIL PROTECTED]>

Content-Type: text/plain; charset="iso-8859-1"



OK you are really bending what you would use rules for, I really wouldn't
recommend that. flattening the object model would allow you to write rules
over it, but as it stands, its just going to be a bit difficult for you.



catalogObject : CatalogObject( )



*eval*( catalogObject.getElementValue("depth") == *null* ||

catalogObject.getElementValue("depth") == "" )



On 4/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

>

>  Ok,  Thanks for the help on the drl syntax.

>

> So this works.

>

> *rule* "UCCnet_DVE_Depth_All"

>   *when*

> catalogObject : CatalogObject( )

> *eval*( catalogObject.getElementValue("depth") == *null* ||

> catalogObject.getElementValue("depth") == "" )

>   *then*

> logWriter.logDebug("Package Depth is Blank");

> *end*

>

> But how do I get the drl parser to accept something like this:

>

> *rule* "UCCnet_DVE_Depth_All"

>   *when*

> catalogObject : CatalogObject( )

> String s = catalogObject.getElementValue("depth");

> *eval*( s == *null* || s == "" )

>   *then*

> logWriter.logDebug("Package Depth is Blank");

> *end*

>

> I am getting an Unexpected token 's'  InvalidRulePackage



___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users


___
rules-users mailing list
rules-users@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/rules-users