]
Ron Sigal closed JBREM-1289.
----------------------------
Resolution: Out of Date
CLONE [JBREM-1288] - StreamServer for in-jvm connection should create
a LocalServerInvoker
------------------------------------------------------------------------------------------
Key: JBREM-1289
URL:
https://issues.jboss.org/browse/JBREM-1289
Project: JBoss Remoting
Issue Type: Bug
Affects Versions: 2.2.4
Reporter: Ron Sigal
Assignee: Ron Sigal
Fix For: 2.2.4.SP1
When the org.jboss.remoting.Client method
public Object invoke(InputStream inputStream, Object param) throws Throwable;
or one of its variants is called, it calls new StreamServer(inputStream), which creates
an org.jboss.remoting.transport.Connector to serve the contents of the InputStream. To
determine the transport to be used, StreamServer looks for a system property
"remoting.stream.transport", and, if it doesn't exist, it uses
"socket" by default. However, if the InputStream is being sent to a server in
the same JVM, the "local" transport should be used.