mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e5a3aba50e
* lib/soap/mapping/wsdl*.rb * lib/wsdl/soap/element.rb * lib/wsdl/xmlSchema/simpleContent.rb * modified files: * lib/soap/* * lib/wsdl/* * lib/xsd/* * test/soap/* * test/wsdl/* * test/xsd/* * summary * imported from the soap4r repository. Version: 1.5.3-ruby1.8.2 * added several XSD basetype support: nonPositiveInteger, negativeInteger, nonNegativeInteger, unsignedLong, unsignedInt, unsignedShort, unsignedByte, positiveInteger * HTTP client connection/send/receive timeout support. * HTTP client/server gzipped content encoding support. * improved WSDL schema definition support; still is far from complete, but is making step by step improovement. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
64 lines
1.3 KiB
Ruby
64 lines
1.3 KiB
Ruby
require 'webrick/https'
|
|
require 'logger'
|
|
require 'rbconfig'
|
|
|
|
require 'soap/rpc/httpserver'
|
|
|
|
class HelloWorldServer < SOAP::RPC::HTTPServer
|
|
private
|
|
|
|
def on_init
|
|
self.level = Logger::Severity::FATAL
|
|
@default_namespace = 'urn:ssltst'
|
|
add_method(self, 'hello_world', 'from')
|
|
end
|
|
|
|
def hello_world(from)
|
|
"Hello World, from #{ from }"
|
|
end
|
|
end
|
|
|
|
|
|
if $0 == __FILE__
|
|
PORT = 17171
|
|
DIR = File.dirname(File.expand_path(__FILE__))
|
|
|
|
def cert(filename)
|
|
OpenSSL::X509::Certificate.new(File.open(File.join(DIR, filename)) { |f|
|
|
f.read
|
|
})
|
|
end
|
|
|
|
def key(filename)
|
|
OpenSSL::PKey::RSA.new(File.open(File.join(DIR, filename)) { |f|
|
|
f.read
|
|
})
|
|
end
|
|
|
|
$server = HelloWorldServer.new(
|
|
:BindAddress => "0.0.0.0",
|
|
:Port => PORT,
|
|
:AccessLog => [],
|
|
:SSLEnable => true,
|
|
:SSLCACertificateFile => File.join(DIR, 'ca.cert'),
|
|
:SSLCertificate => cert('server.cert'),
|
|
:SSLPrivateKey => key('server.key'),
|
|
:SSLVerifyClient => nil, #OpenSSL::SSL::VERIFY_FAIL_IF_NO_PEER_CERT|OpenSSL::SSL::VERIFY_PEER,
|
|
:SSLClientCA => cert('ca.cert'),
|
|
:SSLCertName => nil
|
|
)
|
|
t = Thread.new {
|
|
Thread.current.abort_on_exception = true
|
|
$server.start
|
|
}
|
|
while $server.status != :Running
|
|
sleep 0.1
|
|
unless t.alive?
|
|
t.join
|
|
raise
|
|
end
|
|
end
|
|
STDOUT.sync = true
|
|
puts $$
|
|
t.join
|
|
end
|