Hi all,I have a web app that writes some plain text data and then some zipped data to the client:
ServletOutputStream out = ...
out.print("PLAIN_HEADER|");
ZipOutputStream zos = new ZipOutputStream(out);
... use zos ...well, this code is in production since tomcat 4.0.x and works fine since tomcat 5.0.19; but on tomcat 5.5 I got, on the client side, "unexpected end of zlib input stream". I got the error only with large datasets, with small ones all works fine.
Do you have some advice? I don't know what to do. Best Regards, Tommaso Nolli --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
