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