require 'soap/rpc/driver' s = SOAP::RPC::Driver.new('https://localhost:2000/', 'http://www.kurume-it.ac.jp/soap/') s.add_method("hello_world", "from") s.add_method("merge", "one", "two", "three") s.wiredump_file_base = "hoge" p s.hello_world(self.to_s) p s.merge(1, 2, 3) p s.merge(100, 200, 300)