I am looking at a very old project and trying to fix some problems that this project is facing with related to its JSP pages throwing nullpointer exception. The JSP page is throwing a null pointer exception like the sample below.
/e2fo/tools/user/search/searchUser.jsp. Exception thrown : java.lang.NullPointerException
at com.ibm._jsp._searchUser_5F_TA._jspService(_searchUser_5F.java:207)
Now this problem is not reproducible, so just by looking at the exception above I need to figure put where could be the problem. As I understand, JSP pages get compiled into java servlets and so the .java file displayed in the exception stack is the servlet file. This is an intermediate file and we do not get to see this, I am running websphere 6.1. In this case, How to determine or rather map the line number from the servlet to the JSP file ?