Hi, I'm new to SOAP and XML. I am trying to retrieve tax info. from a server for a perl shopping cart I have. I have the wsdl file and have tried the code from http://www.perl.com/pub/a/2001/04/24/soap.html but can't seem to get it working.
What I get back is: JurisdictionLookupService=HASH(0x932532c)
over and over with different hash keys.
Am I missing something? Any help is appreciated.
My code:
use SOAP::Lite;
my $service = SOAP::Lite
-> service('http://www.myserver.com/myfile.wsdl');
$service->GetFIPSBy5ZipOnly($xzip,'04/11/05');
print $service;
Bookmarks