Uploaded image for project: 'MINA'
  1. MINA
  2. DIRMINA-917

IoHandlerAdapter.sessionClosed is not call when the clien close a connection

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Critical
    • Resolution: Not A Problem
    • 2.0.3
    • None
    • Handler
    • None
    • OS:Debian 2.6.32-41
      MINA Version:2.0.3

    Description

      My Client Code:
      public static void main(String[] args) throws Exception {
      Socket[] sockets = new Socket[100];
      try {
      for (int i = 0; i < 100; i++) {
      // sockets[i]=new Socket(args[0], Integer.parseInt(args[1]));
      sockets[i] = new Socket("...", 8282);
      try

      { Thread.sleep(1); }

      catch (InterruptedException e)

      { e.printStackTrace(); }

      }
      } catch (Exception e)

      { e.printStackTrace(); }

      while (true) {
      try

      { Thread.sleep(100000); }

      catch (InterruptedException e)

      { // TODO Auto-generated catch block e.printStackTrace(); }

      }
      }

      where the 100 connection finished,"sessionCreated(IoSession session)" called 100 times(It's OK),Then I kill the client process.I found" sessionClosed(IoSession session)" only called 33 times,"exceptionCaught(IoSession session, Throwable cause) " called 65 times.So I suggest “sessionClosed” is not called every time .

      Attachments

        Activity

          People

            Unassigned Unassigned
            rocektball xieyufeng
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: