summaryrefslogtreecommitdiff
path: root/sample/soap/exchange/server.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/soap/exchange/server.rb')
-rw-r--r--sample/soap/exchange/server.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/sample/soap/exchange/server.rb b/sample/soap/exchange/server.rb
deleted file mode 100644
index d510d54a76..0000000000
--- a/sample/soap/exchange/server.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env ruby
-
-require 'soap/rpc/standaloneServer'
-require 'exchange'
-
-class ExchangeServer < SOAP::RPC::StandaloneServer
- def initialize(*arg)
- super
- servant = Exchange.new
- add_servant(servant)
- end
-end
-
-if $0 == __FILE__
- status = ExchangeServer.new('SampleStructServer', ExchangeServiceNamespace, '0.0.0.0', 7000).start
-end