1
votes

I'm trying to build a system which consists of:

  1. A centralized IIS component
  2. A Client application written in .Net
  3. A Third party application.

The .Net Client should on startup connect to a WCF Net.Tcp Binding on the IIS application and register it's self as a consumer of requests (Callbacks).

The Third party application will then make Web Service calls to the IIS server which will farm out the request to the .Net Clients.

How do I host mutliple WCF services IIS? Is this possible?

I assume that I'd have to instantiate the services in the web.config as endpoints but I'm not sure how to do this.

1

1 Answers