Reputation: 8055
Is there a good example/tutorial on how to create and run WCF REST webservice without IIS ?
I want to have a console application that'll run the webservice and not host it in IIS.
Upvotes: 3
Views: 2167
Reputation: 3830
Just self host your service with System.ServiceModel.Web.WebServiceHost in your console application. It will wire up the appropriate endpoint behavior / binding.
Upvotes: 5