码迷,mamicode.com
首页 > Web开发 > 详细

Web服务的调用

时间:2017-12-11 14:17:32      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:string   dataset   set   tables   read   val   bsp   exchange   服务   

1、创建服务引用

例如:天气预报

2、在代码添加引用空间

TvProgram.ChinaTVprogramWebService tp=new TvProgram.ChinaTVprogramWebService();
DataSet ds=tp.getAreaDataSet();

3、引用具体方法

private void comBox1_SelectedIndexChanged(object sender,EventArgs e)
{
ComboBox cb=(ComboBox)sender;
if(ComboBox1.SelectedIndex>0)
{
int num=Convert.ToInt32(cb.SelectedValue.ToString());
TvProgram.ChinaTVprogramWebService tp=new TvProgram.ChinaTVprogramWebService();
DataSet ds=tp.getTVstationDataSet(num);
comboBox2.DataSource=ds.Tables[0];
comboBox2.DisplayMember="tvStationName";
comboBox2.ValueMember="tvStationID";
}
}

返回的XML用两种处理方法

comboBox1.DataSource=ds.Tables[0];

comboBox1.DisplayMember="Area";

comboBox1.ValueMember="areaID";

 

Web服务的调用

标签:string   dataset   set   tables   read   val   bsp   exchange   服务   

原文地址:http://www.cnblogs.com/zzp0320/p/8022076.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!