Log in to follow, share, and participate in this community.
Thread Changes to Client that require connect() be called
Changes to Client that require connect() be calledThis topic is in reference to http://jira.jboss.com/jira/browse/JBREM-366 The remoting code has been changed to use reference counting for client invokers created instead of re-creating new instances if the current o...
Thread Broken connection listener test due to JBREM-382
Broken connection listener test due to JBREM-382Test case org.jboss.test.remoting.lease.LocalLeaseTestCase within remoting test suite fails due to the changes for http://jira.jboss.com/jira/browse/JBREM-382 (also more info in http://www.jboss.com/index.html?module=...
local invoker behaviorWhile working on JBREM-382, I realized might be good to get feedback on the behavior of the local invokers in general. To start, if a client and server are running within the same VM, the client will use a local invok...
remoting configuration semanticsCurrently the rules for configuration the Client and Connector is fairly loose. The problem is that the projects is getting too big to not have better constraints on when/where configurations can be set. Therefore, wo...
Thread JBAS-2267 - PooledInvokers missing Version Information
JBAS-2267 - PooledInvokers missing Version InformationI'm looking at this issue, and it's not possible to fix Optimized*Stream without break binary compatibility. I could try adding some exception handling, but it doesn't seem possible. regular ObjectOutputStream will ...
Important bug in thread pool managementHi, while testing JBoss Remoting I limited the maxPoolSize to 2 on the Connector on the server side. Also I added an InvocationHandler which simply waits for 5 seconds and returns a response. Then I created 5 client t...
Removing remoting from JBossAS 3.2 branchSince 3.2 branch is in maintenance mode and no other parts within 3.2 branch depend on remoting, would like to remove it (especially since the version in 3.2 branch is very old). Remoting will be maintained and update...
PooledInvokerProxy propositionHi All! I have encountered a problem with the current way of opening connection by PooledInvokerProxy - server supplies its host name as server address - the problem is that some client can't resolve the host name. S...
Thread remove remoting tests with proprietary license, in 3.2.x ?
remove remoting tests with proprietary license, in 3.2.x ?There are some leftover tests in jbas 3.2.x with a proprietary license. If there are no objections I'll remove them for the next 3.2.x release. http://jira.jboss.com/jira/browse/JBAS-2466
Thread Potential problem with thread usage in pingers and lease
Potential problem with thread usage in pingers and leaseLooking at the code - I can see that connection pinger is implemented by creating a new java.util.Timer instance per Client on the client side, and using another java.util.Timer instance per connection on the server s...
Thread JBAS-3102 - UnifiedInvoker configuration into JBoss4.0 tests
JBAS-3102 - UnifiedInvoker configuration into JBoss4.0 testsI'm going to create a target into the testsuite using UnifiedInvokers as the distribution layer. I don't know yet what tests to include. Probably I'm going to add a few ejb tests, and play around with JBossSerializat...
JBAS-3089, JBAS-2500 PooledInvokerProxy issuesThe change to the PooledInvokerProxy for JBAS-2500 essentially broke pooling: http://jira.jboss.com/jira/browse/JBAS-3089 There is also no testcase for the JBAS-2500 issue. Every ejb create now results in a PooledInv...
Thread Refactoring org.jboss.invocation.* into a remoting project
Refactoring org.jboss.invocation.* into a remoting projectWhile I'm refactoring the org.jboss.naming.* package to pull it out of the server package, and a related task is pulling out the detached invoker code from the NamingService into a jmx interceptor. This is just boiler...
Remoting and JCAI just reassigned some JCA issues to the remoting project. These relate to this issue which I've left in the JCA module but we need a remoting task to deal with most of the issue: http://jira.jboss.com/jira/browse/JB...
Version exception on connection closeTom et al, as you know we are getting a lot of the following exception:
java.io.IOException: Can not read data for version -1. Supported versions: 1,2
with the latest remoting in CVS. This seems to occur if a...
HTTPClientInvoker - Client Lease Featurehttp://jira.jboss.com/jira/browse/JBREM-317 The client lease feature causes an extra 0-length HTTP post to be sent on connection start, and then periodic "$PING$" posts afterwords. The problem with this approach is ...
Race condition in Client invocationsI get the following exception intermittently under high load with multiple clients using the same invoker:
org.jboss.remoting.ConnectionFailedException: org.jboss.remoting.transport.local
.LocalClientInvoker@95068...
Remoting version compatibilityMessaging requires full forward and server backward compatibility, between clients and servers (and in the future between servers and servers) We are building placeholders for this into 1.0 so as not to get caught ou...
Thread ConcurrentModificationException in InvokerRegistry
ConcurrentModificationException in InvokerRegistryI'm getting a ConcurrentModificationException in InvokerRegistry.java. It only occurs with log level of debug or finer. Looking at the code:
public static void destroyClientInvoker(InvokerLocator locator)
{
Cl...
Exception when connection is terminatedWhen socket connections are terminated "hard". E.g. when the remote client dies, we get the following exceptions on the server:
at org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:239)
11:57...