Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[ANN] soap4r-1.5.6

6 views
Skip to first unread message

NAKAMURA, Hiroshi

unread,
Jun 14, 2007, 9:08:16 AM6/14/07
to
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi all,

'SOAP4R' is an implementation of SOAP 1.1 (W3C Note).
http://www.w3.org/TR/SOAP/

RAA: http://raa.ruby-lang.org/project/soap4r
Release Note: http://dev.ctor.org/doc/soap4r/RELEASE_en.html

soap4r/1.5.6 is out. It is 1 and 3/4 years from 1.5.5. Sorry for the
late release. It contains many feature improvements and bug fixes.

changes:
http://dev.ctor.org/doc/soap4r/RELEASE_en.html#changes

download:
http://dev.ctor.org/download/soap4r-1.5.6.tar.gz
http://dev.ctor.org/download/soap4r-1.5.6.zip

sha1sum:
f8513624a008c9bf97883cd7eace5cef94a78c39 soap4r-1.5.6.tar.gz
33f383ddf89d9708f12fb7fd7aded59d3c649805 soap4r-1.5.6.zip

Thanks to all of soap4r users for their support.

Regards,
// NaHi

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.1 (Cygwin)

iQEVAwUBRnE9pR9L2jg5EEGlAQKaOgf/SWzXCC9XkYjcZfeHjEKbd+QXqYIorJ6V
NmdAsFoHUZD9xyCQej6TzrPKZKApX2tqgcRKS/PB+QNG08xCAYuzdfSeEpOTvkP8
7qYI3n9VPq5JZAtfJhLoD92Jm6pnwyYa/oD37GNp5IqzLtBCSqO+Fr6xOADufE2p
Wu1bWixKLVE7qaoIFDQma1pxMCKhfb8PsEfpZryNuhhA9YoESpFoi0yF3GKDBsAb
XRZ8wdT21HVEQuiFXUBVJa7cxjgGvJo5WlHmK6avmsdNknNnUM/jsWfX6xpMeMfU
nMj0uTjYIUpZc9S04sL7V29lGa3WLcoady/m/BqluywtQRaIYtyURQ==
=1E5z
-----END PGP SIGNATURE-----

NAKAMURA, Hiroshi

unread,
Jul 16, 2007, 10:45:36 AM7/16/07
to
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi all,

'SOAP4R' is an implementation of SOAP 1.1 (W3C Note).
http://www.w3.org/TR/SOAP/

soap4r/1.5.7 is out. Version 1.5.7 mainly intends to fix regression
problems introduced in 1.5.6.

changes:
http://dev.ctor.org/soap4r/wiki/Changes-157

download:
http://dev.ctor.org/download/soap4r-1.5.7.tar.gz
http://dev.ctor.org/download/soap4r-1.5.7.zip

sha1sum:
5703f8deb73b0d65e58fc7d10874eba4ceb21267 soap4r-1.5.7.tar.gz
4bac851bde32f9425790e89c65c901f51034cbb6 soap4r-1.5.7.zip

gem:
Followings should work. Note that the soap4r gem depends on
httpclient gem from this version.
% gem install soap4r --source http://dev.ctor.org/download/
% gem update soap4r --source http://dev.ctor.org/download/

Thanks to all of soap4r users for their support.

Regards,
// NaHi

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.1 (Cygwin)

iQEVAwUBRpuDSB9L2jg5EEGlAQLCvwgAg9itmnUStf9ycweCEuWqLoNAe+rNQvse
n9Sc5EsS9RRsGQNwvlrlvsvW1BdCL5kyz8uMNZXPWxAVbeTfRnLoozb0pzSR1Uw5
CqwNNPhiNOBudfqOzB7oeyVfLc48pjBfSnGHxim1smGkTcAtT7VE/fyKmp+yGdtS
QrwkaQFG6t4+WoMz2JBkO5euPpKE5WFY4rrmD5r9kk699tgS+DScABHy5O1dJO+3
1RLwvcJEA0jqGZcslRZOWQOIOW/Pn/9CjOzBlTrPtof4TyNlqPld3tpjYWbDGmqr
bk1dV8+3D+VE2eakh1B95GSmgjCgXEYXtWfcmLgdXcOsndTCBBoaFg==
=Cnb7
-----END PGP SIGNATURE-----

NAKAMURA, Hiroshi

unread,
Sep 24, 2007, 10:46:08 AM9/24/07
to
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi all,

'SOAP4R' is an implementation of SOAP 1.1 (W3C Note).

