public
Fork of jeremydurham/serviceproxy
Description: Lightweight SOAP library for Ruby
Homepage:
Clone URL: git://github.com/spicycode/serviceproxy.git
name age message
file LICENSE Wed Dec 10 23:58:28 -0800 2008 Initial Import. MIT License. Automatic namespac... [jeremydurham]
file README Tue Jan 27 20:42:24 -0800 2009 Revamped the README [jeremydurham]
file Rakefile Mon Jan 26 20:30:31 -0800 2009 Updated README Removed thor dependency Added ws... [jeremydurham]
directory bin/ Wed Jan 28 07:25:10 -0800 2009 Prepared proxy class name to be configurable in... [jeremydurham]
directory lib/ Loading commit data...
file serviceproxy.gemspec
directory spec/
README
ServiceProxy

ServiceProxy is a lightweight SOAP library for Ruby. 

HOW IT WORKS

Loading the library:

require 'rubygems'
require 'service_proxy/base'

GENERATING A PROXY

ServiceProxy comes with a simple generator to get started. It can be invoked
as follows:

wsdl2proxy [wsdl]

This will generate a file named default.rb, in the current directory. The class
will be named GeneratedService, and will define build and parse methods for all
of the available service methods.

Please refer to the specs for extended usage examples.

CONTRIBUTORS

Rich Cavanaugh