I may have missed this, too, but I&#39;d like to have a map of package+rulename to .DRL/.DSLR-pathname+linenumber.<br><br>The DRL parser shouldn&#39;t have any trouble delivering this info, right Edson?<br><br>I have produced this information with a kludgy hack, and it&#39;s great for producing documentation answering question such as:<br>
<br>&quot;Whera are all my rules?&quot;<br>package appl.domain<br>  &quot;find disjoint pairs&quot; at /appl/domain/elements.dslr:13<br>  &quot;find intersecting pairs&quot; at /appl/domain/elements.dslr:31<br>  &quot;find an element with thirteen numbers&quot; at /appl/domain/elements.dslr:61<br>
  &quot;find an element with twelve numbers&quot; at /appl/domain/elements.dslr:47<br>  &quot;find subset pairs&quot; at /appl/domain/elements.drl:21<br><br>&quot;Where is some fact class used?&quot;<br>class appl.domain.Element used in:<br>
  &quot;find an element with twelve numbers&quot; in appl.domain at /appl/domain/elements.dslr:47<br>  &quot;find subset pairs&quot; in appl.domain at /appl/domain/elements.drl:21<br>  &quot;find disjoint pairs&quot; in appl.domain at /appl/domain/elements.dslr:13<br>
  &quot;find an element with thirteen numbers&quot; in appl.domain at /appl/domain/elements.dslr:61<br>  &quot;find intersecting pairs&quot; in appl.domain at /appl/domain/elements.dslr:31<br><br>&quot;Where is the rule causing a RuntimeException?&quot;<br>
Exception in thread &quot;main&quot; rss.drools.monitor.ActivationLoopError: looping over rules &quot;find an element with twelve numbers&quot; at /appl/domain/elements.dslr:47,  &quot;find an element with thirteen numbers&quot; at /appl/domain/elements.dslr:61 (all in appl.domain)<br>
<br>The class should be Serializable, and separately retrievable from the KnowledgeBuilder.<br><br>Any chance?<br>-W<br>