already replied to your old thread

ok, it looks like you might have ended up with a rogue socket,
and what happens is that any message sent to that socket just gets lost in the ether, since it doesn't have any interest ops. There is a workaround for this, turn off keep alives all together, or implement a keep alive timeout

Option 1 - no keep alives at all

<Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender"
         timeout="60000"
         keepAliveCount="0"/>

Option 2 - implement a keep alive timeout

<Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender"
         timeout="60000"
         keepAliveTime="120000"/>

or make a combination of both values

either option should work for you.

On a side note, I'm interested if the scenario you run into is reproducible, it keeps happening over and over again, then if possible, I'd like to get some debug logs from you

Filip




---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to