tags:

views:

41

answers:

1

Hi All,

How to write a custom service host in WCF? I want to have more control on service host. Please guide me to write my custom service host?

+1  A: 

You basically just need to derive from the base ServiceHost class. Anything else is totally up to you.

What do you want to improve upon? Where do you see things you need to do better or different than the standard ServiceHost class?

See these articles and blog post for samples and recipes on how to do it:

Marc

marc_s