Help for this page

Select Code to Download


  1. or download this
    my $soap_wdsl = 'example.wsdl'; # retrieved previously
    my $client = XML::Compile::WSDL11->new( $soap_wdsl );
    ...
        </tns:setTransaction>
    </SOAP-ENV:Body>
    
  2. or download this
    my $soap_wdsl = 'https://example.com/service/API?wsdl';
    my $client = SOAP::Lite->new;
    ...
            <PARAMS HERE>
        </setTransaction>
    </SOAP-ENV:Body>
    
  3. or download this
    $client->ns('http://soap.example.com/');
    
    ...
            <PARAMS HERE>
        </namesp1:setTransaction>
    </SOAP-ENV:Body>
    
  4. or download this
    $soap_wdsl = 'https://example.com/service/API?wsdl';
    $client = new SoapClient( $soap_wdsl ); 
    ...
        </ns1:setTransaction>
    </SOAP-ENV:Body>