S
Sudsy
Mickey Segal wrote:
I hate to mention the obvious, but I don't see an invocation of
setContentLength here. I know from experience that not specifying
the length can give receivers conniptions.
res.setContentType("text/plain");
PrintWriter out = res.getWriter();
out.print(reportString);
out.flush();
Is there some problem using such code for a String of longer than 1124
bytes? Sometimes a longer String is sent without truncation to 1124 bytes,
but usually it gets truncated to 1124 bytes.
I hate to mention the obvious, but I don't see an invocation of
setContentLength here. I know from experience that not specifying
the length can give receivers conniptions.