Reputation: 759
Is WCF Service that hosted in the IIS should be written thread safe? Which differences should be taken in consideration in the development phase between those two options?
Upvotes: 1
Views: 2804
Reputation: 7573
This MSDN Article, Hosting and Consuming WCF Services probably has all the information you need.
As for development phase, you can use the built-in hosting from Visual Studio, and then deploy it to IIS for stage testing afterwards. You can use Visual Studio's feature to run two projects at start-up: your application project and the WCF project.
Upvotes: 1