Wrapping your WCF Responses
Posted by: Wallace B. McClure,
on 18 Jan 2011 |
View original | Bookmarked: 0 time(s)
I've got a WCF web service that exposes its data over REST. I'm
calling it from iPhone and Android. The method signature is something
like: [WebInvoke(UriTemplate = "/UserValidate", Method = "POST", BodyStyle = WebMessageBodyStyle.Wrapped, RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)] public bool UserValidate(string user, string pwd);In the response,...