anonymous wrote : while (rs.next()) {
| // Get integers, chars, strings, .....
| }
Are you sure that you are not invoking the rs.next() method again *inside* the while loop
(Just to make sure that we are not missing anything). Usually the reason for the Exhausted
resultset exception is that the user is trying to retrieve the contents of the resultset
when it is empty.
It would be great, if you could post the exception stacktrace so that we could get more
hints about the exception.
anonymous wrote : they told me that the JBoss is kept running but with no response at all
This means that the server is running but not responding. Usually in situations like
these, it is very helpful to obtain the thread dump to see what exactly is going on the
server in the background. The proceedure to obtain the thread dump is explained here:
http://wiki.jboss.org/wiki/Wiki.jsp?page=StackTrace
Obtain the thread dump when the server becomes unresponsive. The thread dump will show you
what operations are being carried out by each and every thread in JBoss.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3958416#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...