tags:

views:

216

answers:

2

Hi All, I have several wcf services which are hosted using ServiceHost class. Now , I want to implement a separate wcf service which can host these services. Anyone please suggest me how can I do it?

Suppose I have created some wcf services , I can host them by self hosting using ServiceHost , but I want that a program that can host any wcf service , so no service needs to be self hosting

A: 

IIS can host your services for you - also the WAS (Windows Process Activation Server) can do the same. They both have their own pro's and cons associated with hosting.

Windows "Dublin" - due out some time after .NET 4.0 - will be another step into a managed, central hosting environment for WCF services (and WF workflows).

Those all allow you to have someone else host your WCF services for you - no need for ServiceHost instances on your end of things.

Marc

marc_s
A: 

Well, you could create a service that will host those WCF services, or host them inside IIS, I think either option would work for you.

Miki Watts