Reputation: 4892
We currently have a bunch of windows services. I am wondering what the advantages would be of making these WCF Windows Services?
Thanks
Upvotes: 2
Views: 344
Reputation: 115548
It all depends on what the services do. If you have no need for them to communicate with other programs, then there isn't really much of a point. We have several services which check the health of the database, process files etc. Would it be nice if other services could communicate with them, yes maybe, but they don't need to at the moment, so we don't add extra code we don't need to.
Upvotes: 2