In case anyone else has this problem, I've managed to do it using System
properties:
System.setProperty("drools.removeIdentities", "true");
But ideally I'd still like to be able to do it via the Kagent if possible..
--
View this message in context:
http://drools.46999.n3.nabble.com/RemoveIde
Hi,
I'm using a KnowledgeAgent to create a KnowledgeBase. However, I need to
turn off Identities. In previous projects (not using knowledgeAgent) I've
done:
RuleBaseConfiguration conf = new RuleBaseConfiguration();
conf.setRemoveIdentities( true );
KnowledgeBase kbase = KnowledgeBaseFactory.newK