summaryrefslogtreecommitdiff
path: root/ruby_1_8_5/test/soap/calc/server.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_5/test/soap/calc/server.rb')
-rw-r--r--ruby_1_8_5/test/soap/calc/server.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/ruby_1_8_5/test/soap/calc/server.rb b/ruby_1_8_5/test/soap/calc/server.rb
deleted file mode 100644
index a93774d909..0000000000
--- a/ruby_1_8_5/test/soap/calc/server.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env ruby
-
-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