You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Dave Newton (JIRA)" <ji...@apache.org> on 2008/01/04 23:54:04 UTC

[jira] Closed: (WW-2406) Error

     [ https://issues.apache.org/struts/browse/WW-2406?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dave Newton closed WW-2406.
---------------------------

    Resolution: Not A Problem

Closed as per reporter comment.

> Error 
> ------
>
>                 Key: WW-2406
>                 URL: https://issues.apache.org/struts/browse/WW-2406
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Core Actions, Integration, Plugin - Tiles
>    Affects Versions: 2.0.9, 2.0.11
>         Environment: Struts2 , Jboss 4.05, Windows, Java 5
>            Reporter: RAUL
>
> 		            this.getServletResponse().setContentType(document.getMimeType()); 
> 		            
> 		            this.getServletResponse().setHeader("Content-Disposition",("attachment;filename=\"" +document.getFileName()+"\""));
> 		            int longitud = document.getInstance().length;	            
> 		            this.getServletResponse().setContentLength(longitud);   
> 		            
> 		            OutputStream ouputStream = this.getServletResponse().getOutputStream();
> 		            ouputStream.write(document.getInstance());
> 		            ouputStream.flush();
> 		            ouputStream.close();
> it shows the following error in the log. but if it works
> 12:15:59,546 INFO  [STDOUT] 12:15:59,546 ERROR [BasicTilesContainer] Error rendering tile
> java.io.IOException: Error including path '/jspinclude/layout.jsp'. getOutputStream() has already been called for this response
> 	at org.apache.tiles.servlet.context.ServletTilesRequestContext.include(ServletTilesRequestContext.java:214)
> 	at org.apache.tiles.servlet.context.ServletTilesRequestContext.dispatch(ServletTilesRequestContext.java:183)
> 	at org.apache.tiles.context.TilesRequestContextWrapper.dispatch(TilesRequestContextWrapper.java:72)
> 	at org.apache.struts2.tiles.StrutsTilesRequestContext.dispatch(StrutsTilesRequestContext.java:86)
> 	at org.apache.tiles.impl.BasicTilesContainer.render(BasicTilesContainer.java:417)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.