[JBoss JIRA] Created: (JBMESSAGING-1887) Messages lost during orderly shutdown of JBoss Messaging server
by Tom Ross (JIRA)
Messages lost during orderly shutdown of JBoss Messaging server
---------------------------------------------------------------
Key: JBMESSAGING-1887
URL: https://issues.jboss.org/browse/JBMESSAGING-1887
Project: JBoss Messaging
Issue Type: Bug
Components: Messaging Core
Affects Versions: 1.4.8.SP1, 1.4.7.GA
Environment: JBoss EAP 5.1.0
Reporter: Tom Ross
Assignee: Yong Hao Gao
During orderly shutdown of JBoss EAP server/Messaging server messages are being lost.
In the above test case a publisher is publishing messages to a topic (which has several durable subscribers) on a JBM server while the user uses control-c to shutdown the server or runs shutdown.sh script.
The server will first shutdown the topic service (subscribers) and then the server peer and post office. When the subscribers has been just shutdown but the server peer and post office is still alive, if a message are sent in to the post office and post office tries to route the message to subscribers, the subscribers are already deactivated so it didn't get route.
In this case the post office does not throw any exceptions back to the publisher. Instead it returns without error.
Following message will apear in the log file:
(WorkerThread#1[192.168.1.110:56860]) Queue[37225610/2/2952-guest.mdbOne] is not active, returning null delivery for Reference[41396777574629398]:RELIABLE
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (AS7-1280) WebComponentProcessor tries to create component out of empty classname
by jaikiran pai (JIRA)
WebComponentProcessor tries to create component out of empty classname
----------------------------------------------------------------------
Key: AS7-1280
URL: https://issues.jboss.org/browse/AS7-1280
Project: Application Server 7
Issue Type: Bug
Components: EE
Affects Versions: 7.0.0.Final
Reporter: jaikiran pai
Assignee: jaikiran pai
A user reported error:
{code}
02:06:05,229 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-2)
MSC00001: Failed to start service jboss.deployment.unit."projvehimerc.war".
PARSE: org.jboss.msc.service.StartException in service jboss.deployment.unit."projvehimerc.war".
PARSE: Failed to process phase PARSE of deployment "projvehimerc.war"
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:121)
at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1765)
at org.jboss.msc.service.ServiceControllerImpl$ClearTCCLTask.run(ServiceControllerImpl.java:2291)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [:1.6.0_25]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [:1.6.0_25]
at java.lang.Thread.run(Thread.java:662) [:1.6.0_25]
Caused by: java.lang.IllegalArgumentException: Empty name segment is not allowed
at org.jboss.msc.service.ServiceName.of(ServiceName.java:85)
at org.jboss.msc.service.ServiceName.append(ServiceName.java:112)
at org.jboss.as.ee.component.ComponentDescription.<init>(ComponentDescription.java:145)
at org.jboss.as.web.deployment.component.WebComponentDescription.<init>(WebComponentDescription.java:37)
at org.jboss.as.web.deployment.component.WebComponentProcessor.deploy(WebComponentProcessor.java:126)
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:115)
... 5 more
{code}
Please see the referenced forum thread for details.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] Created: (AS7-1252) Infinispan subsystem writer generates incorrect XML
by Trustin Lee (JIRA)
Infinispan subsystem writer generates incorrect XML
---------------------------------------------------
Key: AS7-1252
URL: https://issues.jboss.org/browse/AS7-1252
Project: Application Server 7
Issue Type: Bug
Reporter: Trustin Lee
The following XML configuration:
{code}
<subsystem xmlns="urn:jboss:domain:infinispan:1.0" default-cache-container="default">
<cache-container name="default"
default-cache="default"
listener-executor="infinispan-listener"
eviction-executor="infinispan-eviction"
replication-queue-executor="infinispan-repl-queue">
<transport executor="infinispan-transport"/>
<distributed-cache name="default" start="EAGER" mode="SYNC" />
</cache-container>
</subsystem>
<subsystem xmlns="urn:jboss:domain:datagrid:endpoint:1.0">
...
{code}
is written back to:
{code}
<subsystem xmlns="urn:jboss:domain:infinispan:1.0" default-cache-container="default">
<cache-container name="default" default-cache="default" listener-executor="infinispan-listener" eviction-executor="infinispan-eviction" replication-queue-executor="infinispan-repl-queue">
<transport executor="infinispan-transport">
<distributed-cache mode="SYNC" name="default" start="EAGER"/>
</transport>
</cache-container>
<subsystem xmlns="urn:jboss:domain:datagrid:endpoint:1.0">
...
{code}
making the subsequent startup fail.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months