私はこのWebサービスhttp://www.webservicex.com/globalweather.asmx?WSDLを使用して、すべての都市名を国名で取得します。私はこれが今、私は都市名でコンボボックスを埋めるために必要コンボボックスにWSDL WebServiceを入力してください
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>
を返す応答
GlobalWeatherReference.GlobalWeatherSoapClient weather = new GlobalWeatherReference.GlobalWeatherSoapClient("GlobalWeatherSoap12");
cities_cb.DataSource = weather.GetCitiesByCountry("Chad").ToList();
を取得するためのコードの下に使用します。助けてください。