Eros
Eros

Reputation: 703

Deploying a WCF Service

I am using WCF for the first time. I Have successfully created the service and it works fine on my local machine. I want to know the steps involved for deploying the service to the client environment (including changes to the config file, IIS settings) and any other miscellaneous settings.

Upvotes: 7

Views: 6185

Answers (3)

tom redfern
tom redfern

Reputation: 31750

You can also deploy a WCF service to a windows service host. This is desirable in many situations which are outlined here:

IIS WCF service hosting vs Windows Service

Upvotes: 0

user117499
user117499

Reputation:

Right click the service project in VS, select Copy Website. Specify the IIS path. (may need to connect) Moves / sync all files.

Upvotes: 0

ist_lion
ist_lion

Reputation: 3209

http://msdn.microsoft.com/en-us/library/aa751792.aspx

There you go - the how to from Microsoft

Upvotes: 2

Related Questions