> It signals the end of a given GET or POST with a special 
> sequence of characters, for which you need scan in your code.

AFAIK, no - you get the Content-length header that tells you how much
to read as the body of the request.  The open socket is waiting for
the HTTP response, which after reading content-length bytes (could be
0), you should (acting as the http server) provide.

As an aside, HttpClient from Jakarta Commons is great when you want to
act like a web browser, but it doesn't take care of acting like a web
server.  Is there something (ideally in a commons-ish area, not tied
to a particular full implementation) out there like that?
-- 
James Manning <http://www.sublogic.com/james/>
GPG Key fingerprint = B913 2FBD 14A9 CE18 B2B7  9C8E A0BF B026 EEBB F6E4

_______________________________________________
Juglist mailing list
[EMAIL PROTECTED]
http://trijug.org/mailman/listinfo/juglist_trijug.org

Reply via email to