IllegalStateException after canceling file downloading.
posted 16 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Hi All,
I am providing a file download option to the user in my web-application. Suppose user selects cancel the downloads, I am getting IllegalStateException. I am using tomcat and spring MVC. Kindly let me know how to handle this exception.
here is my code which downloads the file:
I am providing a file download option to the user in my web-application. Suppose user selects cancel the downloads, I am getting IllegalStateException. I am using tomcat and spring MVC. Kindly let me know how to handle this exception.
here is my code which downloads the file:
Pawan Chopra
SCJP - itspawan.com
posted 16 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
It looks like you handled it. If you wanted to do something else, you could also do it in the 'catch' block.
posted 16 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
I don't want that the exception thrown should display on the tomcat console. But it is showing.
Pawan Chopra
SCJP - itspawan.com
posted 16 years ago
That's because your logger may have configured to do so.
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
I don't want that the exception thrown should display on the tomcat console. But it is showing.
That's because your logger may have configured to do so.
SCJP 5 | SCWCD 5
[How to ask questions] [Twitter]
posted 16 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
The IllegalStateException could be because you are trying to close (close(output); ) the resource(resource.close();).
I believe the response is committed and you are trying to close.
I believe the response is committed and you are trying to close.
posted 16 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
I agree with Vijitha Kumara: if you don't want it logged, then don't log it.
posted 16 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Thanks to all of you, my mistake I was trying to open the response output stream again in some other method
Pawan Chopra
SCJP - itspawan.com
| Hot dog! An advertiser loves us THIS much: The new gardening playing cards kickstarter is now live! https://www.kickstarter.com/projects/paulwheaton/garden-cards |












