What is an iHTTPModule, and explain its implementation with
its limitations?
Answer Posted / firozgkp
have created a HttpModule to do some preprocessing for a
web
application. This preprocessing is to be done before each
page of the
application is loaded. I have created a separate project
compiled it and
added a reference to it in the web application. The code is
working fine.
Now i need to deploy this ihhtpModule in the GAC. I have
added the
following lines of code in the web.config file of the web
application
<httpModules>
<add name="Authenticate" type="myModules.AuthModule,
Authenticate" />
</httpModules>
where Authenticate is my dll name, myModules is the
namespace and AuthModule
is the class name. This works fine when i use a local copy
of the httpModule
but throws an error when i deploy the same in the GAC.
I ahve added these lines in the web.config file to refer to
the GAC.
<assemblies>
<add assembly="Authenticate, version=1.0.0.0,
Culture=neutral,
PublicKeyToken=d1a87f2cb11b878f" />
</assemblies>
Anybody with any idea as to how i can resolve this issue
please help.
Thanks
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
How to implement globalization and localization in the use interface in .net.
What is State Management in .Net and how many ways are there to maintain a state in .Net? What is view state?
Explain the concept of MVC Scaffolding?
Explain how do you validate the controls in an asp .net page?
Which authentication uses a combination of windows and iis authentication?
What are Master Pages in ASP.NET? or What is a Master Page?
Why is an object pool required?
Differentiate between client-side and server-side validations in web pages.
What is the difference between Classic ASP and ASP.Net?
What is round trip in asp.net?
Which tool you have done?
What is a server cookie?
Which method is used to enforce garbage collection in .net?
What does ascx stand for?