The code below is a disaster. It creates a variable called result at the
servlet instance level. This means that 2 concurrent requests to that JSP
page will cause the page to fail. I didn't read the reast of the code -
because that line is so evil - that ... well I'm speechless.
Change it to:
<%
ResultSet result;
%>
-Tim
Brian McEntire wrote:
Looking at one of the problematic JSP pages, I see (snippets):
<%!
ResultSet result;
%>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]