Emmanuel Lecharny wrote:
> 
> Even if you implement the exceptionCaught() event in your handler ?
> 

I implemented a org.apache.mina.core.service.IoHandlerAdapter with:

@Override
public void exceptionCaught(IoSession session, Throwable throwable)
{
    getLogger().log(Level.WARNING, "Exception during message processing",
throwable);
    session.close(true);
    this.acknowleger.sessionClosed(session);
}

Is there another error handler to overwrite to get some more information
from MINA?


-- 
View this message in context: 
http://old.nabble.com/Loss-of-connection-onece-a-minute-tp32840413p32873609.html
Sent from the Apache MINA User Forum mailing list archive at Nabble.com.

Reply via email to