In my application, I am using jsp include as :-
<jsp:include page="/jsp/selectRoom/listRoom.jsp" />
That's working fine, but when I include the same jsp in my servlet as :-
RequestDispatcher rd = getServletContext().getRequestDispatcher("//jsp//selectRoom//listRoom.jsp") ;
rd.include(request, response) ;
That's not working. Am I making some syntactical mistake?
As log details are not required, i am removing the log details from my post.