summaryrefslogtreecommitdiff
path: root/sample/soap/ssl/sslclient_with_clientauth.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/soap/ssl/sslclient_with_clientauth.rb')
-rw-r--r--sample/soap/ssl/sslclient_with_clientauth.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/sample/soap/ssl/sslclient_with_clientauth.rb b/sample/soap/ssl/sslclient_with_clientauth.rb
deleted file mode 100644
index 7753d7b807..0000000000
--- a/sample/soap/ssl/sslclient_with_clientauth.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-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_with_clientauth.properties')
-
-# SOAP over SSL
-p client.hello_world(__FILE__)