Hi,
I want to know how can I read attachment messages without using scriplets in JSP? After getting Message object as an attribute by using request object from servlets, how can I confirm whether Message content is an instance of Multipart or not without using scriplets like:
if(message.getContent() instanceOf Multipart)
How can I read the content of any file by using EL in JSP? As I can't see any getRead method in inputStream subclass.