soap4r/1.5.8 is out. Version 1.5.8 has improved its XML Schema support,
such as class generation of XML Schema anonymous complexType, full
built-in datatypes support of XML Schema Datatypes, and more.

XML Schema feature of soap4r helps to build Ruby mapping of XML Web
services easier when the service has XML Schema definition.

ex1) Yahoo Local Search client

# You need to run xsd2ruby.rb to get the mapper first;
# xsd2ruby.rb --xsd
http://local.yahooapis.com/LocalSearchService/V2/LocalSearchResponse.xsd
- --classdef --mapping_registry --mapper --force
require 'lcl_mapper'
require 'httpclient'

req = {
:appid => "YahooDemo",
:query => "pizza",
:zip => 94306,
:results => 5
}

# use REST API
endpoint = "http://local.yahooapis.com/LocalSearchService/V2/localSearch"
resultxml = HTTPClient.get_content(endpoint, req)

# map the response to Ruby object
lcl_mapper = LclMapper.new
lcl_mapper.xml2obj(resultxml).result.each do |result|
p [result.title, result.phone]
end

ex2) RSS Version 2.0

# You need to run xsd2ruby.rb first;
# xsd2ruby.rb --xsd "http://www.thearchitect.co.uk/schemas/rss-2_0.xsd" \
# --classdef rss2 --mapping_registry --mapper --force
require 'rss2_mapper'
require 'httpclient'
require 'cgi'

# retrieve RSS with httpclient
rssxml =
HTTPClient.get_content("http://www.ruby-lang.org/en/feeds/news.rss")

# parse RSS according to the XML Schema for RSS 2.0
rss_mapper = Rss2Mapper.new
rss = rss_mapper.xml2obj(rssxml)
# update items; this example updates links to point to a local redirector.
rss.channel.item.each do |item|
item.link.map! { |link|
URI.parse("http://localhost/redirector?url=" + CGI.escape(link.to_s))
}
end

# get updated RSS
puts rss_mapper.obj2xml(rss)

/ / /

changes:
http://dev.ctor.org/soap4r/wiki/Changes-158

download:
http://dev.ctor.org/download/soap4r-1.5.8.tar.gz
http://dev.ctor.org/download/soap4r-1.5.8.zip

sha1sum:
de22a95773df0c24e0b1138d11dc67164d07a608 soap4r-1.5.8.tar.gz
213d3bcd5952a524f60845f1885e4f0485687e76 soap4r-1.5.8.zip

gem:


% gem install soap4r --source http://dev.ctor.org/download/
% gem update soap4r --source http://dev.ctor.org/download/

Thanks to all of soap4r-ml members and soap4r users for their support.

Regards,
// NaHi

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Cygwin)

iQEVAwUBRvfNcx9L2jg5EEGlAQI/IQf/bepRU3T3L+lSxbk0clZGPgYR5hfqVHro
5Fg6/1SFv9G8R62zn4JOuckQIwuubRjxBw4IzSZwGcV9goHDKHUS47FUuEdlDbyZ
ioNqgikx/9DOdbWxEoVjYzyKwN87Yr4ehZynInAWNezCczMHfxVX8/B4t64242fA
tiEGEIIkkxM844zU8wnRGuMlN7zg4atGffkhyvOZR4VwtE2LewP3iSQygBS82INs
AdkbofJohy2Ucy9sRVtWiczU1pG9Wm3vRzReeTUFsFZijTJYFAMOv636ItuWb5Ot
KukQgLyKuQOuvCQjb/9zhQsF9YpU0FLsiINpLsz34M/hLQsIVrnIcA==
=n+/q
-----END PGP SIGNATURE-----

Yasir Shabbir

unread,
Mar 2, 2010, 5:37:25 AM3/2/10
to
How Can i install soap4r 1.5.6 even soap4r 1.5.8 has been released.
please reply soon.

thanks
Yasir
--
Posted via http://www.ruby-forum.com/.

Brian Candler

unread,
Mar 2, 2010, 6:19:16 AM3/2/10
to
Yasir Shabbir wrote:
> How Can i install soap4r 1.5.6 even soap4r 1.5.8 has been released.

sudo gem install soap4r

Rob Biedenharn

unread,
Mar 2, 2010, 8:22:52 AM3/2/10
to


sudo gem install soap4r -v=1.5.6

If you want to install a particular version.

-Rob

Rob Biedenharn http://agileconsultingllc.com
R...@AgileConsultingLLC.com


Yasir Shabbir

unread,
Mar 2, 2010, 9:01:34 AM3/2/10
to
Thanks Guys.
0 new messages