summaryrefslogtreecommitdiff
path: root/sample/wsdl/googleSearch/httpd.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/wsdl/googleSearch/httpd.rb')
-rw-r--r--sample/wsdl/googleSearch/httpd.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/sample/wsdl/googleSearch/httpd.rb b/sample/wsdl/googleSearch/httpd.rb
deleted file mode 100644
index ee8ab09f50..0000000000
--- a/sample/wsdl/googleSearch/httpd.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env ruby
-
-require 'webrick'
-require 'getopts'
-
-getopts "", 'r:', 'p:8808'
-
-s = WEBrick::HTTPServer.new(
- :BindAddress => "0.0.0.0",
- :Port => $OPT_p.to_i,
- :DocumentRoot => $OPT_r || ".",
- :CGIPathEnv => ENV['PATH']
-)
-trap(:INT){ s.shutdown }
-s.start