[JBoss JIRA] Created: (JBRULES-446) Support rulebase configuration via jsr94 registerRuleExecutionSet properties
by Juergen none (JIRA)
Support rulebase configuration via jsr94 registerRuleExecutionSet properties
----------------------------------------------------------------------------
Key: JBRULES-446
URL: http://jira.jboss.com/jira/browse/JBRULES-446
Project: JBoss Rules
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: JSR94
Affects Versions: 3.0.4
Reporter: Juergen none
Assigned To: Mark Proctor
Priority: Minor
Is it possible to support rulebase configuration via jsr94 registerRuleExecutionSet properties?
Suggestion:
- new property in
org.drools.jsr94.rules.Constants.java:41:
//jh: added to support handing a rulebase config via jsr94
/** <code>RuleExecutionSet</code> rulebase config constant. */
public static final String RES_CONFIG = "javax.rules.admin.RuleExecutionSet.config";
- modification of method (probably secure against ClassCastException)
org.drools.jsr94.rules.admin.RuleExecutionSetImpl.java:118:RuleExecutionSetImpl(...):
//jh: support rulebase configuration via jsr94
final org.drools.reteoo.ReteooRuleBase ruleBase = new org.drools.reteoo.ReteooRuleBase((org.drools.RuleBaseConfiguration)properties.get(org.drools.jsr94.rules.Constants.RES_CONFIG), new Jsr94FactHandleFactory() );
/*
final org.drools.reteoo.ReteooRuleBase ruleBase = new org.drools.reteoo.ReteooRuleBase( new Jsr94FactHandleFactory() );
*/
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 7 months
[JBoss JIRA] Created: (JBRULES-528) Implementation for Decision tables, and compiler options in DroolsJSR
by Vignesh S (JIRA)
Implementation for Decision tables, and compiler options in DroolsJSR
---------------------------------------------------------------------
Key: JBRULES-528
URL: http://jira.jboss.com/jira/browse/JBRULES-528
Project: JBoss Rules
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: JSR94
Reporter: Vignesh S
Assigned To: Mark Proctor
Priority: Optional
The implementation for Decision tables and compiler options can be given in drools JSR and to my knowledge it can done easily in the method
public RuleExecutionSet createRuleExecutionSet(final Reader ruleExecutionSetReader,
final Map properties) throws RuleExecutionSetCreateException
org.drools.jsr94.rules.admin.LocalRuleExecutionSetProviderImpl class
By adding one more condition for ".xsl" for decision tables
and setting a new property for the compiler in map parameter
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 7 months
[JBoss JIRA] Commented: (JBREM-433) point to multipoint invocation api
by David Lloyd (JIRA)
[ http://jira.jboss.com/jira/browse/JBREM-433?page=comments#action_12367938 ]
David Lloyd commented on JBREM-433:
-----------------------------------
This can definitely be done in terms of a one-way invocation. But how would the response aggregation work in a request-reply scenario?
Using a connection-oriented protocol, you'd be no better off than if you iterated over a series of connections, sending a request to each, and then waiting until a reply is received for each.
It seems like you'd want to utilize UDP broadcast or multicast for this sort of thing. But in this case, you have no reliable way to figure out how many responses to expect.
> point to multipoint invocation api
> ----------------------------------
>
> Key: JBREM-433
> URL: http://jira.jboss.com/jira/browse/JBREM-433
> Project: JBoss Remoting
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: general
> Affects Versions: 2.0.0.Beta1
> Reporter: Tom Elrod
> Assigned To: Tom Elrod
> Fix For: 2.4.0.Beta1 (Pinto)
>
>
> Would like to provide API where client could make single invocation that would be made on multiple remoting servers at one time. The responses for each target server would be aggregated into one response as return to the client call. Basically want to mimic same behavior found within jgroups for this, but provide support over all the transports for this.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 7 months