Help for this page

Select Code to Download


  1. 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);
    
  2. 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);
    
  3. or download this
    $VAR1 = bless( {
                     '_type' => 'xml',
    ...
                                 ],
                     '_attr' => {}
                   }, 'SOAP::Data' );