Ruby web services
By Simon • Sep 26th, 2006 • Category: Ruby, Semantic Web & Web ServicesMy current obession is learning and using the Ruby programming language, both for web appls (using Rails) and in general as an alternative to perl. I did some webservice stuff today and its incredibly easy, you can try this in the irb
require 'soap/wsdlDriver'
wsdl = 'http://www.ebi.ac.uk/Tools/webservices/wsdl/WSDbfetch.wsdl'
driver = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
puts driver.getSupportedDBs()
This three line snippet calls the WSDbfetch service [...]
