Help for this page

Select Code to Download


  1. or download this
    my $req = HTTP::Request->new(
      'POST', 
      'https://asite.com:443/sub/create_user.cgi',
    ...
      ),
      '<userCreate>John.Doe</userCreate>',
    );
    
  2. or download this
    my $req = POST
      'https://asite.com:443/sub/create_user.cgi',
      Content => '<userCreate>John.Doe</userCreate>',
    );