My html looks like this:
Code: Select all
<body>
<form action="configform.html" method=post>
<fieldset>
<legend>Board setup file:</legend>
<h2>Config file:</h2>
<textarea id="text" maxlength="2500" name="configtext" rows="15" cols="80"><!--VARIABLE ConfigText --></textarea>
<br />
<input type="submit" name="load" value="Load from SD">
<input type="submit" name="check" value="Check syntax">
<input type="submit" name="save" value="Save to SD">
<br />
<h2>Errors:</h2>
<textarea readonly id="text" name="configerr" rows="15" cols="80"><!--VARIABLE ConfigErr --></textarea>
<h2><!--FUNCTIONCALL ShowSDCardStatus --></h2>
</fieldset>
</form>
<br />
<a href="index.html">Return to Main Page</a>
</body>
Code: Select all
void configFormPostCallBack(int sock, PostEvents event, const char * pName, const char * pValue)
{
// Received a call back with an event, check for event type
switch (event)
{
case eStartingPost: // Called at the beginning of the post before any data is sent
iprintf("configFormPostCallBack:eStartingPost: pName=[%s]\n", pName);
break;
case eVariable: // Called once for each variable in the form
iprintf("configFormPostCallBack:eVariable: pName=[%s]\n", pName);
if (strcmp("configtext", pName) == 0) {
iprintf("strlen(pValue)=%d\n", strlen(pValue));
strcpy(ConfigText, pValue);
iprintf("ConfigText: (%d bytes):\n%s\n", strlen(ConfigText), ConfigText);
dump_buff(pValue);
}
.
.
.
}
// Create a global static post handling object that responds to the specified html page.
// A separate post handler can be created for each form in your application.
HtmlPostVariableListCallback postForm1("configform*", configFormPostCallBack);
HTTP_RX_BUFFERSIZE in constants.h is 10000.
I get the same results from Chrome and Edge. Adding the maxlength="2500" to the textarea doesn't make a difference.
Is there some way to receive larger text blocks?
Thanks