Help for this page

Select Code to Download


  1. or download this
    BEGIN { 
        require Some::Module;
        Some::Module->import( LIST );
    }
    
  2. or download this
    require SOAP::Lite;
    SOAP::Lite->import( 
    ...
                    'proxy' =>       http://soap.soapserver.com', # there 
    +is a typo on this line, in the original post
                    on_fault  => \&handle_error;
    )
    
  3. or download this
    require SOAP::Lite;
    SOAP::Lite->import( 
                    '+autodispatch' =>
                    'proxy' =>       http://soap.soapserver.com', # there 
    +is a typo on this line, in the original post
                    'on_fault'  => \&handle_error;