My question is if a user cancels or closes the browser before the report is
completed, but windows service is still in the process of creating a report
how do I notify the service to quit creating a report because there isn't
anyone to receive it?
Thank You
Peter
But practically there is a little use in that since there is no reliable way
to know if the user navigated away from your site. Thre are simply too many
exit options.
--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
"Peter" <czu...@nospam.nospam> wrote in message
news:OHNYbDar...@TK2MSFTNGP06.phx.gbl...
> My question is if a user cancels or closes the browser before the report
> is completed, but windows service is still in the process of creating a
> report how do I notify the service to quit creating a report because there
> isn't anyone to receive it?
The HttpResponse object has an IsClientConnected property which is
"supposed" to do exactly that:
http://msdn.microsoft.com/en-us/library/system.web.httpresponse.isclientconnected.aspx
However, I've never been able to get it to work...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net
Regarding on the scenario you mentioned, when the web application consumer
close the webbrowser, the ASP.NET server-side will not get any rapid
notification of it. It does be a very common and typical limitation of
http/web based application which is stateless with server.
If the reporting generation task is long-run and you feel it critical and
important to pause/cancel report generation whenever the client user close
the webbrowser(before the report generation finishes), I think you can can
consider the following approach:
** At your ASP.NET web application's page (which will let user send request
for generating report), you need to add some additional code logic to to
contantly ping the webservice or windows service to as to let the backend
processing service know that the request client is still alive.
** you also need to apply a timeout policy at the report processing side.
e.g. if the genreation hasn't finsihed, but it hasn't received notify from
client side(to a certain sessionID) for a long time(exceed timeout), it
will cancel the generation.
for implementation, at web page side, you can consider using AJAX script
call to send notify to server-side constantly.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msd...@microsoft.com.
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: "Peter" <czu...@nospam.nospam>
>Subject: Notify a Service Process
>Date: Sat, 3 May 2008 23:39:34 -0500
Thank you
Sounds good ! - Well -- kind of, because this means a lot of work to get
this working correctly :)
Yes, I agree that the real implementation will require lots of work.
Actually, it is always not simple task to build a rich component that helps
improve interaction between webpage client and server-side. Anyway, if
there is anything else need help later, welcome to post here.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msd...@microsoft.com.
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: "Peter" <czu...@nospam.nospam>
>References: <OHNYbDar...@TK2MSFTNGP06.phx.gbl>
<oFyvccn...@TK2MSFTNGHUB02.phx.gbl>
>Subject: Re: Notify a Service Process
>Date: Mon, 5 May 2008 08:43:53 -0500