In using Apache MINA, I'm sending a login request from the client, which is interpreted on the server via LoginRequestDecoder (implements org.apache.mina.filter.codec.demux.MessageDecoder)
.
I now want to send a response (LoginResponse
) that includes a success/failure code. Should I be sending the response from the LoginRequestDecoder's
finishDecode()
method, or is there a better place for it that I'm overlooking?