Sha256: acd8558a63de219aad8fdbeb33e00a14c53699288160becbcf4da4554246ccd9
Contents?: true
Size: 512 Bytes
Versions: 12
Compression:
Stored size: 512 Bytes
Contents
# RAA SOAP interface client sample; Perl version. # 2001-03-28T21:00 Kawai,Takanori [GCD00051@nifty.ne.jp] # # You need to download and install SOAP::Lite for Perl: http://www.geocities.com/paulclinger/soap.html use strict; use Data::Dumper; use SOAP::Lite uri => 'http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.1', proxy => 'http://raa.ruby-lang.org/soap/1.0/', ; my $oSom = SOAP::Lite->new->getAllListings(); my $raRes = $oSom->result; $raRes = $oSom->fault unless($raRes); print Dumper($raRes);
Version data entries
12 entries across 12 versions & 3 rubygems