Simon Twigger @ MCW

bioinformatics and related stuff

Archives for the ‘Ruby’ Category

Starfish - Ruby distributed programming

By Simon • Oct 10th, 2006 • Category: Ruby

This is a note to me - find some time to check out Starfish (see http://tech.rufy.com/ and http://rufy.com/starfish/doc/)

addthis_url = ‘http%3A%2F%2Ftwigger.hmgc.mcw.edu%2Findex.php%2F2006%2F10%2F10%2Fstarfish-ruby-distributed-programming%2F’;
addthis_title = ‘Starfish+-+Ruby+distributed+programming’;
addthis_pub = ’simont’;



Ruby web services

By Simon • Sep 26th, 2006 • Category: Ruby, Semantic Web & Web Services

My 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 [...]