Sha256: 23bd762746861f97579ebad1dd7c7a2e4d42ab9118db4f31139cd9548b07c1ee
Contents?: true
Size: 398 Bytes
Versions: 15
Compression:
Stored size: 398 Bytes
Contents
# encoding: ASCII-8BIT $:.unshift File.expand_path(File.dirname(__FILE__)+'/../../../lib') $:.unshift '.' if RUBY_VERSION.to_f >= 1.9 require 'soap/rpc/cgistub' class CalcServer < SOAP::RPC::CGIStub def initialize(*arg) super require 'calc' servant = CalcService add_servant(servant, 'http://tempuri.org/calcService') end end status = CalcServer.new('CalcServer', nil).start
Version data entries
15 entries across 15 versions & 9 rubygems