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
Creativity is nothing but Breaking Rules
Bear Bibeault
Author and opinionated walrus
Marshal
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.
santhosh.R gowda
Ranch Hand
Joined: Apr 06, 2009
Posts: 295
posted
0
Is it possible improve the parsing request performance in server side
Mark E Hansen
Ranch Hand
Joined: Apr 01, 2009
Posts: 639
posted
0
On the server side, can't you just check the content-length header and refuse the connection if the size is too large?
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.
santhosh.R gowda
Ranch Hand
Joined: Apr 06, 2009
Posts: 295
posted
0
I believe the Apache file upload product provides something which allows you to do that.
Please can any body give me the documentation or some hint regarding this
Bear Bibeault
Author and opinionated walrus
Marshal
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
Mark E Hansen
Ranch Hand
Joined: Apr 01, 2009
Posts: 639
posted
0
Can you please check the API and see what request.getContentType() returns?
Is it giving you what you expect?
santhosh.R gowda
Ranch Hand
Joined: Apr 06, 2009
Posts: 295
posted
0
Sorry for the previous code
santhosh.R gowda
Ranch Hand
Joined: Apr 06, 2009
Posts: 295
posted
0
Please can any body tell me why redirecting taking too much of time to redirect