Out of Memory in Tomcat
This are the things i am doing in JSP
Using Bean i get Image in byte[].
Then i will send Image as response using < page ... Directive.
Everything is running fine but the problem is after transferring 25 images......
i get Out of Memory Exception.
The reason is TOmcat Process is consuming more and more memory.
It is in ratio to images sent.
How should i free the memory?
I tried byte[] as local and Session variable.
Even then it consumes more and more memory.

