When a forwatd to a JSP page from a servlet, is seems that all the connections are liberated. It's is not the case when a forward to a servlet. I close the connection before I forward but the connection is not liberated.
What is the best way to free a connection? It work when I use the HttpServletsResponse.sendRedirect method, but do you know a better practice?
What is the best way to free a connection? It work when I use the HttpServletsResponse.sendRedirect method, but do you know a better practice?