Re: how to close all the port allocated by tomcat after a doGet() request

2007-09-02 Thread David Delbecq
You certainly do not want to have tomcat stop responding to port it is listening too, it would be useless :) Except if you want your tomcat to not serve anything to anyone. If what you want is prevent client browser to use keep-alive connection and issue several requests on same connection,

how to close all the port allocated by tomcat after a doGet() request

2007-09-01 Thread ying lcs
Hi, I have a simple Servlet (stateless) which has a doGet() metohd. How can I make sure both Tomcat and the client calling that servlet's doGet() to close all the ports allocated upon the doGet() request. Thank you. - To