mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
17 lines
374 B
Ruby
17 lines
374 B
Ruby
|
#!/usr/bin/env ruby
|
||
|
|
||
|
require 'soap/rpc/standaloneServer'
|
||
|
require 'sampleStruct'
|
||
|
|
||
|
class SampleStructServer < SOAP::RPC::StandaloneServer
|
||
|
def initialize(*arg)
|
||
|
super
|
||
|
servant = SampleStructService.new
|
||
|
add_servant(servant)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
if $0 == __FILE__
|
||
|
status = SampleStructServer.new('SampleStructServer', SampleStructServiceNamespace, '0.0.0.0', 7000).start
|
||
|
end
|