咱們日常在PC端調用WCF服務,只要知道WCF服務的地址,客戶端直接添加引用服務就能夠使用了,卻不知還有其餘方式,其實,咱們也能夠服務器
經過HTTP POST的方式調用WCF服務,這樣就不用添加引用了,在手機移動端開發後臺服務,都是經過Post的形式調用WCF服務,固然,這種方式在PC也能夠使用。app
咱們來看下面的一個簡單示例。下面的示例演示了服務器端和客戶端的簡單通信post
服務器端返回一個JSON字符串,代碼以下url
契約定義spa
- [OperationContract]
- [WebInvoke(UriTemplate = "AddData", Method = "POST", RequestFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, ResponseFormat = WebMessageFormat.Json)]
- string AddData(Stream stream);
契約實現.net
- public string AddData(Stream stream)
- {
- StreamReader sr = new StreamReader(stream);
- string s = sr.ReadToEnd();
- sr.Dispose();
- NameValueCollection nvc = HttpUtility.ParseQueryString(s);
-
- string appKey = nvc["appKey"];
- string sign = nvc["sign"];
- string name=nvc["username"];
-
- var result = new ErrorModel
- {
- IsError = true,
- ErrorCode = -2,
- ErrorMsg = "操做信息",
- };
- return new JavaScriptSerializer().Serialize(result);
- }
客戶端調用code
- public static string postSend(string url, string param)
- {
- Encoding myEncode = Encoding.GetEncoding("UTF-8");
- byte[] postBytes = Encoding.UTF8.GetBytes(param);
-
- HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url);
- req.Method = "POST";
- req.ContentType = "application/x-www-form-urlencoded;charset=UTF-8";
- req.ContentLength = postBytes.Length;
-
- try
- {
- using (Stream reqStream = req.GetRequestStream())
- {
- reqStream.Write(postBytes, 0, postBytes.Length);
- }
- using (WebResponse res = req.GetResponse())
- {
- using (StreamReader sr = new StreamReader(res.GetResponseStream(), myEncode))
- {
- string strResult = sr.ReadToEnd();
- return strResult;
- }
- }
- }
- catch (WebException ex)
- {
- return "沒法鏈接到服務器\r\n錯誤信息:" + ex.Message;
- }
- }
- string param = "appKey=44hbf622op&username=13011001233&sign=123456";
-
- postSend("http://localhost:17446/CusDataService.svc/AddData", param);