summaryrefslogtreecommitdiff
path: root/sample/soap/calc/httpd.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/soap/calc/httpd.rb')
-rw-r--r--sample/soap/calc/httpd.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/sample/soap/calc/httpd.rb b/sample/soap/calc/httpd.rb
deleted file mode 100644
index bebcff96c6..0000000000
--- a/sample/soap/calc/httpd.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env ruby
-
-require 'webrick'
-require 'soap/property'
-
-docroot = "."
-port = 8808
-if opt = SOAP::Property.loadproperty("samplehttpd.conf")
- docroot = opt["docroot"]
- port = Integer(opt["port"])
-end
-
-s = WEBrick::HTTPServer.new(
- :BindAddress => "0.0.0.0",
- :Port => port,
- :DocumentRoot => docroot,
- :CGIPathEnv => ENV['PATH']
-)
-trap(:INT){ s.shutdown }
-s.start