developer747
developer747

Reputation: 15958

Can WCF replace a windows service?

There is this windows service that runs at mid night every night.For the sake of simplicity, assume that all this service does is delete a log table. If I try to replace it with a WCF (hosted as a windows service) , do I have to call a method on it? Does the WCF have an entry point like the console application Main() method, where it starts something without having to call a method on it?

In a circumstance explained above, does it make sense to replace a windows service by WCF?

Upvotes: 1

Views: 297

Answers (1)

Peter
Peter

Reputation: 27944

A windows service is a process running in the back ground, WCF is a communication framework. So your simple answer is no it is not the same and your requirements a windows service is fine.

Upvotes: 5

Related Questions