Re: Deploying an iHttpModule in the GAC
- From: "CD" <CD@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 5 Jul 2005 01:39:01 -0700
The IHttpModule is a simple one and has dependency only on System and
System.Web which are already present in the GAC. Any ideas what i could do
next ?
"Klaus H. Probst" wrote:
> A common cause for this is a missing dependency of *your* assembly which is
> missing in the GAC. If that's the case then you need to place any and all
> dependencies in the GAC along with your IHttpModule implementation.
>
> Try using FUSLOGVW to see the binding log for your assembly.
>
> --
> Klaus H. Probst, MVP
> http://www.simulplex.net/
>
>
> "CD" <CD@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
> news:8F231642-3BCD-4ED9-8ED4-56DA6180401B@xxxxxxxxxxxxxxxx
> > Hi,
> > I 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
> >
> >
> >
>
>
>
.
- References:
- Deploying an iHttpModule in the GAC
- From: CD
- Re: Deploying an iHttpModule in the GAC
- From: Klaus H. Probst
- Deploying an iHttpModule in the GAC
- Prev by Date: Re: Using SQl to store aspx pages and memory problems
- Next by Date: Re: release / debug question
- Previous by thread: Re: Deploying an iHttpModule in the GAC
- Next by thread: HUMAN SOFTWARE DEVELOPMENT NETWORK : you're welcome
- Index(es):
Relevant Pages
|