- or download this
use SOAP::Lite +trace => 'debug';
my $wsurl = 'http://xxxxxxxx.com/SVC/services/Service?wsdl';
my $svc = SOAP::Lite-> service($wsurl);
$svc-> InsertData(@temparray);
- or download this
use SOAP::Lite +trace => 'debug';
my $wsurl = 'http://xxxxxxxx.com/SVC/services/Service?wsdl';
my $svc = SOAP::Lite-> service($wsurl);
my @xmldata = SOAP::Data->type('xml' => @temparray);
$svc-> InsertData(@xmldata);
- or download this
$VAR1 = bless( {
'_type' => 'xml',
...
],
'_attr' => {}
}, 'SOAP::Data' );