在Rails程序里面提供“天气预报”信息

在Rails程序里面提供天气预报,我的做法是通过调用WebService来获得天气预报信息。在这个网站里面提供了一个WebService,网站数据是从中国气象局得来的,应该说是比较权威。这个WebService从接口方式来看,应该是用.Net编写的。

ASMX文件地址:http://www.webxml.com.cn/WebServices/WeatherWebService.asmx

在Rails可以用soap4r来调用这个.net WebService

第一步骤,安装soap4r

gem install soap4r

第二步骤,调用soap4r来自动生产WebService的Wrap类

wsdl2ruby.rb --wsdl http://www.webxml.com.cn/WebServices/WeatherWebService.asmx --type client --force

第三部,在Rails里面调用(我的一个调用过程)

在Controller里面

def index

require 'WeatherAPIDriver.rb'

weatherService=WeatherWebServiceSoap.new
city=GetWeatherbyCityName.new("54830") #54830=zibo
cityweather=weatherService.getWeatherbyCityName(city)

这样就可以了!

del.icio.us 标记: rails, weather, soap4r

你可能感兴趣的:(.net,webservice,Rails)