Sha256: c99331986873e229a1c4d7d801a43ea161de921264fafd601d9acb27f421a7dd

Contents?: true

Size: 352 Bytes

Versions: 15

Compression:

Stored size: 352 Bytes

Contents

# encoding: ASCII-8BIT
require 'soap/rpc/standaloneServer'

class HelloWorldServer < SOAP::RPC::StandaloneServer
  def on_init
    add_method(self, 'hello_world', 'from')
  end

  def hello_world(from)
    "Hello World, from #{ from }"
  end
end

if $0 == __FILE__
  server = HelloWorldServer.new('hws', 'urn:hws', '0.0.0.0', 17171)
  server.start
end

Version data entries

15 entries across 15 versions & 9 rubygems

Version Path
malagant-soap4r-1.5.8.20141127181857 test/soap/helloworld/hw_s.rb
rtiss_soap4r-1.6.1 test/soap/helloworld/hw_s.rb
rtiss_soap4r-1.6.0 test/soap/helloworld/hw_s.rb
eSpace_soap4r-1.5.8 test/soap/helloworld/hw_s.rb
soap4r-ruby19-1.5.9 test/soap/helloworld/hw_s.rb
tomdz-soap4r-1.5.8.20120202093209 test/soap/helloworld/hw_s.rb
soap5r-2.0.3 test/soap/helloworld/hw_s.rb
soap5r-2.0.2 test/soap/helloworld/hw_s.rb
soap5r-2.0.1 test/soap/helloworld/hw_s.rb
soap5r-2.0.0 test/soap/helloworld/hw_s.rb
soap5r-2.0.0.20120130130121 test/soap/helloworld/hw_s.rb
soap4r-sgonyea-1.5.9 test/soap/helloworld/hw_s.rb
sunteya-soap4r-1.5.8.0 test/soap/helloworld/hw_s.rb
tomdz-soap4r-1.5.8.20111103171510 test/soap/helloworld/hw_s.rb
rubyjedi-soap4r-1.5.8.20100619003610 test/soap/helloworld/hw_s.rb