Thanks to you and Lars , I believe the LDAP integration works fine now However i have another issue where the server keep complaining about parsing my JSP page, seems that they import for my jpa entities is not working fine, however the same code is working fine on WAS 7,
Code snippet
<%@page import="java.util.*"%>
<%@page import="com.hsbc.hbeg.hae.dao.entities.Employee"%>
<%
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader ("Expires", 0);
Employee LoginEmployee = (Employee) request.getSession().getAttribute("LoginEmployee");
if (LoginEmployee == null) {
RequestDispatcher dispatcher = request.getRequestDispatcher("/pages/login.jsp");
dispatcher.forward(request, response);
}
// get the direct report employees form the request scope
List DirctRportEmps =(List) request.getSession().getAttribute("DirctRportEmps");
%>
Error :
com.ibm.ws.jsp.JspCoreException: JSPG0049E: /pages/Attendance/Attendance.jsp failed to compile : JSPG0091E: An error occurred at line: 15 in the file: /pages/Attendance/Attendance.jsp JSPG0093E: Generated servlet error from file: /pages/Attendance/Attendance.jsp C:\swdtools\IBM\WAS Liberty profile basic installation\wlp\usr\servers\newBasicServer\workarea\org.eclipse.osgi\bundles\78\data\temp\default_node\SMF_WebContainer\hbeg-hae-ear\HR_Attendance_Enquiry-1.0\pages\Attendance\_Attendance.java : 172 : Employee cannot be resolved to a type JSPG0091E