Help for this page

Select Code to Download


  1. or download this
    if ( defined $debug ) {
        print "use SOAP::Lite +trace => 'debug'\n";
    ...
    else {
        print "use SOAP::Lite\n";
    }
    
  2. or download this
    use SOAP::Lite
    
  3. or download this
    if ( defined $debug ) {
        SOAP::Lite->import(trace => 'debug') if require SOAP::Lite;
    ...
    else {
        SOAP::Lite->import() if require SOAP::Lite;
    }