How do I access the HTTP POST request body in a WCF REST service?
Here is the service definition:
[ServiceContract] public interface ITestService {
Best way i think doesn't involve WebOperationContext
[OperationContract] [WebInvoke(Method = "POST", UriTemplate = "EntryPoint", BodyStyle = WebMessageBodyStyle.Bare)] MyData GetData(System.IO.Stream pStream);