summaryrefslogtreecommitdiff
path: root/sample/soap/exchange/server.rb
blob: d510d54a763bf60132a541af582bc3ac9a3bfe5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env ruby

require 'soap/rpc/standaloneServer'
require 'exchange'

class ExchangeServer < SOAP::RPC::StandaloneServer
  def initialize(*arg)
    super
    servant = Exchange.new
    add_servant(servant)
  end
end

if $0 == __FILE__
  status = ExchangeServer.new('SampleStructServer', ExchangeServiceNamespace, '0.0.0.0', 7000).start
end