我试图按照本教程来实现一个简单的网络服务:
https://www.youtube.com/watch?v=jK-cWZQqeJw
我添加了一个网络参考并输入了免费的网络服务 url:
http://wsf.cdyne.com/WeatherWS/Weather.asmx
在本教程中,我看到如下内容:
wService.Weather myService = new wService.Weather();
string result = myService.GetCityWeatherByZip("61761");
但是我的网络服务中没有天气类。我看到的唯一区别是我使用的是 vs 2012,而教程是在 vs 2005 或 2008 中。如何访问网络方法“GetCityWeatherByZip”?