[JBoss JIRA] Created: (JBAS-8930) ExistingConnectionRemoteProxyControllerTest periodically freezes during build on Windows
by Jonathan Pearlin (JIRA)
ExistingConnectionRemoteProxyControllerTest periodically freezes during build on Windows
----------------------------------------------------------------------------------------
Key: JBAS-8930
URL: https://issues.jboss.org/browse/JBAS-8930
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Test Suite
Affects Versions: 7.0.0.Alpha1
Environment: Windows 7 64-bit
Reporter: Jonathan Pearlin
Assignee: Shelly McGowan
Priority: Minor
Occasionally while attempting to build AS 7 using mvn clean install or mvn install, the build will freeze while attempting to execute the ExistingConnectionRemoteProxyControllerTest test (the freeze only occurs after an EOFException occurs during the test). The exception and resulting freeze cannot be reproduced with any regularity. It appears to be the result of some sort of race condition. Below is the stack trace produced when the issue occurs:
Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.105 sec
Running org.jboss.as.controller.test.ExistingConnectionRemoteProxyControllerTest
Case
connected
------------
connected
connected
connected
Mar 6, 2011 3:19:52 PM org.jboss.as.protocol.ConnectionImpl safeHandleMessage
ERROR: Failed to read a message
java.io.EOFException: Read past end of file
at org.jboss.marshalling.SimpleDataInput.eofOnRead(SimpleDataInput.java:126)
at org.jboss.marshalling.SimpleDataInput.readByte(SimpleDataInput.java:214)
at org.jboss.as.protocol.SimpleByteDataInput.readByte(SimpleByteDataInput.java:80)
at org.jboss.as.protocol.mgmt.ManagementRequestHeader.read(ManagementRequestHeader.java:67)
at org.jboss.as.protocol.mgmt.ManagementProtocolHeader.<init>(ManagementProtocolHeader.java:55)
at org.jboss.as.protocol.mgmt.ManagementRequestHeader.<init>(ManagementRequestHeader.java:47)
at org.jboss.as.protocol.mgmt.ManagementHeaderMessageHandler.handle(ManagementHeaderMessageHandler.java:53)
at org.jboss.as.protocol.mgmt.AbstractMessageHandler.handleMessage(AbstractMessageHandler.java:59)
at org.jboss.as.protocol.ConnectionImpl.safeHandleMessage(ConnectionImpl.java:254)
at org.jboss.as.protocol.ConnectionImpl$1$1.run(ConnectionImpl.java:213)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:619)
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (AS7-858) Exception when deploying OSGi bundle
by David Bosschaert (JIRA)
Exception when deploying OSGi bundle
------------------------------------
Key: AS7-858
URL: https://issues.jboss.org/browse/AS7-858
Project: Application Server 7
Issue Type: Bug
Components: OSGi
Affects Versions: 7.0.0.CR1
Reporter: David Bosschaert
Assignee: Jason Greene
This was observed on git://github.com/jbosgi/jboss-as.git on the jbosgi branch just on 20 May at 0730 UTC.
Deploying a simple OSGi bundle using the hotdeploy directory into AS7 causes an exception. The bundle is deployed straight after startup. It doesn't seem to happen every time...
08:31:04,136 INFO [org.jboss.osgi.framework.internal.FrameworkActive] (MSC service thread 1-4) OSGi Framework started
08:31:04,136 INFO [org.jboss.as.osgi] (MSC service thread 1-3) Installing deployment: [TestBundle:1.0.0.201105200821,location=TestBundle_1.0.0.201105200821.jar]
08:31:04,141 INFO [org.jboss.osgi.framework.internal.BundleManager] (MSC service thread 1-3) Install bundle: TestBundle:1.0.0.201105200821
08:31:04,144 ERROR [org.jboss.msc.service] (MSC service thread 1-2) MSC00002: Invocation of listener "org.jboss.as.osgi.deployment.BundleStartTracker$1@1c10834" failed: java.lang.IllegalStateException: Cannot load module: deployment.TestBundle:1.0.0.201105200821
at org.jboss.osgi.framework.internal.ResolverPlugin.loadModules(ResolverPlugin.java:261)
at org.jboss.osgi.framework.internal.ResolverPlugin.applyResolverResults(ResolverPlugin.java:229)
at org.jboss.osgi.framework.internal.ResolverPlugin.resolve(ResolverPlugin.java:161)
at org.jboss.osgi.framework.internal.AbstractBundleState.ensureResolved(AbstractBundleState.java:555)
at org.jboss.osgi.framework.internal.HostBundleState.startInternal(HostBundleState.java:205)
at org.jboss.osgi.framework.internal.AbstractBundleState.start(AbstractBundleState.java:499)
at org.jboss.as.osgi.deployment.BundleStartTracker$1.processService(BundleStartTracker.java:135)
at org.jboss.as.osgi.deployment.BundleStartTracker$1.serviceStarted(BundleStartTracker.java:107)
at org.jboss.msc.service.ServiceControllerImpl.invokeListener(ServiceControllerImpl.java:1322) [jboss-msc-1.0.0.Beta8.jar:1.0.0.Beta8]
at org.jboss.msc.service.ServiceControllerImpl.access$2600(ServiceControllerImpl.java:47) [jboss-msc-1.0.0.Beta8.jar:1.0.0.Beta8]
at org.jboss.msc.service.ServiceControllerImpl$ListenerTask.run(ServiceControllerImpl.java:1850) [jboss-msc-1.0.0.Beta8.jar:1.0.0.Beta8]
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [:1.6.0_23]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [:1.6.0_23]
at java.lang.Thread.run(Thread.java:662) [:1.6.0_23]
Caused by: org.jboss.modules.ModuleNotFoundException: deployment.TestBundle:1.0.0.201105200821
at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:158) [:1.0.0.CR2]
at org.jboss.modules.ModuleLoader.loadModule(ModuleLoader.java:152) [:1.0.0.CR2]
at org.jboss.osgi.framework.internal.ModuleManagerPlugin.loadModule(ModuleManagerPlugin.java:561)
at org.jboss.osgi.framework.internal.ResolverPlugin.loadModules(ResolverPlugin.java:259)
... 13 more
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month
[JBoss JIRA] Created: (AS7-970) Seam3 booking example hangs after a few requests on AS7
by Marek Schmidt (JIRA)
Seam3 booking example hangs after a few requests on AS7
-------------------------------------------------------
Key: AS7-970
URL: https://issues.jboss.org/browse/AS7-970
Project: Application Server 7
Issue Type: Bug
Environment: as7 7.0.0.Beta4-SNAPSHOT
Reporter: Marek Schmidt
Seam3 example application `booking' hangs after a few requests. After the hang, all requests trying to access a stateful session bean from the application try to lock at:
org.jboss.as.ejb3.component.stateful.StatefulSessionSynchronizationInterceptor.processInvocation(StatefulSessionSynchronizationInterceptor.java:62)
see attached logs
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 1 month