Help for this page

Select Code to Download


  1. or download this
    LoadModule perl_module modules/mod_perl.so
    
    ...
        PerlSetVar dispatch_to "/var/www/html/soap"
        PerlSetVar options "compress_threshold => 10000"
    </Location>
    
  2. or download this
    use ModPerl::Util (); #for CORE::GLOBAL::exit
    use Apache2::Request;
    ...
    use File::Basename;
    
    1;
    
  3. or download this
    package Demo2;
    
    ...
    }
    
    1;
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    
    my $obj = $proxy->hi();
    print $obj->result . "\n";