summaryrefslogtreecommitdiff
path: root/sample/soap/exchange/httpd.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/soap/exchange/httpd.rb')
-rw-r--r--sample/soap/exchange/httpd.rb13
1 files changed, 9 insertions, 4 deletions
diff --git a/sample/soap/exchange/httpd.rb b/sample/soap/exchange/httpd.rb
index ee8ab09f50..bebcff96c6 100644
--- a/sample/soap/exchange/httpd.rb
+++ b/sample/soap/exchange/httpd.rb
@@ -1,14 +1,19 @@
#!/usr/bin/env ruby
require 'webrick'
-require 'getopts'
+require 'soap/property'
-getopts "", 'r:', 'p:8808'
+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 => $OPT_p.to_i,
- :DocumentRoot => $OPT_r || ".",
+ :Port => port,
+ :DocumentRoot => docroot,
:CGIPathEnv => ENV['PATH']
)
trap(:INT){ s.shutdown }