On Tue, Feb 3, 2009 at 2:10 PM, Loureiro, Gil <gil.loure...@logica.com> wrote: > I'm getting a strange error that appends in a random way. > > My instance allows only one connection for the user hctrf. > > Bellow is the log with trace, where we can see in a PASV command the system > raises an "Unexpected exception from SSLEngine.closeInbound()." followed by a > try to open a new session, that obviously returns a 421.
The reason for the exception is likely that the client or the network disconnects without closing down the SSL session. The opening of the new session is likely due to the client connecting again. Would you know what client this is? It looks like is trying to open a new socket without login in, something which FtpServer (and likely any other FTP server) would support. /niklas