Making SOAP call using Perl's SOAP::Lite and a WSDL file
问题 I want to make a SOAP call to a local web service. The web service is defined via a WSDL file (see below). I want to use Perl and SOAP::Lite. I tried this: use strict ; use warnings ; use SOAP::Lite ; my $endpoint = qq{http://example.com:2222/orawsv/PS_API/ACCOUNT_WS} ; my $tns = 'http://xmlns.oracle.com/orawsv/PS_API/ACCOUNT_WS' ; my $method_urn = $tns ; my $soapaction = $tns ; my $method = 'GET_BY_ACCOUNT_NUMBER' ; my $sObj = SOAP::Lite->new(uri => $soapaction, proxy => $endpoint) ; my