2003-09-24 11:18:44 -04:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
|
|
|
require 'soap/rpc/standaloneServer'
|
|
|
|
require 'calc2'
|
|
|
|
|
|
|
|
class CalcServer2 < SOAP::RPC::StandaloneServer
|
|
|
|
def on_init
|
|
|
|
servant = CalcService2.new
|
|
|
|
add_method(servant, 'set', 'newValue')
|
|
|
|
add_method(servant, 'get')
|
|
|
|
add_method_as(servant, '+', 'add', 'lhs')
|
|
|
|
add_method_as(servant, '-', 'sub', 'lhs')
|
|
|
|
add_method_as(servant, '*', 'multi', 'lhs')
|
|
|
|
add_method_as(servant, '/', 'div', 'lhs')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if $0 == __FILE__
|
2003-10-18 11:21:18 -04:00
|
|
|
status = CalcServer2.new('CalcServer', 'http://tempuri.org/calcService', '0.0.0.0', 17171).start
|
2003-09-24 11:18:44 -04:00
|
|
|
end
|