Hide Forgot
Date of First Response: 2008-01-11 04:20:35 project_key: SOA The RuleBaseConfiguration constructor: {code} public RuleBaseConfiguration(ClassLoader classLoder, Properties properties) { init( classLoader, properties ); } {code} contains a typo--the call to init should pass the (mis-spelled) classLoder, not the member field classLoader. As it is, the null member field is passed instead, resulting in the given ClassLoader instance being unused. Trivial fix: Just correct the spelling of the constructor arg name: {code} public RuleBaseConfiguration(ClassLoader classLoader, Properties properties) { init( classLoader, properties ); } {code}
Link: Added: This issue depends JBRULES-1336
If you think you can get this in for Beta2 then feel free. Check with Mike though.
It's already done, I just forgot to close the ticket