How to pull feeds with Perl SOAP::Lite
- by Jacky
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!