What should be the result of a.jsp?
In Tomcat, the output was
bc
<br>
and In Resin, the output was
b
<br>
c
I thought that the output should be the one returned by Resin but why did Tomcat return such output?
---- a.jsp code ----
<%
RequestDispatcher rd = application.getRequestDispatcher("/rd/b.jsp");
rd.include(request, response);
%>
<br>
<%
rd = application.getRequestDispatcher("/rd/c.jsp");
rd.include(request, response);
%>
---- b.jsp code ----
b
---- c.jsp code ----
c
Thanks,
Jerson