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