summaryrefslogtreecommitdiff
path: root/sample/soap/ssl/sslclient.rb
blob: a055247a4c6d7bfec5c7171a13193f7b8565317c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'http-access2'
require 'soap/rpc/driver'

# setup driver
url = "https://localhost:17443/"
client = SOAP::RPC::Driver.new(url, 'urn:sslhelloworld')
client.add_method("hello_world", "from")
# load SSL properties
client.loadproperty('files/sslclient.properties')

# SOAP over SSL
p client.hello_world(__FILE__)