For one of my projects, I need to display MS word document on web browser using JSF 2.0. The web application contains header, contents and so on. The MS word document should be displayed dynamically (using AJAX) on content part. The backing bean reads ms word document. I can display MS word document on browser using JSF as an independent application. But if call this from another JSF file this is not going to work. Could anybody throw some light on this issue ?
JSF independent application DiaplayDoc.xhtml. This will display MS document on the browser.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core">
<f:event type="preRenderView" listener="#{DisplayDoc.downloadDoc}"/>
</html>
I need to call this page from another jsf file which contains other jsf components. The header portion will be executed, but not the footer part. (This works fine when the footer is set to display pdf plug ins or the images.)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
>
<h:body>
<h:form id="form1">
<div id="header">
Hello World
</div>
<div id="footer">
<object data="<Project>/DisplayDoc.jsf" type="application/msword" width="100%" height="100%">
</object>
</div>
</h:form>
</h:body>
</html>
The bean part contains
response.reset();
response.setHeader("Content-Type", "application/msword");
response.setHeader("Content-Length", String.valueOf(fFile.length()));
response.setHeader("Content-Disposition", "inline; filename=\"" + strFilepath + "\"");
010101button in toolbar or theCtrl+Kkey. See also formatting rules in the right hand column while in the message editor. I've already done it for you. – BalusC Dec 15 '10 at 15:26