Hi All,
Actually I'm trying to wright a
servlet application in which one servlet(MultipleInlcude.java) tries to include another
servlet(IncludeServlet1.java) which already has other
jsp (level3.jsp) included in turn has another servlet (IncludeServlet2.java)
included.
My aim is to display output of all resource on single page.
But here i'm getting output of only IncludeServlet2.java. (Hello from Level4)
Follwing are the codes:
MultipleInclude.java
=============
IncludeServlet1.java
=============
level3.jsp
======
IncludeServlet2.java
=============
web.xml
======
Could anyone please explain me where its going wrong.