I probably made a bad choice of words there. What I meant was I want people
to be able to add the *.dll to their web application and use the handler
without needing to register it in their Web.config. The reason I created the
handler is because it is used by one of the controls in my class library (it
generates a *.gif image), so I need the handler to be available to the
control at a known location (unless there is some alternative way for me to
have the *.gif's generated and returned from a URL). Any ideas?
--
Nathan Sokalski
http://www.nathansokalski.com/
"Cor Ligthert[MVP]" <> wrote in message
news:#...
> A DLL in Net is a Class Library not something that is independent working.
>
> If you want the later you can use a service (or a webservice of WFC).
>
> Success
>
> Cor
>
>
> "Nathan Sokalski" <> wrote in message
> news:47168E65-BCFE-4795-9A7D-...
>> I have a Solution that contains a Web Application and a Class Library.
>> The Class Library contains an HTTP Handler, which implements IHttpHandler
>> and needs registered in the config file. I want the *.dll for the Class
>> Library to be available and work independently of the Web Application.
>> The handler works when I register the handler in the <httpHandlers>
>> section of the Web.config file in the Web Application, but how can I
>> register it using the Class Library? Thanks.
>> --
>> Nathan Sokalski
>>
>> http://www.nathansokalski.com/
>