Hello,
I wrote an applet and servlet where the servlet receives a request from the
applet. This request contains a very large file (100MB). The servlet and applet
work fine for small file sizes but when the files are large the applet runs out
of memory after writing 16MB of the file.
It seems that the servlet is not called by the http server until the applet
has closed the connection. So the data sent by the applet is cached by tomcat
until the client closes the connection. Is there any way that the servlet
starts receiving the data from the client before the connection is closed?
The servlet is using the doPost method.
Thanks in advance, Joaquin