Jump to content

Search the Community

Showing results for tags 'Form POST browser'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 1 result

  1. I have an arduino connected to my home network via a wifi shield. I can successfully read the HTTP headers (on the arduino) sent from my browser and send a HTTP response back to the browser from the arduino. But I cannot figure out how to intercept the form data on the arduino when using the POST method. Does the browser send a POST http header, with the data size of the following data and then immediately send the data so that I can read it all with one read loop? Does the browser send a POST http header, with the data size and then the actual data in separate packet? Do the data packets have their own headers and the data is terminated by \r\n like the headers? Or are they data packets just arrive with no headers and no \n\r asynchronously and you have to just keep trying to read until you have read the amount of data specified in the POST http header? How does all this work at this low level? When you are dealing with a full web server with PHP etc, you don't have to worry about any of this.
×
×
  • Create New...