JPJedi
JPJedi

Reputation: 1508

JSP Buffer overflow

I have a 1MB file to upload and the following is set and I get an exception. I think it is my buffer size and or the autoFlush setting.

currently:

<%@ page errorPage="error.jsp" buffer="500kb" autoFlush="false" %>

I tried to set the buffer to 2000KB but no luk. Any ideas?

Thanks

Upvotes: 0

Views: 3004

Answers (1)

Jason Cohen
Jason Cohen

Reputation: 83051

That is the buffer for output, but a file upload is input.

The solution depends on your web framework.

Upvotes: 1

Related Questions