Credentials and POST method with IO::Socket::SSL?

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Credentials and POST method with IO::Socket::SSL?

    Hello.

    I need to send form data to a secure server, using the POST method.
    I have successfully used IO::Socket::SSL with the GET method, but
    I cannot find any examples of posting data using this module.

    Can anyone here help?

    Thanks
    -Mark


    Mark G. Guest

  2. Similar Questions and Discussions

    1. Post method
      Hi there Someone know how to capture the vars and values from the POST method, such like a Matts' FormMail, i want to do somethink like that, and...
    2. GET or POST method??
      I wonder when we should use GET method, when we should use POST method? GET method only sends limited amount of data, and it will show the data as...
    3. using post method
      Hello All, I am trying to use the post method in perl to fill a form. The form is actually for sending an instant message to a cell phone, i would...
    4. Post method doesn't work
      polloshangai@libero.it (DrPollo) wrote in news:219e7b39.0307220905.382bb188 @posting.google.com: the $_ superglobals were introduced in PHP...
    5. ASP, FORMS, POST METHOD And Post with out form(???)
      Lets see if I can decribe, this... I have a form on an html page, that will call a remote site with a post method. Prior to running off to the...
  3. #2

    Default Re: Credentials and POST method with IO::Socket::SSL?

    "Mark G." <nospam@thanksanyway.org> wrote:
    > Hello.
    >
    > I need to send form data to a secure server, using the POST method.
    > I have successfully used IO::Socket::SSL with the GET method, but
    > I cannot find any examples of posting data using this module.
    Well, I got that working. . .encrypted data is flowing.

    Unfortunately, I am getting a 400 response with "Bad Request (Invalid Header
    Name)."
    It looks like I'll be curling up with a good RFC this evening.

    -Mark


    Mark G. Guest

  4. #3

    Default Re: Credentials and POST method with IO::Socket::SSL?

    Mark G. wrote:
    > I need to send form data to a secure server, using the POST method.
    > I have successfully used IO::Socket::SSL with the GET method, but
    > I cannot find any examples of posting data using this module.
    IIRC, although IO::Socket::SSL contains a rudimentary HTTPS client
    implementation it's more common practice, better documented, more
    complete and more reliable to use the HTTPS implementation in LWP
    instead.

    Note: This this still uses IO::Socket::SSL to do the SSL but uses the
    HTTP implementation from LWP.

    Brian McCauley Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139