From: Oleksiy Stashok <oleksiy.stashok_at_oracle.com>
Date: Fri, 10 Jun 2011 10:53:50 +0200 > // binding transport to start listen on certain host and port
> transport.bind(HOST, PORT);
>
> transport.configureStandalone(true);
>
> // start the transport
> transport.start();
>
>
> transport.configureStandalone(true); // when add this line , EchoServer
> could not receive message?
Right, we use standalone mode just in our tests, we wouldn't advice to
use it in real-world apps :)
When you set it - it actually means you want to work with
Connection/Transport in socket-like mode (no FilterChain etc).
Please take a look at this test [1], it's what standalone mode about.