使用WSDL WebService填充ComboBox

时间:2017-09-16 18:12:26

标签: c# web-services soap combobox wsdl

我使用此网络服务http://www.webservicex.com/globalweather.asmx?WSDL按国家/地区名称获取所有城市名称。我使用下面的代码来获得响应

GlobalWeatherReference.GlobalWeatherSoapClient weather = new GlobalWeatherReference.GlobalWeatherSoapClient("GlobalWeatherSoap12");
            cities_cb.DataSource = weather.GetCitiesByCountry("Chad").ToList();

返回

string

<NewDataSet>
  <Table>
    <Country>Chad</Country>
    <City>Sarh</City>
  </Table>
  <Table>
    <Country>Chad</Country>
    <City>Abeche</City>
  </Table>
  <Table>
    <Country>Chad</Country>
    <City>Moundou</City>
  </Table>
  <Table>
    <Country>Chad</Country>
    <City>Ndjamena</City>
  </Table>
  <Table>
    <Country>Chad</Country>
    <City>Bokoro</City>
  </Table>
  <Table>
    <Country>Chad</Country>
    <City>Bol-Berim</City>
  </Table>
  <Table>
    <Country>Chad</Country>
    <City>Am-Timan</City>
  </Table>
  <Table>
    <Country>Chad</Country>
    <City>Pala</City>
  </Table>
  <Table>
    <Country>Chad</Country>
    <City>Faya</City>
  </Table>
</NewDataSet>

现在我需要按城市名称填写组合框。请帮忙。

2 个答案:

答案 0 :(得分:2)

您需要获得回复并使用 StringReader ,如下所示

List<string> cityNames = new List<string>();
GlobalWeatherReference.GlobalWeatherSoapClient client = new GlobalWeatherReference.GlobalWeatherSoapClient("GlobalWeatherSoap12");
var allCountryCities = client.GetCitiesByCountry("Chad");
if (allCountryCities.ToString() == "Data Not Found")
{

}
DataSet ds = new DataSet();
//Creating a stringReader object with Xml Data
StringReader stringReader = new StringReader(allCountryCities);
// Xml Data is read and stored in the DataSet object
ds.ReadXml(stringReader);
//Adding all city names to the List objects
foreach (DataRow item in ds.Tables[0].Rows)
{
    cityNames.Add(item["City"].ToString());
}    
cities_cb.DataSource = cityNames;

答案 1 :(得分:1)

您可以基于XML Schema生成C#类,例如使用此Web资源:http://xmltocsharp.azurewebsites.net/ 你得到这些课后:

[XmlRoot(ElementName = "Table")]
public class Table
{
    [XmlElement(ElementName = "Country")]
    public string Country { get; set; }
    [XmlElement(ElementName = "City")]
    public string City { get; set; }
}

[XmlRoot(ElementName = "NewDataSet")]
public class NewDataSet
{
    [XmlElement(ElementName = "Table")]
    public List<Table> Table { get; set; }
}

然后您需要使用NewDataSet类型

反序列化来自WS的响应
        GlobalWeatherSoapClient gwsc = new GlobalWeatherSoapClient("GlobalWeatherSoap12");
        var response = gwsc.GetCitiesByCountry("Chad");
        XmlSerializer xmlSerializer = new XmlSerializer(typeof(NewDataSet));
        var dataSet = xmlSerializer.Deserialize(new MemoryStream(Encoding.UTF8.GetBytes(response))) as NewDataSet;
        if (dataSet != null)
        {
            var cities = dataSet.Table.Select(x => x.City).ToList();
        }