Sha256: 409edc99f796aa618109f263cb84f95420bd22054d6edbe72c95c0d9e3ca40ca

Contents?: true

Size: 364 Bytes

Versions: 15

Compression:

Stored size: 364 Bytes

Contents

#!/usr/bin/env ruby
# encoding: ASCII-8BIT

require 'soap/rpc/standaloneServer'
require 'calc'

class CalcServer < SOAP::RPC::StandaloneServer
  def initialize(*arg)
    super

    servant = CalcService
    add_servant(servant, 'http://tempuri.org/calcService')
  end
end

if $0 == __FILE__
  status = CalcServer.new('CalcServer', nil, '0.0.0.0', 17171).start
end

Version data entries

15 entries across 15 versions & 9 rubygems

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