0 Replies Latest reply on Jun 19, 2009 2:34 AM by tsurdilovic

    Drools RuleFlow integration

    tsurdilovic

      We added support for Drools RuleFlow (JBSEAM-4219):


      You can now add a ruleflow (.rf or .rfm) as part of your rule files list, for example


      <drools:rule-base name="policyPricingRules" rule-files="policyPricingRules.drl, policyPricingRulesFlow.rf"/> 





      Note since Seam uses Drools5 jars now, when using the Drools 4.x RuleFlow (.rfm) format you need to specify the


      -Ddrools.ruleflow.port=true




      system property on server startup. This is however still an experimental feature and we advise to use the Drools5 (.rf) format if possible.      


      You can now also start a ruleflow process from your pageflow using the startProcessId element, for example:




      <handler class="org.jboss.seam.drools.DroolsDecisionHandler">
              <workingMemoryName>orderApprovalRulesWorkingMemory</workingMemoryName>
              <!-- if a ruleflow was added -->
              <startProcessId>approvalruleflowid</startProcessId>
              <assertObjects>
                  <element>#{customer}</element>
                  <element>#{order}</element>
                  <element>#{order.lineItems}</element>
              </assertObjects>
          </handler>





      These changes should be available in 2.2.0.GA.