Samuel Doyle wrote:
Alright I assume this is how you do it. Can someone confirm?IoConnector connector = new SocketConnector() BaseIoConnectorConfig connectorConfig = new SocketConnectorConfig(); connectorConfig.setConnectTimeout( connectTimeOut ); connector.connect( host, sessionHandler, connectorConfig );
I've been doing:
private IoAcceptor acceptor;
private IoHandler handler;
handler = new KerberosProtocolHandler();
acceptor.bind( new InetSocketAddress( port ), handler );
Enrique
