2014年8月27日 星期三

[WCF] WebClient post api

用於測試WCF資料,作為客戶端傳送資料到wcf

  1. string data = @"
  2.                    {
  3.                             ""B"" : ""88888888-4444-4444-4444-121212121212"",
  4.                             ""QID"" : ""0610a3ac-4262-4b1b-aa23-3a16edb5c7b3"",
  5.                             ""QID"" : ""1ae67bee-e819-451d-bc20-54dffdf839b8"",
  6.                             ""Anr"" : """",
  7.                             ""Der""  : ""54026fee464f7456"",
  8.                             ""An"" :""1c440ab1-7b00-4dcc-8faa-e1c3f1375eb9""
  9.                    }";
  10.             WebClient webClient = new WebClient();
  11.             webClient.Headers["Content-type"] = "application/json";
  12.             webClient.Encoding = Encoding.UTF8;
  13.             webClient.UploadString("http://localhost:3415/WcfService.svc/TEST", "POST", data);

沒有留言:

張貼留言