Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6094341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:39:59+00:00 2026-05-23T12:39:59+00:00

How can I send a request like this in Perl on Windows? GET /index.html

  • 0

How can I send a request like this in Perl on Windows?

GET /index.html HTTP/1.1
Host: www.example.org
Cookie: test=quest
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T12:39:59+00:00Added an answer on May 23, 2026 at 12:39 pm

    You can do this using sockets:

    use IO::Socket;
    my $sock = new IO::Socket::INET (
                                     PeerAddr => 'www.example.org',
                                     PeerPort => '80',
                                     Proto => 'tcp',
                                    );
    die "Could not create socket: $!\n" unless $sock;
    print $sock "GET /index.html HTTP/1.0\r\n";
    print $sock "Host: www.example.org\r\n";
    print $sock "Cookie: test=quest\r\n\r\n";
    print while <$sock>;
    close($sock);
    

    but you might want to consider using LWP (libwww-perl) instead:

    use LWP::UserAgent;
    $ua = LWP::UserAgent->new;
    
    $req = HTTP::Request->new(GET => 'http://www.example.org/index.html');
    $req->header('Cookie' => 'test=quest');
    
    # send request
    $res = $ua->request($req);
    
    # check the outcome
    if ($res->is_success) { print $res->decoded_content }
    else { print "Error: " . $res->status_line . "\n" }
    

    You might try reading the LWP cookbook for an introduction to LWP.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to send a soap-request that looks like this: <v:Envelope xmlns:i=http://www.w3.org/2001/XMLSchema-instance xmlns:v=http://schemas.xmlsoap.org/soap/envelope/> <v:Header/>
If I send this request to a page: http://www.server.com/show.xml?color=red&number=two Can I do something like
Why when I call a function like this : function(request, **form.cleaned_data) I can send
Rails 3 question. If i send a request like this PUT http://myapp/posts/123?post [title]=hello then
I want to create an application send an request like http://www.mysiteabc.com/api.php?email=emailtologin@gmail.com&password=123321 and read data
I tried to send an array as part of an ajax request like this:
In HTML, you can send data from one page to another using a GET
If webserver can send gzip response, why can't browser sent gzip request?
From http://developer.yahoo.com/yui/docs/YAHOO.util.DataSourceBase.html#method_sendRequest , you can see the oCallback is an object literal with the
I can send any windows application key strokes with PostMessage api. But I can't

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.