1 Reply Latest reply on Jul 8, 2003 5:42 AM by adrian.brock

    kill an looping session bean ?

    dirkniemeierde

      Hi,
      is it possible to kill an endless lopping session bean without shutting down jboss ?
      TIA
      Dirk

        • 1. Re: kill an looping session bean ?

          No JBoss has no control of a cpu loop.
          It would be possible to suspend or stop the thread,
          but that isn't much use if it has locked resources.

          If you are not in a cpu loop, the transaction timeout
          should take care of breaking the loop when you next
          wait for something or try to enlist a resource.

          Regards,
          Adrian