Help for this page

Select Code to Download


  1. or download this
    my $soap = SOAP::Lite->uri(
                      'Menu/SOAP')->proxy('<url>/a.cgi',
                      timeout => $timeout) ;
            my $response;
                $response = $soap->find_services($obj, $instance);
    
  2. or download this
    use SOAP::Transport::HTTP;
    use Menu::SOAP;
    ...
    SOAP::Transport::HTTP::CGI
        -> dispatch_to('Menu::SOAP')
        -> handle;
    
  3. or download this
    sub find_services {
    }