Sophie

Sophie

distrib > Mandriva > 2006.0 > x86_64 > by-pkgid > 4fb2bf23211d5f27ae943c283575a23a > files > 255

ruby-doc-1.8.2-7.5.20060mdk.x86_64.rpm

#!/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__
  server = SampleStructServer.new('SampleStructServer', SampleStructServiceNamespace, '0.0.0.0', 7000)
  trap(:INT) do
    server.shutdown
  end
  server.start
end