You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Sebastiaan van Erk <se...@sebster.com> on 2007/06/01 16:04:32 UTC

comet question (tomcat 6.0.13)

Hi all,

I have made the attached simple comet servlet which simply echos back 
what you POST to it and then closes the connection. It works fine for 
small files, but when I try to post an ISO image of 625MB, it pretty 
soon just stops and hangs without getting any new read events.

The way I post the ISO image is using wget:

wget --post-file=big.iso http://localhost:8080/echotest

The program and debug log are attached. Am I doing something obviously 
wrong in my small program?

Regards,
Sebastiaan

Re: comet question (tomcat 6.0.13)

Posted by Sebastiaan van Erk <se...@sebster.com>.
Hi,

I figured out the problem.

wget does not start reading the response until all the post data is 
written. However this does not happen because the write in the copy 
method blocks (since the output buffer fills up), causing the event() 
method to block in the READ event.

Regards,
Sebastiaan

Sebastiaan van Erk wrote:
> Hi all,
>
> I have made the attached simple comet servlet which simply echos back 
> what you POST to it and then closes the connection. It works fine for 
> small files, but when I try to post an ISO image of 625MB, it pretty 
> soon just stops and hangs without getting any new read events.
>
> The way I post the ISO image is using wget:
>
> wget --post-file=big.iso http://localhost:8080/echotest
>
> The program and debug log are attached. Am I doing something obviously 
> wrong in my small program?
>
> Regards,
> Sebastiaan
> ------------------------------------------------------------------------
>
> package com.sebster.comet;
>
> import java.io.IOException;
> import java.io.InputStream;
> import java.io.OutputStream;
> import java.util.concurrent.ConcurrentHashMap;
> import java.util.concurrent.ConcurrentMap;
>
> import javax.servlet.http.HttpServlet;
> import javax.servlet.http.HttpServletRequest;
> import javax.servlet.http.HttpServletResponse;
>
> import org.apache.catalina.CometEvent;
> import org.apache.catalina.CometProcessor;
> import org.apache.catalina.CometEvent.EventType;
> import org.slf4j.Logger;
> import org.slf4j.LoggerFactory;
>
> public class CometEchoTest extends HttpServlet implements CometProcessor {
>
> 	private final Logger logger = LoggerFactory.getLogger(CometEchoTest.class);
>
> 	private static final long serialVersionUID = 1L;
>
> 	private final ConcurrentMap<CometEvent, Integer> contentLengths = new ConcurrentHashMap<CometEvent, Integer>();
>
> 	public void event(final CometEvent event) throws IOException {
> 		final HttpServletRequest request = event.getHttpServletRequest();
> 		final HttpServletResponse response = event.getHttpServletResponse();
> 		final EventType eventType = event.getEventType();
> 		logger.info(eventType + " event"); //$NON-NLS-1$
> 		switch (eventType) {
> 			case BEGIN:
> 				response.setContentType("application/octet-stream"); //$NON-NLS-1$
> 				contentLengths.put(event, request.getContentLength());
> 				// Intentional fallthrough.
> 			case READ:
> 				final int count = copy(event, request.getInputStream(), response.getOutputStream());
> 				if (count == -1)
> 					throw new IOException("unexpected end of stream"); //$NON-NLS-1$
> 				int remaining = contentLengths.get(event) - count;
> 				contentLengths.put(event, remaining);
> 				logger.debug(remaining + " bytes remaining"); //$NON-NLS-1$
> 				if (remaining == 0)
> 					closeEvent(event);
> 				break;
> 			case ERROR:
> 			case END:
> 				closeEvent(event);
> 				break;
> 		}
> 	}
>
> 	private int copy(final CometEvent event, final InputStream inputStream, final OutputStream outputStream) throws IOException {
> 		final byte[] buffer = new byte[1024];
> 		int totalCount = 0;
> 		do {
> 			final int count = inputStream.read(buffer);
> 			if (count == 0)
> 				return totalCount;
> 			if (count == -1)
> 				return totalCount > 0 ? totalCount : -1;
> 			outputStream.write(buffer, 0, count);
> 			outputStream.flush();
> 			totalCount += count;
> 			logger.debug(count + " bytes copied"); //$NON-NLS-1$
> 		} while (inputStream.available() > 0);
> 		return totalCount;
> 	}
> 	
> 	private void closeEvent(final CometEvent event) throws IOException {
> 		contentLengths.remove(event);
> 		event.close();
> 	}
>
> }
>   
> ------------------------------------------------------------------------
>
> 0 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest BEGIN event
>  5 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  5 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  6 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  6 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  6 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  6 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  6 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  6 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 837 bytes copied
>  7 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654393531 bytes remaining
>  12 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  12 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  12 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  13 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  13 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  13 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  13 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  13 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  14 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  14 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654385339 bytes remaining
>  15 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  15 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  15 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  15 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  16 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  16 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  16 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  16 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  16 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  16 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654377147 bytes remaining
>  17 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  17 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  17 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  18 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  18 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  18 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  18 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  18 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  18 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  18 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654368955 bytes remaining
>  19 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  19 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  19 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  20 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  20 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  20 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  20 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  20 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  20 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  21 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654360763 bytes remaining
>  21 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  21 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  21 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  22 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  22 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  22 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  22 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  22 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  22 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  23 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654352571 bytes remaining
>  23 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  23 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  24 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  24 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  24 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  24 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  24 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  24 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  25 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  25 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654344379 bytes remaining
>  25 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  25 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  25 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  26 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  26 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  26 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  26 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  26 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  27 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  27 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654336187 bytes remaining
>  27 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  27 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  28 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  28 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  28 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  28 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  28 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  28 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  28 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  29 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654327995 bytes remaining
>  29 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  29 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  29 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  30 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  30 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  30 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  30 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  30 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  30 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  30 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654319803 bytes remaining
>  31 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  31 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  31 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  31 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  31 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  32 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  32 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  32 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  32 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  32 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654311611 bytes remaining
>  33 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  33 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  33 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  33 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  33 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  33 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  33 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  34 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  34 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  34 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654303419 bytes remaining
>  34 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  34 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  35 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  35 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  35 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  35 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  35 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  35 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  35 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  35 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654295227 bytes remaining
>  36 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  36 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  36 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  36 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  36 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  36 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  37 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  37 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  37 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  37 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654287035 bytes remaining
>  37 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  37 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  37 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  38 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  38 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  38 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  38 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  38 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  38 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  38 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654278843 bytes remaining
>  39 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  39 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  39 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  39 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  39 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  39 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  39 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  39 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  40 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  40 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654270651 bytes remaining
>  40 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  40 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  40 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  40 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  40 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  41 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  41 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  41 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  41 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  47 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654262459 bytes remaining
>  47 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  47 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  48 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  48 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  48 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  48 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  48 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  48 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  48 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  49 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654254267 bytes remaining
>  49 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  49 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  49 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  49 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  49 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  50 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  50 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  50 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  50 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  50 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654246075 bytes remaining
>  50 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  50 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  51 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  51 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  51 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  51 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  51 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  51 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  51 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  51 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654237883 bytes remaining
>  52 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  52 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  52 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  52 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  52 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  52 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  52 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  53 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  53 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  53 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654229691 bytes remaining
>  53 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  53 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  53 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  60060 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest ERROR event
>  61069 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest BEGIN event
>  61070 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61070 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61070 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61071 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61071 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61071 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61071 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61072 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 837 bytes copied
>  61072 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654393531 bytes remaining
>  61073 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  61073 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61074 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61074 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61074 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61074 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61075 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61075 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61075 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61075 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654385339 bytes remaining
>  61076 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  61076 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61076 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61077 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61077 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61077 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61077 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61077 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61078 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61078 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654377147 bytes remaining
>  61078 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  61079 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61079 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61079 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61079 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61079 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61080 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61080 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61080 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61080 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654368955 bytes remaining
>  61081 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  61081 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61081 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61082 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61082 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61082 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61082 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61083 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61083 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61083 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654360763 bytes remaining
>  61084 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  61084 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61084 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61085 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61085 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61085 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61085 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61086 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61086 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61086 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654352571 bytes remaining
>  61087 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  61087 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61087 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61088 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61088 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61088 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61088 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61088 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61089 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61089 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654344379 bytes remaining
>  61089 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  61090 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61090 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61090 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61090 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61090 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61091 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61091 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61091 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61091 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654336187 bytes remaining
>  61092 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  61092 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61092 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61092 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61093 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61093 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61093 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61093 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61093 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61094 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654327995 bytes remaining
>  61094 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  61094 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61095 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61095 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61095 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61095 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61096 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61096 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61096 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61096 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654319803 bytes remaining
>  61097 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  61097 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61097 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61097 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61098 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61098 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61098 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61098 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61099 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61099 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654311611 bytes remaining
>  61099 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  61100 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61100 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61100 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61100 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61100 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61101 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61101 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61101 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61101 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654303419 bytes remaining
>  61102 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  61102 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61102 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61102 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61103 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61103 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61103 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61103 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61103 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61104 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654295227 bytes remaining
>  61104 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  61104 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61105 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61105 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61105 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61105 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61105 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61106 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61106 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61106 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654287035 bytes remaining
>  61107 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  61107 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61107 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61107 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61107 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61108 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61108 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61108 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61108 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61108 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654278843 bytes remaining
>  61109 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  61109 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61110 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61110 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61110 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61110 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61111 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61111 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61111 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61111 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654270651 bytes remaining
>  61112 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  61112 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61112 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61112 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61113 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61113 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61113 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61113 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61114 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  61114 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654262459 bytes remaining
>  61114 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  61114 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61115 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61115 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61115 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61115 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61116 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61116 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61116 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  61116 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654254267 bytes remaining
>  61117 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  61117 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61117 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61117 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61118 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61118 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61118 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61118 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61118 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  61118 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654246075 bytes remaining
>  61119 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  61119 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61119 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61119 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61119 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61119 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61120 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61120 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61120 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  61120 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654237883 bytes remaining
>  61120 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  61120 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61120 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61121 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61121 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61121 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61121 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61121 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61121 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  61121 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654229691 bytes remaining
>  61122 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  121130 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest ERROR event
>  123137 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest BEGIN event
>  123137 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123138 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123138 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123138 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123138 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123138 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123139 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123139 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 837 bytes copied
>  123139 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654393531 bytes remaining
>  123140 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  123141 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123141 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123141 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123141 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123142 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123142 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123142 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123142 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123142 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654385339 bytes remaining
>  123143 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  123143 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123143 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123144 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123144 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123144 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123144 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123145 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123145 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123145 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654377147 bytes remaining
>  123150 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  123150 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123150 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123150 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123151 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123151 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123151 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123151 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123152 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123152 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654368955 bytes remaining
>  123152 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  123153 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123153 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123153 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123153 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123153 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123154 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123154 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123154 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123154 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654360763 bytes remaining
>  123155 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  123155 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123155 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123156 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123156 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123156 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123156 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123156 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123157 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123157 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654352571 bytes remaining
>  123157 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  123158 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123158 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123158 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123158 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123159 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123159 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123159 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123159 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123159 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654344379 bytes remaining
>  123160 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  123160 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123160 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123161 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123161 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123161 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123161 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123161 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123162 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123162 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654336187 bytes remaining
>  123162 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  123163 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123163 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123163 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123163 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123163 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123164 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123164 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123164 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123164 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654327995 bytes remaining
>  123165 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  123165 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123165 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123165 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123166 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123166 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123166 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123166 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123166 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123166 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654319803 bytes remaining
>  123167 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  123167 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123167 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123168 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123168 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123168 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123168 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123169 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123169 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123169 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654311611 bytes remaining
>  123169 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  123170 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123170 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123170 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123170 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123171 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123171 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123171 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123171 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123171 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654303419 bytes remaining
>  123172 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  123172 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123172 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123172 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123173 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123173 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123173 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123173 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123174 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123174 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654295227 bytes remaining
>  123178 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  123178 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123178 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123178 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123179 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123179 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123179 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123179 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123179 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123179 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654287035 bytes remaining
>  123180 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  123180 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123181 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123181 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123181 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123181 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123181 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123182 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123182 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123182 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654278843 bytes remaining
>  123183 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  123183 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123183 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123183 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123183 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123184 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123184 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123184 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123184 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123184 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654270651 bytes remaining
>  123186 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  123186 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123186 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123186 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123186 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123187 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123187 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123187 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123187 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  123187 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654262459 bytes remaining
>  123188 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  123188 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123188 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123189 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123189 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123189 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123189 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123189 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123190 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  123190 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654254267 bytes remaining
>  123190 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  123191 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123191 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123191 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123191 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123192 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123192 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123192 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123192 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  123192 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654246075 bytes remaining
>  123193 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  123193 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123193 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123194 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123194 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123194 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123194 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123194 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123195 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  123195 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654237883 bytes remaining
>  123195 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  123196 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123196 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123196 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  123196 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  183202 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest ERROR event
>  186207 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest BEGIN event
>  186208 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186208 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186208 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186208 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186208 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186209 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186209 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186209 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 837 bytes copied
>  186209 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654393531 bytes remaining
>  186210 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  186210 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186211 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186211 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186211 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186211 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186212 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186212 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186212 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186212 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654385339 bytes remaining
>  186213 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  186213 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186213 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186213 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186213 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186214 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186214 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186214 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186214 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186214 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654377147 bytes remaining
>  186215 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  186215 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186216 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186216 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186216 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186216 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186216 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186217 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186217 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186217 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654368955 bytes remaining
>  186217 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  186218 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186218 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186218 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186218 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186219 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186219 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186219 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186219 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186219 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654360763 bytes remaining
>  186220 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  186220 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186220 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186220 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186221 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186221 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186221 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186221 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186221 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186222 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654352571 bytes remaining
>  186222 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  186222 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186223 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186223 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186223 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186223 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186224 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186224 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186224 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186224 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654344379 bytes remaining
>  186225 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  186225 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186225 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186225 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186225 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186226 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186226 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186226 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186226 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186226 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654336187 bytes remaining
>  186227 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  186227 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186227 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186228 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186228 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186228 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186228 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186229 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186229 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186229 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654327995 bytes remaining
>  186229 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  186230 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186230 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186230 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186230 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186230 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186231 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186231 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186231 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186231 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654319803 bytes remaining
>  186232 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  186232 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186232 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186232 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186233 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186233 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186233 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186233 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186233 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186234 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654311611 bytes remaining
>  186234 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  186234 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186235 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186235 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186235 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186235 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186235 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186236 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186236 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186236 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654303419 bytes remaining
>  186236 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  186237 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186237 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186237 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186237 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186237 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186238 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186238 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186238 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186238 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654295227 bytes remaining
>  186239 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  186239 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186239 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186239 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186240 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186240 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186240 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186240 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186240 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186241 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654287035 bytes remaining
>  186241 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  186241 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186242 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186242 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186242 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186242 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186242 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186243 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186243 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186243 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654278843 bytes remaining
>  186243 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  186244 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186244 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186244 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186244 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186245 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186245 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186245 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186245 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186245 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 654270651 bytes remaining
>  186246 INFO  [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest READ event
>  186246 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186246 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186246 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186246 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186246 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186246 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186246 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186247 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 1024 bytes copied
>  186247 DEBUG [http-localhost%2F127.0.0.1-8080-exec-5] c.s.c.CometEchoTest 654262459 bytes remaining
>  186247 INFO  [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest READ event
>  186247 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186247 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186247 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186247 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186248 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186248 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186248 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186248 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 1024 bytes copied
>  186248 DEBUG [http-localhost%2F127.0.0.1-8080-exec-1] c.s.c.CometEchoTest 654254267 bytes remaining
>  186248 INFO  [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest READ event
>  186248 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186249 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186249 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186249 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186249 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186249 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186249 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186249 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 1024 bytes copied
>  186249 DEBUG [http-localhost%2F127.0.0.1-8080-exec-3] c.s.c.CometEchoTest 654246075 bytes remaining
>  186250 INFO  [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest READ event
>  186250 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186250 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186250 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186250 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186250 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186250 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186250 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186251 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 1024 bytes copied
>  186251 DEBUG [http-localhost%2F127.0.0.1-8080-exec-4] c.s.c.CometEchoTest 654237883 bytes remaining
>  186251 INFO  [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest READ event
>  186251 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186251 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186251 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  186251 DEBUG [http-localhost%2F127.0.0.1-8080-exec-2] c.s.c.CometEchoTest 1024 bytes copied
>  
>   
> ------------------------------------------------------------------------
>
> ---------------------------------------------------------------------
> To start a new topic, e-mail: users@tomcat.apache.org
> To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: users-help@tomcat.apache.org

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org