I am getting this error when I submit (from a jsp) to a servlet:
Closing dangling connections. All connections must have
a close(
) in a finally block.
I wrote the servlet back in 2000 and it worked flawlessly
until I upgraded to resin 3.0.6
Between that time, the servlet ran
on WebLogic. The odd thing about it is that it only
Gives this error on servlets that show a confirmation form generated by the
servlet (no MVC here).
I don’t necessarily think it’s a problem with
resin 3.0.6, but I can’t seem to debug the problem
Using my old standby System.out.print(“Some message”);
Any idea’s on how to debug this?
I have tried all kinds of different version of closing the connect in the finally block.
TIA
Tom K.