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...
Sent from the Drools - User mailing list archive at
Nabble.com.