How to pull feeds with Perl SOAP::Lite
Posted
by Jacky
on Stack Overflow
See other posts from Stack Overflow
or by Jacky
Published on 2010-05-17T19:26:24Z
Indexed on
2010/05/17
19:31 UTC
Read the original article
Hit count: 247
Hi guys, I need to know how to pull feeds using SOAP::Lite.
I have something like this now...
my $service = SOAP::Lite -> uri("https://securews.mcvalue.com/rlws/rlws.asmx") -> on_action( sub { join '/', 'http://tempuri.org', 'AllActiveRestaurantHours' }) -> proxy("https://securews.mcvalue.com/rlws/rlws.asmx");
my $result = $service->result();
print "\nRESULT===>$result\n";
Any help will be greatly appreciated.
Thanks!
© Stack Overflow or respective owner