hello,
i use drools 5.0 and i have a big problem while i try to write a rule in xml format.
my example rule is the follow:
---------------------------------------------------------------------------
<rule-set name="cheese rules"and editor (eclipse) show me this error and im unable to run program:
xmlns="http://drools.org/rules"
xmlns:java="http://drools.org/semantics/java"
xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
xs:schemaLocation="http://drools.org/rules rules.xsd
http://drools.org/semantics/java java.xsd">
<rule name="Bob Likes Cheese">
<parameter identifier="bob">
<class>org.drools.examples.simple.Bob</class>
</parameter>
<java:condition>bob.likesCheese() == true</java:condition>
<java:consequence>
System.out.println( "Bob likes cheese." );
</java:consequence>
</rule>
</rule-set>
-----------------------------------------------------------