I'm developing a web site using composite pages with the Struts MVC Frame
work running under Websphere 4.0.

showLatestNews.do is a defined action that will instantiate an object that
performs a database query and returns a result set. This result set is then
made available to the VIEW (ShowLatestNews.jsp) for presentation. 

<action-mappings>

        <action  path="/showLatestNews" 
                     scope="request"
                 type="com.aig.aignet.ShowLatestNewsAction" 
                 unknown="false"
                 validate="false">
        <forward name="viewLatestNews" path="/ShowLatestNews.jsp"/>
        </action>
 
</action-mappings>

I'm receiving the following error:

Error Message: ERROR: Cannot forward. Writer or Stream already obtained.

<html>
<body>
<jsp:include page="/showLatestNews.do" flush="true">
</jsp:include>

</body>

</html>

Has anyone had this problem ?

Freddie

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to