Tagged Questions
4
votes
3answers
335 views
Is HttpModule shared among working threads?
Do I have to lock access to instance members?
Example:
public class HttpModule : IHttpModule
{
//...
Dictionary<int, int> foo;
void UseFoo(int a, int b)
{
foo[a] = b;
...
2
votes
0answers
245 views
C# HTTPModule Could not load type CGI Request
Trying to use a HTTPModule I wrote in complied C# class project to log request values and extend a third party CGI shopping cart. My module works fine with asp,asp.net,jpg and html request, but soon ...
1
vote
2answers
124 views
HTTP Module causing problem with Google Cache
I have a live site ( I can't provide the URL ).
It is on sharepoint 2007. The pages were having a URL, later that was modified.
I wrote a http module and used response.redirect() to navigate user to ...
1
vote
2answers
1k views
JS,Images and CSS getting intercepted by HTTPModule
I have a simple HTTPModule which does some custom session state management.
public void Init(HttpApplication context)
{
context.AcquireRequestState += new ...
1
vote
2answers
317 views
StatusCode in IHttpModule is always 200?
I have an custom IHttpModule that handels all available events and logs the HttpContext.Current.Response.StatusCode to a file.
My web.config does not contain any other module in <httpModules> ...
0
votes
0answers
168 views
Is ReleaseRequestState called multiple times for each Request received by IIS?
I am writing an HttpModule in VS2010/ASP.NET 4.0 for use with IIS 7. The module is going to enforce query string security by encrypting query strings.
I would like this module to be completely ...
0
votes
2answers
1k views
HTTPModule and Sharepoint Site
I am running into an issue with using a HTTPModule with a sharepoint deployed site. Here is what I have:
my asp.net pages inside the /layouts/[ProjectName]/ folder. The aspx file uses a sharepoint ...