Hi, I have a DLL and i want to know whether it is possible to run the DLL as service.Is there any way to do it ?
i am using .net 2.0.
Thanks in advance.
Hi, I have a DLL and i want to know whether it is possible to run the DLL as service.Is there any way to do it ?
i am using .net 2.0.
Thanks in advance.
I dont think you simple use a DLL as a service directly, but what you can do is create a bridge service, i.e. a web service, WCF or a remotable object, which takes this DLL as a reference and exposes its public methods as a service.
Consider COM+ / Enterprise Services. It will allow you to run your DLL in a service with .Net 2.0.