RE: How to close a response?

2002-07-18 Thread Durham David Cntr 805CSS/SCBE
Need more detail about your problem. Are you having a problem with JSP? -Original Message- From: Jenya Strokin [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 9:17 AM To: [EMAIL PROTECTED] Subject: How to close a response? Hi, I need to close the response completely. In some

RE: How to close a response?

2002-07-18 Thread Jenya Strokin
: Durham David Cntr 805CSS/SCBE [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 10:18 AM To: Tomcat Users List Subject: RE: How to close a response? Need more detail about your problem. Are you having a problem with JSP? -Original Message- From: Jenya Strokin [mailto:[EMAIL PROTECTED

RE: How to close a response?

2002-07-18 Thread Shapira, Yoav
Users List Subject: RE: How to close a response? I'm using servlet. But if you know way how to do this from JSP, please share it.)) This is my method wich called from doGet and doPost: public void doGetPost(HttpServletRequest request, HttpServletResponse response) throws ServletException

RE: How to close a response?

2002-07-18 Thread Durham David Cntr 805CSS/SCBE
18, 2002 9:44 AM To: Tomcat Users List Subject: RE: How to close a response? I'm using servlet. But if you know way how to do this from JSP, please share it.)) This is my method wich called from doGet and doPost: public void doGetPost(HttpServletRequest request, HttpServletResponse response

Re: How to close a response?

2002-07-18 Thread Tim Funk
Message- From: Durham David Cntr 805CSS/SCBE [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 10:18 AM To: Tomcat Users List Subject: RE: How to close a response? Need more detail about your problem. Are you having a problem with JSP? -Original Message- From: Jenya

RE: How to close a response?

2002-07-18 Thread Jenya Strokin
To: Tomcat Users List Subject: RE: How to close a response? Howdy, I would be very careful synchronizing stuff on a request or response reference. The potential performance bottlenecks could be crippling if you site has many concurrent users. Did you actually see the browser getting the same

RE: How to close a response?

2002-07-18 Thread Jenya Strokin
for suggestions and help, Jenya -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 11:25 AM To: Tomcat Users List Subject: Re: How to close a response? There is no need to synchronize the request object. It will not be used in multiple threads concurrently

Re: How to close a response?

2002-07-18 Thread Will Hartung
From: Jenya Strokin [EMAIL PROTECTED] Sent: Thursday, July 18, 2002 7:43 AM Subject: RE: How to close a response? I'm using servlet. But if you know way how to do this from JSP, please share it.)) This is my method wich called from doGet and doPost: If user clicks link twice, browser

Re: How to close a response?

2002-07-18 Thread Will Hartung
From: Jenya Strokin [EMAIL PROTECTED] Sent: Thursday, July 18, 2002 9:10 AM Subject: RE: How to close a response? Guys.. it works now, but I don't understand why))) I change code to synchronize the sharedSassionBean and didn't put any magic methods for checking, and Servlet never send