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