Is it possible to monitor request process?

  • Thread starter Thread starter Joel Cade
  • Start date Start date
J

Joel Cade

I'm attempting to use an HTTP Module to monitor the progress of the request.
Is there a way to do this? I've attempted to use the Request.TotalBytes
property, and attempted to use the Request.InputStream, but both seem to
only respond after the request has been sent to the server. Any help would
be greatly appreciated.
 
Could you be more specific? What do you mean, "monitor the progress of the
request"?
 
Hi,

If i got you right, you should use ISAPI filter.

Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114

Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377

Know the overall picture
 
Joel,

There are things you're not telling us.

Your HttpModule captures the BeginRequest event, and you say it keeps track
of the bytes sent. Your remoted object stores the progress so it can be
displayed on another page.

So, what's missing? What is it that you haven't been able to do?
 
The HttpModule has access to the Context.Request, which has properties
for examining the Request, but they seem to lock up the processing of
the module until the Request has completed sending. I've tried
examining the Request.TotalBytes, but this locks up the processing until
the request has been received.

I've attempted using the Request.InputStream as well, but accessing this
object also hangs the process until the Request has been completely
received by the server.

Joel Cade, MCSD
Brinkster, Inc.

"Try not to become a man of success, but rather try to become a man of
value." - Albert Einstein
 
Back
Top