Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for my $node ( $xpc->findnodes('//p:request/*/p:action') ) {
        print $node->textContent(), "\n";
    }
    
  2. or download this
    START
    STOP
    GET_INFO
    
  3. or download this
    use strict;
    use warnings;
    ...
            print $action_node->textContent(), "\n";
        }
    }