summaryrefslogtreecommitdiff
path: root/sample/soap/helloworld/hw_c_gzip.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/soap/helloworld/hw_c_gzip.rb')
-rw-r--r--sample/soap/helloworld/hw_c_gzip.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/sample/soap/helloworld/hw_c_gzip.rb b/sample/soap/helloworld/hw_c_gzip.rb
new file mode 100644
index 0000000000..3335b5f571
--- /dev/null
+++ b/sample/soap/helloworld/hw_c_gzip.rb
@@ -0,0 +1,8 @@
+require 'soap/rpc/driver'
+
+s = SOAP::RPC::Driver.new('http://localhost:2000/', 'urn:hws')
+s.add_method("hello_world", "from")
+#s.wiredump_dev = STDOUT # care about binary output.
+s.streamhandler.accept_encoding_gzip = true
+
+p s.hello_world(self.to_s)