[JBoss JIRA] (DROOLS-20) Compilation exception gets eaten by MVEL
by Geoffrey De Smet (JIRA)
Geoffrey De Smet created DROOLS-20:
--------------------------------------
Summary: Compilation exception gets eaten by MVEL
Key: DROOLS-20
URL: https://issues.jboss.org/browse/DROOLS-20
Project: Drools
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Reporter: Geoffrey De Smet
Assignee: Mario Fusco
Priority: Critical
To reproduce:
- open planner, run the CloudBalancingApp, load a dataset and click button solve. This will work.
- Now open drools-planner-examples/src/main/resources/org/drools/planner/examples/cloudbalancing/solver/cloudBalancingScoreRules.drl
- At line 114, change
{code}
IntConstraintOccurrence(constraintType = ...
{code}
into
{code}
IntConstraintOccurrence(ConstraintType = ...
{code}
(so change only the case of the first letter of constraintType
- Run the CloudBalancingApp, load a dataset and click button solve. It will fail with this exception (which is not the real exception):
{code}
org.kie.runtime.rule.ConsequenceException: Exception executing consequence for rule "computerCost" in org.drools.planner.examples.cloudbalancing.solver: java.lang.NullPointerException
at org.drools.runtime.rule.impl.DefaultConsequenceExceptionHandler.handleException(DefaultConsequenceExceptionHandler.java:39) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
...
Caused by: java.lang.NullPointerException: null
at java.lang.String.<init>(String.java:168) ~[na:1.7.0_09]
at org.mvel2.util.ErrorUtil.rewriteIfNeeded(ErrorUtil.java:12) ~[mvel2-2.1.3.Final.jar:na]
at org.mvel2.compiler.ExpressionCompiler._compile(ExpressionCompiler.java:302) ~[mvel2-2.1.3.Final.jar:na]
at org.mvel2.compiler.ExpressionCompiler.compile(ExpressionCompiler.java:62) ~[mvel2-2.1.3.Final.jar:na]
at org.mvel2.MVEL.compileExpression(MVEL.java:810) ~[mvel2-2.1.3.Final.jar:na]
at org.drools.base.mvel.MVELCompilationUnit.compile(MVELCompilationUnit.java:435) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.base.mvel.MVELCompilationUnit.getCompiledExpression(MVELCompilationUnit.java:238) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.rule.constraint.MvelConstraint.createMvelConditionEvaluator(MvelConstraint.java:205) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.rule.constraint.MvelConstraint.evaluate(MvelConstraint.java:189) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.rule.constraint.MvelConstraint.isAllowed(MvelConstraint.java:156) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.reteoo.AlphaNode.assertObject(AlphaNode.java:143) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.reteoo.CompositeObjectSinkAdapter.doPropagateAssertObject(CompositeObjectSinkAdapter.java:498) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.reteoo.CompositeObjectSinkAdapter.propagateAssertObject(CompositeObjectSinkAdapter.java:383) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.reteoo.ObjectTypeNode.assertObject(ObjectTypeNode.java:232) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.reteoo.EntryPointNode.assertObject(EntryPointNode.java:244) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.common.NamedEntryPoint.insert(NamedEntryPoint.java:352) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.beliefsystem.simple.SimpleBeliefSystem.insert(SimpleBeliefSystem.java:49) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.common.TruthMaintenanceSystem.addLogicalDependency(TruthMaintenanceSystem.java:150) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.common.TruthMaintenanceSystem.addLogicalDependency(TruthMaintenanceSystem.java:121) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.common.NamedEntryPoint.insert(NamedEntryPoint.java:227) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.common.AbstractWorkingMemory.insert(AbstractWorkingMemory.java:822) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.base.DefaultKnowledgeHelper.insertLogical(DefaultKnowledgeHelper.java:255) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.base.DefaultKnowledgeHelper.insertLogical(DefaultKnowledgeHelper.java:220) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.base.DefaultKnowledgeHelper.insertLogical(DefaultKnowledgeHelper.java:215) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
at org.drools.planner.examples.cloudbalancing.solver.Rule_computerCost_eb2dbb0704b64ca3a554fbda80ff54ab.defaultConsequence(Rule_computerCost_eb2dbb0704b64ca3a554fbda80ff54ab.java:7) ~[na:na]
at org.drools.planner.examples.cloudbalancing.solver.Rule_computerCost_eb2dbb0704b64ca3a554fbda80ff54abDefaultConsequenceInvokerGenerated.evaluate(Unknown Source) ~[na:na]
at org.drools.planner.examples.cloudbalancing.solver.Rule_computerCost_eb2dbb0704b64ca3a554fbda80ff54abDefaultConsequenceInvoker.evaluate(Unknown Source) ~[na:na]
at org.drools.common.DefaultAgenda.fireActivation(DefaultAgenda.java:1421) ~[drools-core-6.0.0-SNAPSHOT.jar:6.0.0-SNAPSHOT]
... 21 common frames omitted
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (AS7-6410) Session beans are not bound to JNDI if there is a remote interface for a stateless bean
by Jari Juslin (JIRA)
[ https://issues.jboss.org/browse/AS7-6410?page=com.atlassian.jira.plugin.s... ]
Jari Juslin updated AS7-6410:
-----------------------------
Issue Type: Bug (was: Feature Request)
> Session beans are not bound to JNDI if there is a remote interface for a stateless bean
> ---------------------------------------------------------------------------------------
>
> Key: AS7-6410
> URL: https://issues.jboss.org/browse/AS7-6410
> Project: Application Server 7
> Issue Type: Bug
> Components: EJB, Naming, Remoting
> Affects Versions: 7.1.1.Final
> Environment: Ubuntu 12.10
> Reporter: Jari Juslin
> Assignee: jaikiran pai
> Attachments: bugrepro.zip
>
>
> I have a session bean inside a jar, which in turn is inside an ear. If the session bean's interface is market with @Remote, JBoss 7.1.1 does not bind any beans in the package to JNDI. Change the @Remote to @Local or comment it out and binding takes place.
> The binding was checked both programmatically and from JBoss Management Console.
> No errors messages are printed.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (AS7-6410) Session beans are not bound to JNDI if there is a remote interface for a stateless bean
by Jari Juslin (JIRA)
[ https://issues.jboss.org/browse/AS7-6410?page=com.atlassian.jira.plugin.s... ]
Jari Juslin updated AS7-6410:
-----------------------------
Attachment: bugrepro.zip
Test project demonstrating the bug.
> Session beans are not bound to JNDI if there is a remote interface for a stateless bean
> ---------------------------------------------------------------------------------------
>
> Key: AS7-6410
> URL: https://issues.jboss.org/browse/AS7-6410
> Project: Application Server 7
> Issue Type: Feature Request
> Components: EJB, Naming, Remoting
> Affects Versions: 7.1.1.Final
> Environment: Ubuntu 12.10
> Reporter: Jari Juslin
> Assignee: jaikiran pai
> Attachments: bugrepro.zip
>
>
> I have a session bean inside a jar, which in turn is inside an ear. If the session bean's interface is market with @Remote, JBoss 7.1.1 does not bind any beans in the package to JNDI. Change the @Remote to @Local or comment it out and binding takes place.
> The binding was checked both programmatically and from JBoss Management Console.
> No errors messages are printed.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (AS7-6410) Session beans are not bound to JNDI if there is a remote interface for a stateless bean
by Jari Juslin (JIRA)
Jari Juslin created AS7-6410:
--------------------------------
Summary: Session beans are not bound to JNDI if there is a remote interface for a stateless bean
Key: AS7-6410
URL: https://issues.jboss.org/browse/AS7-6410
Project: Application Server 7
Issue Type: Feature Request
Components: EJB, Naming, Remoting
Affects Versions: 7.1.1.Final
Environment: Ubuntu 12.10
Reporter: Jari Juslin
Assignee: jaikiran pai
I have a session bean inside a jar, which in turn is inside an ear. If the session bean's interface is market with @Remote, JBoss 7.1.1 does not bind any beans in the package to JNDI. Change the @Remote to @Local or comment it out and binding takes place.
The binding was checked both programmatically and from JBoss Management Console.
No errors messages are printed.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (AS7-6409) Replicated journal: not forcing replication-clustername attribute on backup server
by Miroslav Novak (JIRA)
[ https://issues.jboss.org/browse/AS7-6409?page=com.atlassian.jira.plugin.s... ]
Miroslav Novak updated AS7-6409:
--------------------------------
Attachment: standalone-full-ha-backup.xml
standalone-full-ha-live.xml
> Replicated journal: not forcing replication-clustername attribute on backup server
> ----------------------------------------------------------------------------------
>
> Key: AS7-6409
> URL: https://issues.jboss.org/browse/AS7-6409
> Project: Application Server 7
> Issue Type: Bug
> Components: JMS
> Affects Versions: 7.2.0.Alpha1
> Reporter: Miroslav Novak
> Assignee: Jeff Mesnil
> Fix For: 7.2.0.CR1
>
> Attachments: standalone-full-ha-backup.xml, standalone-full-ha-live.xml
>
>
> When AS7 with HornetQ 2.3.0.beta3 is configured as backup and replication-clustername is not set then error messages are thrown to log:
> {code}
> 14:38:37,191 INFO [org.hornetq.core.server] (MSC service thread 1-5) HQ221001: backup server is starting with configuration HornetQ Configuration (clustered=true,backup=true,sharedStore=false,journalDirectory=/home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingjournal,bindingsDirectory=/home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingbindings,largeMessagesDirectory=/home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messaginglargemessages,pagingDirectory=/home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingpaging)
> 14:38:37,271 INFO [org.hornetq.jms.server] (ServerService Thread Pool -- 66) HQ121005: JMS Server Manager Caching command for createConnectionFactory for RemoteConnectionFactory since the JMS Server is not active yet
> 14:38:37,275 WARN [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ222216: Moving data directory /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingbindings to /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingbindings7
> 14:38:37,278 INFO [org.hornetq.jms.server] (ServerService Thread Pool -- 67) HQ121005: JMS Server Manager Caching command for createConnectionFactory for InVmConnectionFactory since the JMS Server is not active yet
> 14:38:37,287 WARN [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ222216: Moving data directory /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingjournal to /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingjournal7
> 14:38:37,288 WARN [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ222216: Moving data directory /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingpaging to /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingpaging7
> 14:38:37,290 WARN [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ222216: Moving data directory /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messaginglargemessages to /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messaginglargemessages7
> 14:38:37,346 ERROR [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ224002: Failure in initialisation: HornetQException[errorType=ILLEGAL_STATE message=Missing cluster-configuration for replication-cluster-name 'undefined'.]
> at org.hornetq.core.config.ConfigurationUtils.getReplicationClusterConfiguration(ConfigurationUtils.java:24) [hornetq-server-2.3.0.BETA3.jar:]
> at org.hornetq.core.server.impl.HornetQServerImpl$SharedNothingBackupActivation.run(HornetQServerImpl.java:2192) [hornetq-server-2.3.0.BETA3.jar:]
> at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_35]
> 14:38:37,351 INFO [org.jboss.as.jacorb] (MSC service thread 1-7) JBAS016330: CORBA ORB Service started
> 14:38:37,365 ERROR [stderr] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HornetQException[errorType=ILLEGAL_STATE message=Missing cluster-configuration for replication-cluster-name 'undefined'.]
> 14:38:37,367 ERROR [stderr] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) at org.hornetq.core.config.ConfigurationUtils.getReplicationClusterConfiguration(ConfigurationUtils.java:24)
> 14:38:37,369 ERROR [stderr] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) at org.hornetq.core.server.impl.HornetQServerImpl$SharedNothingBackupActivation.run(HornetQServerImpl.java:2192)
> 14:38:37,375 ERROR [stderr] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) at java.lang.Thread.run(Thread.java:662)
> 14:38:37,416 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 40) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
> 14:38:37,433 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 40) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
> 14:38:37,619 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-5) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
> 14:38:37,677 INFO [org.jboss.as.jacorb] (MSC service thread 1-7) JBAS016328: CORBA Naming Service started
> {code}
> Adding standalone-full-ha-live/backup.xml for EAP 6.1.0.DR1.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (AS7-6409) Replicated journal: not forcing replication-clustername attribute on backup server
by Miroslav Novak (JIRA)
Miroslav Novak created AS7-6409:
-----------------------------------
Summary: Replicated journal: not forcing replication-clustername attribute on backup server
Key: AS7-6409
URL: https://issues.jboss.org/browse/AS7-6409
Project: Application Server 7
Issue Type: Bug
Components: JMS
Affects Versions: 7.2.0.Alpha1
Reporter: Miroslav Novak
Assignee: Jeff Mesnil
Fix For: 7.2.0.CR1
When AS7 with HornetQ 2.3.0.beta3 is configured as backup and replication-clustername is not set then error messages are thrown to log:
{code}
14:38:37,191 INFO [org.hornetq.core.server] (MSC service thread 1-5) HQ221001: backup server is starting with configuration HornetQ Configuration (clustered=true,backup=true,sharedStore=false,journalDirectory=/home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingjournal,bindingsDirectory=/home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingbindings,largeMessagesDirectory=/home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messaginglargemessages,pagingDirectory=/home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingpaging)
14:38:37,271 INFO [org.hornetq.jms.server] (ServerService Thread Pool -- 66) HQ121005: JMS Server Manager Caching command for createConnectionFactory for RemoteConnectionFactory since the JMS Server is not active yet
14:38:37,275 WARN [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ222216: Moving data directory /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingbindings to /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingbindings7
14:38:37,278 INFO [org.hornetq.jms.server] (ServerService Thread Pool -- 67) HQ121005: JMS Server Manager Caching command for createConnectionFactory for InVmConnectionFactory since the JMS Server is not active yet
14:38:37,287 WARN [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ222216: Moving data directory /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingjournal to /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingjournal7
14:38:37,288 WARN [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ222216: Moving data directory /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingpaging to /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messagingpaging7
14:38:37,290 WARN [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ222216: Moving data directory /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messaginglargemessages to /home/mnovak/tmp/test-eap6-replication/server2/jboss-eap-6.1/standalone/data/messaginglargemessages7
14:38:37,346 ERROR [org.hornetq.core.server] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HQ224002: Failure in initialisation: HornetQException[errorType=ILLEGAL_STATE message=Missing cluster-configuration for replication-cluster-name 'undefined'.]
at org.hornetq.core.config.ConfigurationUtils.getReplicationClusterConfiguration(ConfigurationUtils.java:24) [hornetq-server-2.3.0.BETA3.jar:]
at org.hornetq.core.server.impl.HornetQServerImpl$SharedNothingBackupActivation.run(HornetQServerImpl.java:2192) [hornetq-server-2.3.0.BETA3.jar:]
at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_35]
14:38:37,351 INFO [org.jboss.as.jacorb] (MSC service thread 1-7) JBAS016330: CORBA ORB Service started
14:38:37,365 ERROR [stderr] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) HornetQException[errorType=ILLEGAL_STATE message=Missing cluster-configuration for replication-cluster-name 'undefined'.]
14:38:37,367 ERROR [stderr] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) at org.hornetq.core.config.ConfigurationUtils.getReplicationClusterConfiguration(ConfigurationUtils.java:24)
14:38:37,369 ERROR [stderr] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) at org.hornetq.core.server.impl.HornetQServerImpl$SharedNothingBackupActivation.run(HornetQServerImpl.java:2192)
14:38:37,375 ERROR [stderr] (HQ119001: Activation for server HornetQServerImpl::serverUUID=null) at java.lang.Thread.run(Thread.java:662)
14:38:37,416 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 40) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
14:38:37,433 INFO [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 40) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
14:38:37,619 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-5) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS]
14:38:37,677 INFO [org.jboss.as.jacorb] (MSC service thread 1-7) JBAS016328: CORBA Naming Service started
{code}
Adding standalone-full-ha-live/backup.xml for EAP 6.1.0.DR1.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (AS7-6408) Can't configure JGroups subsystem with CLI script in 7.2.0.Alpha1-SNAPSHOT
by Tomaz Cerar (JIRA)
[ https://issues.jboss.org/browse/AS7-6408?page=com.atlassian.jira.plugin.s... ]
Tomaz Cerar reassigned AS7-6408:
--------------------------------
Assignee: Richard Achmatowicz (was: Paul Ferraro)
> Can't configure JGroups subsystem with CLI script in 7.2.0.Alpha1-SNAPSHOT
> ---------------------------------------------------------------------------
>
> Key: AS7-6408
> URL: https://issues.jboss.org/browse/AS7-6408
> Project: Application Server 7
> Issue Type: Bug
> Components: Clustering
> Affects Versions: 7.2.0.Alpha1
> Environment: Git checkout of JBossAS 7.2.0.ALPHA1 from today (28/Jan/2013)
> Reporter: Bernd Koecke
> Assignee: Richard Achmatowicz
> Attachments: standalone-ha-jgroups.cli, standalone-jgroups-fragment.xml
>
>
> When I try to configure extension and subsystem JGroups with a CLI script, the attribute "protocols" of the stack=tcp- or stack=udp-node contains the list of configured protocols twice. The result is that the list of protocols is doubled in the standalone.xml. But having a protocol twice in one stack results in an error at next server startup. I will attach the CLI script and the resulting XML fragment.
> When I shutdown the server, remove the doubled second part of each protocol list, the server comes up and all is working fine. But I can't configure it only with a CLI script.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months