On Tue, 2004-05-11 at 09:11, Brady Wetherington wrote: > I understand that, in the normal processing of ADP pages, that the > request contents have to be complete before the ADP starts processing. > Is that right?
This looks like a recent change? Posted data is read before any processing. Actually it reads the 'Content-length' number of bytes. This is probably for efficiency. You have to read all the data anyway, but now the POSTed data is read in so you don't have a tcl procedure slowly reading data and controlling the connection. Overall it is faster to read the data beforehand. You can create test post requests by using a little tool I wrote a long time ago: For instance, post to http://zmbh.com/show-form/show-form.tcl or add a query to that url to create the equivalent post request, also that page has instructions for testing via telnet. tom jackson -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.
