Help for this page

Select Code to Download


  1. or download this
    # -----------------------------------------------------
    sub _setAgent
    ...
        $XAgent->agent($ENV{'HTTP_USER_AGENT'});
        $XAgent->cookie_jar({}); # allow cookies
    };
    
  2. or download this
    # -----------------------------------------------------
    sub _getUrl
    {
        return $XAgent->get(shift)->decoded_content();
    };
    
  3. or download this
    # -----------------------------------------------------
    my $xml = _getUrl($url);
    my $p = XML::Parser->new(Style => 'Stream', Pkg => 'some_pkg',
        ProtocolEncoding => "utf-8");
    $p->parse($xml);