Re: Ask for the best way to handle an exception

2004-11-11 Thread Andoni
Hello, I find that I get this error a lot in two situations: 1. When I have just put a new webapp live and not precompiled the JSPs myself. 2. When there is heavy load on the server. So, I suggest, if you are compiling your JSPs before making your app available to your users, and you are still

Ask for the best way to handle an exception

2004-11-10 Thread Daxin Zuo
In a JSP page, there are buttons. clicking one will launch an action which may read/write socket. In my program, all actions work well. But exception caused in the circumstance: I clicked a button. Before that action finished (in the middle of read/write socket), immediately, I clicked another

RE: Ask for the best way to handle an exception

2004-11-10 Thread Shapira, Yoav
Hi, First, this error is not serious and can safely be ignored. But if you want avoid it, don't click other buttons until the action is done ;) Of course that's easier to say than to enforce. One way to enforce this is some basic JavaScript: set all form buttons to disabled when one is