Thanks for asking...
I have used the following code in my jsp code.
String fileName =
"abc.pdf";
response.setContentType("application/pdf");
response.setHeader(
"Content-Disposition", "inline; filename=\"" + fileName + "\"" );
application.log(
"write baos to reponse ...");
baos.writeTo(response.getOutputStream());
baos.close();
Please let me know if you need any further information....
Thanks in advance.