代码之家  ›  专栏  ›  技术社区  ›  Sheeba

如何使用发布/发布WCF RestFul服务

  •  1
  • Sheeba  · 技术社区  · 9 年前

    我在wcf-restful服务中执行crud操作(使用存储过程)。我已经完成了创建服务,但我如何在我的 纯ASP.net应用程序(无Javascript、Jquery、AJAX) 。因为我是WCF休息服务的新手。请给我一步一步的操作。

    1 回复  |  直到 9 年前
        1
  •  1
  •   user4391070 user4391070    9 年前
             string sURL =  @"http://localhost:50353/urUriName/"+ txtfname.Text;
            WebRequest webGETURL;
    
            webGETURL = WebRequest.Create(sURL);
           webGETURL.Method = "DELETE"; 
           webGETURL.ContentType = @"Application/Json; charset=utf-8";
          HttpWebResponse wr = webGETURL.GetResponse() as HttpWebResponse;
           Encoding enc=Encoding.GetEncoding("utf-8");
        // read response stream from response object
        StreamReader loResponseStream = new StreamReader(wr.GetResponseStream(), enc);
    
        // read string from stream data
        string strResult = loResponseStream.ReadToEnd();
    
        // close the stream object
        loResponseStream.Close();
        // close the response object
        wr.Close();
        // assign the final result to text box
        Response.Write(strResult);