[JBoss JIRA] Created: (JBREM-551) org.jboss.test.remoting.transport.multiplex.MultiplexInvokerTestCase(java_serialization) failure
by Ron Sigal (JIRA)
org.jboss.test.remoting.transport.multiplex.MultiplexInvokerTestCase(java_serialization) failure
------------------------------------------------------------------------------------------------
Key: JBREM-551
URL: http://jira.jboss.com/jira/browse/JBREM-551
Project: JBoss Remoting
Issue Type: Task
Security Level: Public (Everyone can see)
Affects Versions: 2.0.0.CR1 (Boon)
Reporter: Ron Sigal
Assigned To: Ron Sigal
Fix For: 2.0.0.CR1 (Boon)
There seem to be two sources of exceptions here:
1. When a Connector shuts down and a MultiplexingManager is still running on remote end (not sure how this happened), the remote OutputMultiplexor will get "Broken pipe" exceptions.
2. When a Connector shuts down, the master MultiplexServerInvoker can shut down a virtual MultiplexServerInvoker, interruptting an acceptThread, which cause the VirtualServerSocket to think it has reached end of file.
Not sure how these problems caused the test to fail, however.
--
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
19 years, 10 months
[JBoss JIRA] Created: (JBAS-3444) org.jboss.test.naming.test.ENCUnitTestCase ends with errors
by Jaroslaw Kijanowski (JIRA)
org.jboss.test.naming.test.ENCUnitTestCase ends with errors
-----------------------------------------------------------
Key: JBAS-3444
URL: http://jira.jboss.com/jira/browse/JBAS-3444
Project: JBoss Application Server
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Test Suite
Affects Versions: JBossAS-5.0.0.Beta
Environment: win xp
Reporter: Jaroslaw Kijanowski
org.jboss.test.naming.test.ENCUnitTestCase ends with two errors, because nessesary queues and topics aren't present for the "all" instance.
ENCUnitTestCase calls accessENC() method in org.jboss.test.naming.ejb.TestEncBean.java. The last two methods of the if-block (testResourceEnvEntries and testMessageDestinationRefs) cause NameNotFoundException: testQueue not bound.
They try to use the queues "res/aQueue" and "mdr/ConsumesProducesJNDIName". These queues are "mapped" in the jboss-head/testsuite/src/resources/naming/jar/META-INF/jboss.xml to "queue/testQueue" and "queue/A", but these two queues don't exist.
The last method (testMessageDestinationRefs) try to use also the topic "mdr/ProducesLink", which is "mapped" in jboss-head/testsuite/src/resources/naming/jar/META-INF/ejb-jar.xml to "TestTopic" which is "mapped" in jboss-head/testsuite/src/resources/naming/jar/META-INF/jboss.xml to "topic/testTopic" cause an errror, because the tpic isnt't present too.
To fix these errors:
copy server/default/deploy/jms/jbossmq-destinations-service.xml
to
server/all/deploy/jms/jbossmq-destinations-service.xml
and uncomment the two queues "testQueue" and "A" and the first topic "testTopic".
--
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
19 years, 10 months
[JBoss JIRA] Created: (JBCACHE-694) Collection added to itself causes stack explosion in toString()
by Bela Ban (JIRA)
Collection added to itself causes stack explosion in toString()
---------------------------------------------------------------
Key: JBCACHE-694
URL: http://jira.jboss.com/jira/browse/JBCACHE-694
Project: JBoss Cache
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: PojoCache
Affects Versions: 1.4.0, 1.3.0.SP2, 1.3.0.SP1, 1.3.0, 1.2.4SP2, 1.2.4SP1, 1.2.4, 1.2.4beta, 1.2.3, 1.2.2, 1.2.1, 1.2
Reporter: Bela Ban
Assigned To: Manik Surtani
This works in plain Java.
How to reproduce:
- runShellDemo.sh/bat
sourceRelative("aopWithTx.bsh");
tree.putObject("list", new ArrayList());
list=tree.getObject("list");
list.add(list);
list.toString();
BOOOM
Some of the exception trace:
java.lang.StackOverflowError
at org.jboss.cache.Fqn.get(Fqn.java:257)
at org.jboss.cache.TreeCache.findNode(TreeCache.java:5606)
at org.jboss.cache.TreeCache.findNode(TreeCache.java:5577)
at org.jboss.cache.TreeCache._get(TreeCache.java:3457)
at org.jboss.cache.aop.InternalDelegate.get(InternalDelegate.java:126)
at org.jboss.cache.aop.InternalDelegate.getAopInstanceWithGravitation(InternalDelegate.java:78)
at org.jboss.cache.aop.InternalDelegate.getPojoWithGravitation(InternalDelegate.java:231)
at org.jboss.cache.aop.TreeCacheAopDelegate._getObject(TreeCacheAopDelegate.java:74)
at org.jboss.cache.aop.PojoCache._getObject(PojoCache.java:722)
at org.jboss.cache.aop.PojoCache.getObject(PojoCache.java:416)
at org.jboss.cache.aop.collection.CachedListImpl.get(CachedListImpl.java:56)
at org.jboss.cache.aop.collection.CachedListAbstract.toString(CachedListAbstract.java:155)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.cache.aop.collection.CollectionInterceptorUtil.invoke(CollectionInterceptorUtil.java:124)
at org.jboss.cache.aop.collection.CachedListInterceptor.invoke(CachedListInterceptor.java:132)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
at AOPClassProxy$0.toString(AOPClassProxy$0.java)
at java.lang.String.valueOf(String.java:2615)
at java.lang.StringBuffer.append(StringBuffer.java:220)
at org.jboss.cache.aop.collection.CachedListAbstract.toString(CachedListAbstract.java:156)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.cache.aop.collection.CollectionInterceptorUtil.invoke(CollectionInterceptorUtil.java:124)
at org.jboss.cache.aop.collection.CachedListInterceptor.invoke(CachedListInterceptor.java:132)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
at AOPClassProxy$0.toString(AOPClassProxy$0.java)
at java.lang.String.valueOf(String.java:2615)
at java.lang.StringBuffer.append(StringBuffer.java:220)
at org.jboss.cache.aop.collection.CachedListAbstract.toString(CachedListAbstract.java:156)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.cache.aop.collection.CollectionInterceptorUtil.invoke(CollectionInterceptorUtil.java:124)
at org.jboss.cache.aop.collection.CachedListInterceptor.invoke(CachedListInterceptor.java:132)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
at AOPClassProxy$0.toString(AOPClassProxy$0.java)
at java.lang.String.valueOf(String.java:2615)
at java.lang.StringBuffer.append(StringBuffer.java:220)
at org.jboss.cache.aop.collection.CachedListAbstract.toString(CachedListAbstract.java:156)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.cache.aop.collection.CollectionInterceptorUtil.invoke(CollectionInterceptorUtil.java:124)
at org.jboss.cache.aop.collection.CachedListInterceptor.invoke(CachedListInterceptor.java:132)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
at AOPClassProxy$0.toString(AOPClassProxy$0.java)
at java.lang.String.valueOf(String.java:2615)
at java.lang.StringBuffer.append(StringBuffer.java:220)
at org.jboss.cache.aop.collection.CachedListAbstract.toString(CachedListAbstract.java:156)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.cache.aop.collection.CollectionInterceptorUtil.invoke(CollectionInterceptorUtil.java:124)
at org.jboss.cache.aop.collection.CachedListInterceptor.invoke(CachedListInterceptor.java:132)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
at AOPClassProxy$0.toString(AOPClassProxy$0.java)
at java.lang.String.valueOf(String.java:2615)
at java.lang.StringBuffer.append(StringBuffer.java:220)
at org.jboss.cache.aop.collection.CachedListAbstract.toString(CachedListAbstract.java:156)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.cache.aop.collection.CollectionInterceptorUtil.invoke(CollectionInterceptorUtil.java:124)
at org.jboss.cache.aop.collection.CachedListInterceptor.invoke(CachedListInterceptor.java:132)
at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
at AOPClassProxy$0.toString(AOPClassProxy$0.java)
at java.lang.String.valueOf(String.java:2615)
at java.lang.StringBuffer.append(StringBuffer.java:220)
at org.jboss.cache.aop.collection.CachedListAbstract.toString(CachedListAbstract.java:156)
at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
--
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
19 years, 10 months