WCF REST Self-Hosted 400 Bad Request
I'm having a problem with a self-host WCF REST service. When I try to issue a GET via browser or Fiddler, I get a 400 Bad Request. Tracing is reporting an inner exception of XmlException "The body of the message cannot be read because it is empty." I don't have any configuration in app.config (do I need any?). I have tried changing WebServiceHost to ServiceHost, and WSDL is returned, but the operations still return 400. What am I missing here? // Add Reference to System.ServiceModel and System.ServiceModel.Web using System; using System.Diagnostics; using System.ServiceModel; using System