I my application I'm checking the size of file in server side(servlet) So when i upload file (above 20mb) Its Taking too time to parse the request in server side.As i'm using appache API to parse the request ,and i also tried in browser side using java scripts but it's not compatible with Mozilla and other browsers please can any body tell me the solution to over come .so that when i upload more than the limit it should alert me
This message was edited 2 times. Last update was at by Bear Bibeault
If you are asking how to check the file size on the client, that's not going to happen. Security concerns prevent client code from knowing anything about the file system.
You might be able to use an Applet -- but the user will have to accept letting the applet check the file system. There's no guarantee that they'll say yes.
Mark E Hansen wrote:On the server side, can't you just check the content-length header and refuse the connection if the size is too large?
I believe the Apache file upload product provides something which allows you to do that. I don't have the documentation handy but it shouldn't be too hard to look it up for somebody who does have the documentation.
On the server side, can't you just check the content-length header and refuse the connection if the size is too large
I had used the request.getContentType() in my condition to check the file size it will take < 1 sec now to give me the content length but when i redirecting it it ll take 5 min to redirect