try
{
channel = ServerSocketChannel.open();
channel.configureBlocking( false );
channel.socket().setReuseAddress( true );
InetSocketAddress address = new InetSocketAddress( _serverInfo.getInterface(), _serverInfo.getPort() );
channel.socket().bind( address, 1024 );
this._serverInfo.setHost( address.getHostName() + ':' + address.getPort() );
// this._connectionHeader.setChannel(channel);
for ( int i = 0; i < processors.length; i++ )