I found that my problem was that my drools-server knowledge session was configured as a stateless session. In the knowledge-services.xml, the default session was configured as follows:
<drools:ksession id="ksession1" type="stateful" kbase="kbase1" node="node1"/> I changed it to: <drools:ksession id="ksession1" type="stateless" kbase="kbase1" node="node1"/> And now all my rules fire. (Also, I inserted a FireAllRulesCommand after my StartProcessCommand) before invoking the server. -- View this message in context: http://drools-java-rules-engine.46999.n3.nabble.com/RuleFlow-only-calling-first-RuleFlowGroup-when-called-through-drools-server-tp2514244p2526748.html Sent from the Drools - User mailing list archive at Nabble.com. _______________________________________________ rules-users mailing list [email protected] https://lists.jboss.org/mailman/listinfo/rules-users
