I have a scenario where I log a resquest to a database table and update the
request with a corresponding response including the response time. I am using
an HttpModule to do this.
My challenge is how to corelate the response to a corresponding request. I
am looking for a sure proof threadsafe way to corelate a response to a
coresponding request message.
Two things that concerns me:-
1. I am using the onBeginRequest event to capture the request and persist it
in the database and a filter class inheriting from the stream class to
capture the response and update a request row in the database with the
correspond response using an Id I generate to correct the messages.
2. My question is that if I create a guid in the onBeginRequest method and
pass it as a parameter to the filter class will this work from correlation
and multithreading standpoint since the messgae Id is a private memebr
variable in the filter class and is accessed by the overriden write method?
sample code
private void OnBeginRequest( object sender, EventArgs args )
{
string requestContent = string.Empty;
// HttpApplication httpApp = sender as HttpApplication;
// current request context
HttpContext context = HttpContext.Current;
// long position = httpApp.Context.Request.InputStream.Position;
long position = context.Request.InputStream.Position;
// Stream requestStream = httpApp.Context.Request.InputStream;
Stream requestStream = context.Request.InputStream;
byte[] buffer = new byte[ requestStream.Length ];
int read = requestStream.Read( buffer, 0, (int)requestStream.Length
);
//reset the stream to the original position
// httpApp.Request.InputStream.Position = position;
context.Request.InputStream.Position = position;
requestContent = System.Web.HttpUtility.HtmlDecode(
System.Web.HttpUtility.UrlDecode(System.Text.Encod ing.Default.GetString(
buffer ) ));
if( requestContent.Length == 0 ) return;
//generate message Id to corelate the request and resoponse
string messageId = System.Guid.NewGuid().ToString();
// For Get and Http posts remove the name from the name/value pair
requestContent = requestContent.Substring( requestContent.IndexOf( "=<" ) +
1 );
// append the messageId to the message
requestContent = requestContent.Insert( requestContent.LastIndexOf("/") - 1,
"<messageId>" + messageId + "</messageId>" );
LogRequestInfo( requestContent );
// apply the filter to access the response stream
// _responseStream = new ResponseStream( _httpApp.Response.Filter );
// httpApp.Context.Response.Filter = new ResponseStream(
HttpContext.Current.Response.Filter, messageId );
_responseStream = new ResponseStream( context.Response.Filter, messageId );
context.Response.Filter = _responseStream;
}
The critical question here is that there is very little documentation from
Microsoft on threading issues regarding use of httpmodules and how the
httpmodule instances are created and used.
sample filter class code
public sealed class ResponseStream : Stream
{
private Stream _responseStream;
private string _messageId;
public ResponseStream( Stream sink )
{
_responseStream = sink;
}
public ResponseStream( Stream sink, string messageId )
{
_responseStream = sink;
_messageId = messageId;
}
public override void Write( byte[] buffer, int offset, int count )
{
_responseStream.Write( buffer, offset, count );
// get the response string from the byte stream
string responseString = System.Web.HttpUtility.HtmlDecode(
System.Web.HttpUtility.UrlDecode(Encoding.Default. GetString( buffer ).Trim()
) );
//append the message Id to the response message
responseString = responseString.Insert( responseString.LastIndexOf("/") - 1,
"<messageId>" + _messageId + "</messageId>" );
// log the response
LogResponseInfo( responseString );
}
Thanks for your help in advance.
SOA Freak 7 4057
Hi Shapiro:
I'm a little confused by the question, so I apologize in advance if
this answer is not what you are looking for.
If you are trying to tie together a logical thread of execution among
various modules and filters, one place to keep state about the
response is in the Context.Items collection. This contents of the
collection are only around for the duration of a request response. You
could plop in an ID here that you get back when logging the request,
and retrieve it to know what record to update later on.
--
Scott http://www.OdeToCode.com/blogs/scott/
On Mon, 6 Dec 2004 16:57:02 -0800, "Shapiro"
<Sh*****@discussions.microsoft.com> wrote: I have a scenario where I log a resquest to a database table and update the request with a corresponding response including the response time. I am using an HttpModule to do this.
My challenge is how to corelate the response to a corresponding request. I am looking for a sure proof threadsafe way to corelate a response to a coresponding request message.
Two things that concerns me:-
1. I am using the onBeginRequest event to capture the request and persist it in the database and a filter class inheriting from the stream class to capture the response and update a request row in the database with the correspond response using an Id I generate to correct the messages.
2. My question is that if I create a guid in the onBeginRequest method and pass it as a parameter to the filter class will this work from correlation and multithreading standpoint since the messgae Id is a private memebr variable in the filter class and is accessed by the overriden write method?
sample code
private void OnBeginRequest( object sender, EventArgs args ) { string requestContent = string.Empty;
// HttpApplication httpApp = sender as HttpApplication;
// current request context HttpContext context = HttpContext.Current;
// long position = httpApp.Context.Request.InputStream.Position; long position = context.Request.InputStream.Position;
// Stream requestStream = httpApp.Context.Request.InputStream;
Stream requestStream = context.Request.InputStream;
byte[] buffer = new byte[ requestStream.Length ];
int read = requestStream.Read( buffer, 0, (int)requestStream.Length );
//reset the stream to the original position // httpApp.Request.InputStream.Position = position;
context.Request.InputStream.Position = position;
requestContent = System.Web.HttpUtility.HtmlDecode( System.Web.HttpUtility.UrlDecode(System.Text.Enco ding.Default.GetString( buffer ) ));
if( requestContent.Length == 0 ) return;
//generate message Id to corelate the request and resoponse string messageId = System.Guid.NewGuid().ToString();
// For Get and Http posts remove the name from the name/value pair requestContent = requestContent.Substring( requestContent.IndexOf( "=<" ) + 1 );
// append the messageId to the message requestContent = requestContent.Insert( requestContent.LastIndexOf("/") - 1, "<messageId>" + messageId + "</messageId>" );
LogRequestInfo( requestContent );
// apply the filter to access the response stream // _responseStream = new ResponseStream( _httpApp.Response.Filter );
// httpApp.Context.Response.Filter = new ResponseStream( HttpContext.Current.Response.Filter, messageId ); _responseStream = new ResponseStream( context.Response.Filter, messageId ); context.Response.Filter = _responseStream;
}
The critical question here is that there is very little documentation from Microsoft on threading issues regarding use of httpmodules and how the httpmodule instances are created and used.
sample filter class code
public sealed class ResponseStream : Stream { private Stream _responseStream; private string _messageId;
public ResponseStream( Stream sink ) { _responseStream = sink; }
public ResponseStream( Stream sink, string messageId ) { _responseStream = sink; _messageId = messageId; }
public override void Write( byte[] buffer, int offset, int count ) { _responseStream.Write( buffer, offset, count );
// get the response string from the byte stream string responseString = System.Web.HttpUtility.HtmlDecode( System.Web.HttpUtility.UrlDecode(Encoding.Default .GetString( buffer ).Trim() ) );
//append the message Id to the response message responseString = responseString.Insert( responseString.LastIndexOf("/") - 1, "<messageId>" + _messageId + "</messageId>" );
// log the response LogResponseInfo( responseString ); }
Thanks for your help in advance. SOA Freak
Scott,
The Context.Items collection is not available in the filter class. I am
overridding the write method. My sample code is showing what I am trying to
achive.
Regards,
Shepard
"Scott Allen" wrote: Hi Shapiro:
I'm a little confused by the question, so I apologize in advance if this answer is not what you are looking for.
If you are trying to tie together a logical thread of execution among various modules and filters, one place to keep state about the response is in the Context.Items collection. This contents of the collection are only around for the duration of a request response. You could plop in an ID here that you get back when logging the request, and retrieve it to know what record to update later on.
-- Scott http://www.OdeToCode.com/blogs/scott/
On Mon, 6 Dec 2004 16:57:02 -0800, "Shapiro" <Sh*****@discussions.microsoft.com> wrote:
I have a scenario where I log a resquest to a database table and update the request with a corresponding response including the response time. I am using an HttpModule to do this.
My challenge is how to corelate the response to a corresponding request. I am looking for a sure proof threadsafe way to corelate a response to a coresponding request message.
Two things that concerns me:-
1. I am using the onBeginRequest event to capture the request and persist it in the database and a filter class inheriting from the stream class to capture the response and update a request row in the database with the correspond response using an Id I generate to correct the messages.
2. My question is that if I create a guid in the onBeginRequest method and pass it as a parameter to the filter class will this work from correlation and multithreading standpoint since the messgae Id is a private memebr variable in the filter class and is accessed by the overriden write method?
sample code
private void OnBeginRequest( object sender, EventArgs args ) { string requestContent = string.Empty;
// HttpApplication httpApp = sender as HttpApplication;
// current request context HttpContext context = HttpContext.Current;
// long position = httpApp.Context.Request.InputStream.Position; long position = context.Request.InputStream.Position;
// Stream requestStream = httpApp.Context.Request.InputStream;
Stream requestStream = context.Request.InputStream;
byte[] buffer = new byte[ requestStream.Length ];
int read = requestStream.Read( buffer, 0, (int)requestStream.Length );
//reset the stream to the original position // httpApp.Request.InputStream.Position = position;
context.Request.InputStream.Position = position;
requestContent = System.Web.HttpUtility.HtmlDecode( System.Web.HttpUtility.UrlDecode(System.Text.Enco ding.Default.GetString( buffer ) ));
if( requestContent.Length == 0 ) return;
//generate message Id to corelate the request and resoponse string messageId = System.Guid.NewGuid().ToString();
// For Get and Http posts remove the name from the name/value pair requestContent = requestContent.Substring( requestContent.IndexOf( "=<" ) + 1 );
// append the messageId to the message requestContent = requestContent.Insert( requestContent.LastIndexOf("/") - 1, "<messageId>" + messageId + "</messageId>" );
LogRequestInfo( requestContent );
// apply the filter to access the response stream // _responseStream = new ResponseStream( _httpApp.Response.Filter );
// httpApp.Context.Response.Filter = new ResponseStream( HttpContext.Current.Response.Filter, messageId ); _responseStream = new ResponseStream( context.Response.Filter, messageId ); context.Response.Filter = _responseStream;
}
The critical question here is that there is very little documentation from Microsoft on threading issues regarding use of httpmodules and how the httpmodule instances are created and used.
sample filter class code
public sealed class ResponseStream : Stream { private Stream _responseStream; private string _messageId;
public ResponseStream( Stream sink ) { _responseStream = sink; }
public ResponseStream( Stream sink, string messageId ) { _responseStream = sink; _messageId = messageId; }
public override void Write( byte[] buffer, int offset, int count ) { _responseStream.Write( buffer, offset, count );
// get the response string from the byte stream string responseString = System.Web.HttpUtility.HtmlDecode( System.Web.HttpUtility.UrlDecode(Encoding.Default .GetString( buffer ).Trim() ) );
//append the message Id to the response message responseString = responseString.Insert( responseString.LastIndexOf("/") - 1, "<messageId>" + _messageId + "</messageId>" );
// log the response LogResponseInfo( responseString ); }
Thanks for your help in advance. SOA Freak
Have you tried using HttpContext.Current to retrieve the current
context and get to the Item collection from inside the filter class?
There has to be a context, or you would not be able to respond to the
request.
--
Scott http://www.OdeToCode.com/blogs/scott/
On Tue, 7 Dec 2004 10:39:04 -0800, "Shapiro"
<Sh*****@discussions.microsoft.com> wrote: Scott,
The Context.Items collection is not available in the filter class. I am overridding the write method. My sample code is showing what I am trying to achive.
Regards, Shepard
Thats one route. I guess my questions are that how the httpmodules are
instantiated and handled in multithreading and wether what I an doing in the
code is correct. I have provided sample code for review.
"Scott Allen" wrote: Have you tried using HttpContext.Current to retrieve the current context and get to the Item collection from inside the filter class? There has to be a context, or you would not be able to respond to the request.
-- Scott http://www.OdeToCode.com/blogs/scott/
On Tue, 7 Dec 2004 10:39:04 -0800, "Shapiro" <Sh*****@discussions.microsoft.com> wrote:
Scott,
The Context.Items collection is not available in the filter class. I am overridding the write method. My sample code is showing what I am trying to achive.
Regards, Shepard
Each instance of the HttpApplication class will create the HttpModules
needed (and registered in web.config).
HttpApplication objects (despite what the name implies) are pooled by
the ASP.NET runtime, so there is more than one. For each incoming
request an instance of HttpApplication is taken from the free pool and
assigned to service the request.
This means an HttpModule will service only one request at a time, but
it's still dangerous to keep state around in the class, because they
are pooled and reused across requests.
I agree, it's not well doc'ed. This knownledge is based on
experimentation and the Reflector tool.
--
Scott http://www.OdeToCode.com/blogs/scott/
On Tue, 7 Dec 2004 11:47:09 -0800, "Shapiro"
<Sh*****@discussions.microsoft.com> wrote: Thats one route. I guess my questions are that how the httpmodules are instantiated and handled in multithreading and wether what I an doing in the code is correct. I have provided sample code for review.
"Scott Allen" wrote:
Have you tried using HttpContext.Current to retrieve the current context and get to the Item collection from inside the filter class? There has to be a context, or you would not be able to respond to the request.
-- Scott http://www.OdeToCode.com/blogs/scott/
On Tue, 7 Dec 2004 10:39:04 -0800, "Shapiro" <Sh*****@discussions.microsoft.com> wrote:
>Scott, > >The Context.Items collection is not available in the filter class. I am >overridding the write method. My sample code is showing what I am trying to >achive. > > >Regards, >Shepard >
Scott,
Thanks for the reply but you have not answered my question. Looking at the
sample code and the description of the issue I have at hand will that work?
Regards,
Shapiro
"Shapiro" wrote: Thats one route. I guess my questions are that how the httpmodules are instantiated and handled in multithreading and wether what I an doing in the code is correct. I have provided sample code for review.
"Scott Allen" wrote:
Have you tried using HttpContext.Current to retrieve the current context and get to the Item collection from inside the filter class? There has to be a context, or you would not be able to respond to the request.
-- Scott http://www.OdeToCode.com/blogs/scott/
On Tue, 7 Dec 2004 10:39:04 -0800, "Shapiro" <Sh*****@discussions.microsoft.com> wrote:
Scott,
The Context.Items collection is not available in the filter class. I am overridding the write method. My sample code is showing what I am trying to achive.
Regards, Shepard
I guess I'm not sure what exactly the question is, my apologies.
The code seems ok, but only testing will tell :)
--
Scott http://www.OdeToCode.com/blogs/scott/
On Tue, 7 Dec 2004 15:37:02 -0800, "Shapiro"
<Sh*****@discussions.microsoft.com> wrote: Scott,
Thanks for the reply but you have not answered my question. Looking at the sample code and the description of the issue I have at hand will that work?
Regards, Shapiro "Shapiro" wrote:
Thats one route. I guess my questions are that how the httpmodules are instantiated and handled in multithreading and wether what I an doing in the code is correct. I have provided sample code for review.
"Scott Allen" wrote:
> Have you tried using HttpContext.Current to retrieve the current > context and get to the Item collection from inside the filter class? > There has to be a context, or you would not be able to respond to the > request. > > -- > Scott > http://www.OdeToCode.com/blogs/scott/ > > > On Tue, 7 Dec 2004 10:39:04 -0800, "Shapiro" > <Sh*****@discussions.microsoft.com> wrote: > > >Scott, > > > >The Context.Items collection is not available in the filter class. I am > >overridding the write method. My sample code is showing what I am trying to > >achive. > > > > > >Regards, > >Shepard > > > > This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Samuel |
last post by:
I wrote a very simple httpmodule and tried to compile it with no success.
This is my code:
==============
Imports System
Imports System.Web
Imports Microsoft.VisualBasic
NameSpace...
|
by: Robert Zurer |
last post by:
Can anyone suggest the best book or part of a book on this subject. I'm
looking for an in-depth treatment with examples in C#
TIA
Robert Zurer
robert@zurer.com
|
by: Rob Mayo |
last post by:
What I'm trying to do is Create an ASP.Net app that has both
Windows-authenticated users and Anonymous users. The idea is this:
When authenticated users attempt to access the site, their...
|
by: Girish |
last post by:
Ok, Ive been thinking about this problem for a while.
I have 30 odd aspx pages (already built) on my website that I need to have
some validation occur before the page should load. The validation...
|
by: Vitali Dzz via .NET 247 |
last post by:
Hello
I need some help
I need to write a code that analyze size of the uploaded file.
I wrote such HttpModule:
public void BeginRequest(object sender, EventArgs args)
{
// Create an...
|
by: walter |
last post by:
Hi there, I know there is pool of HttpApplications, and for each request
coming in, HttpRuntime will dedicate one from pool to serve the request. My
questions are :
1. since HttpModule is plug...
|
by: Faraz |
last post by:
Hi everyone,
I am running into a slight problem. My understanding is that a custom
HttpModule will run for every request made to the server, regardless of the
extension. I do not experience this...
|
by: Dan Sikorsky |
last post by:
I use an HttpModule that handles unhandled exceptions from an .aspx.cs page
by logging to a text file, logging to the event viewer's app log, and sending
out an email to the website developer and...
|
by: Andy |
last post by:
Hi folks,
I wrote a HttpModule to handle file uploads (on beginRequest) prior to the
actual web form displaying the result.
The file upload processing generally works very well also for large...
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM)
Please note that the UK and Europe revert to winter time on...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |