#from http://www.devx.com/enterprise/Article/28101/1954?pf=true require 'soap/rpc/driver' stub = SOAP::RPC::Driver.new("http://127.0.0.1:9090", "http://markwatson.com/Demo") stub.add_method('upper_case', 'a_string') stub.add_method('lower_case', 'a_string') stub.add_method('times_string', 'a_string', 'a_number') puts stub.lower_case("Jack and Jill went up the hill.") puts stub.upper_case("Jack and Jill went up the hill.") puts stub.times_string("Jack and Jill went up the hill.", 2)