Hi Andrej, What's the status of your problem? Any progress?
Looking through the server log, I don't see anything useful. As I said before, the problem occurs on the client when it attempts to create a new connection. The corresponding event on the server occurs when SocketServerInvoker.run() accepts a new socket and either (1) creates a new ServerThread, or (2) gets a ServerThread from the threadpool and restarts it with the new socket. I don't see any examples of (1), but there are seven examples of (2). In the first five cases, the ServerThread successfully processes the invocation. The log ends before the last two ServerThreads get very far. So, what I'm looking for is an example of either (1) or (2) in which the process of starting up the ServerThread fails. See if you can find something like that. Look for messages like "creating new worker thread" (case 1) or "got WorkerThread#27[10.10.80.92:2303] from threadpool" (case 2). -Ron View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4189279#4189279 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4189279 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
