0

如何在应用程序中使用外部 Web 服务(付费或免费)。例如:这是来自正在使用的站点之一 (http://debugmode.net/2010/09/10/sumption-wcf-rest-service-in-asp-net-web-site/) 的代码片段自创服务。但是如果必须使用外部服务而不是它应该如何进行?

public partial class _Default : System.Web.UI.Page
{    

 protected void Page_Load(object sender, EventArgs e)  
 {    
 }  

protected void Button1_Click(object sender, EventArgs e)    
{        
 WebClient proxy = new WebClient();     
 byte[] abc = proxy.DownloadData((new Uri("http://localhost:4567/Service1.svc/GetData"))); 
 Stream strm = new MemoryStream(abc);   
 DataContractSerializer obj = new DataContractSerializer(typeof(string));  
 string result = obj.ReadObject(strm).ToString();     
 TextBox1.Text = result; 
}
4

0 回答 0