Re: Problems With multi part Request
Are you using ajp13 to connect apache to tomcat?
Problems With multi part Request
I have this problem uploading files to the Server using a mulitpart Request I tried this code to print the Request streams to the Output in my JSP Prog java.io.InputStream inst = request.getInputStream(); int inm; while( (inm = inst.read())>-1){