0

アプリ内で外部Webサービス(有料・無料)を利用する方法。例: これは、使用しているサイト (http://debugmode.net/2010/09/10/using-wcf-rest-service-in-asp-net-web-site/) の 1 つからのコード スニペットです。自分で作ったサービス。しかし、その代わりに、外部サービスを使用する必要がある場合、どのように進めるべきでしょうか?

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