Reputation: 703
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
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
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
Reputation: 3209
http://msdn.microsoft.com/en-us/library/aa751792.aspx
There you go - the how to from Microsoft
Upvotes: 2