besides the laughably granular chunking that the Tomcat HTTP/1.1 implementation in 4.1.x, the content appears correct. The only major difference is that the token has the format of
It occurs to me (and has done before, but I forgot to do anything about it) that this chunking is a source of some quite considerable overhead, and that we should do something about it.
Tomcat is creating a chunk for every write to the servlet output stream (I assume). Perhaps we should wrap the output in a BufferedOutputStream (with a reasonably small buffer)? This should significantly improve slide's performance on tomcat, and should be fairly performance-neutral on any other servlet container that has more sensible chunking behaviour.
Mike
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
