Project

soap-lc

0.0
No commit activity in last 3 years
No release in over 3 years
SOAP Lite Client provides support for developing clients interfaces from WSDL files.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

SOAP Lite Client¶ ↑

Copyright © 2007-2010 Grégoire Lejeune

DESCRIPTION: ¶ ↑

SOAP Lite Client provides support for developing clients interfaces from WSDL files.

FEATURES/PROBLEMS:¶ ↑

0.0.3:¶ ↑

  • Use jeweler

0.0.2:¶ ↑

  • Extract Core extensions

  • Format response

  • Add binding support

0.0.1: ¶ ↑

  • Initial release. So…

TODO:¶ ↑

SYNOPSIS:¶ ↑

require 'soap/lc'

wsdl = "http://localhost:3000/simple/wsdl"
s = SOAP::LC.new( ).wsdl( wsdl ).call( "HelloWorld", { :from => "Greg" } )
r = s.result
puts r.to_h

# Or

r = SOAP::LC["http://localhost:3000/wsdl"].HelloWorld( :from => "greg" ).result

REQUIREMENTS:¶ ↑

  • ActiveSupport (but maybe not for a long time !)

INSTALL:¶ ↑

sudo gem install soap-lc

or

sudo gem install soap-lc --source=http://dev.rubyfr.net

LICENSE:¶ ↑

SOAP Lite Client is freely distributable according to the terms of the GNU General Public License.

This program is distributed without any warranty. See the file ‘COPYING’ for details.