WCF SOAP and REST Simple Template ReadMe This is a multi-project template designed by Tony Sneed for exposing both SOAP and REST endpoints for a single WCF service in a simplified manner. It is useful for spinning up a very simple service implementation to be used as a basis for exploring various scenarios. This is not intended for real-world applications. To run the service, set the WCF.Web project as the startup project, then press Ctrl-F5. Click the link for Service.svc and the SOAP service help page should be displayed. To see the REST help page, navigate to http://localhost:62772/Service.svc/Rest/help. Running the client will invoke both the SOAP and REST service endpoints. The SOAP client uses the ClientChannel helper class to ensure channel cleanup without exceptions. The REST client uses WebClient to issue an HTTP GET request. To assist in debugging, there is a useFiddler flag in the client app.config, which causes localhost to be appended with a dot in the url. For this to function, Fiddler must already be running. Then set useFiddler in appSettings to true.