Tuesday, November 20, 2007

Creating Services

As we know services play an important role in applications.
.Net simplified the development/deployment of windows services.

To create a service in .Net you just need to create an installer class and a class inherited from ServiceBase. The class derived from ServiceBase represents the service code that actually executes.

Also the service development is C++ is also not that tedious.
Following article explains a simple approach to create a simple service using C++ (C).
http://www.devx.com/cplus/Article/9857

Thanks
Prasad

No comments: