CAN A DEVELOPER BRAIN EXPLODE!!!!
Hi to all, just wanted to share my problem which i can't find a solution for, and i don't even find it reasonable...
public void doPost(HttpServletRequest request,HttpServletResponse response)
throws ServletException,IOException {
int timeInSituation = determineFirstOrSecondTimeIn();
if(timeInSituation == FIRST_TIME_IN){
recordTimeIn1(get_empno(), get_empname(), "HO", Controller.getTimeProcessInstance().getServerDateAsSQLDate(),
Controller.getTimeProcessInstance().getServerDateAsSQLDate(), get_ReasonLate(request), get_Justification(request),
get_Br_Timein1(get_empno()), get_supv_id(get_empno()));
}
}
it's a bit complicated i guess..
all invokes through the parameters are working alone, but when i put all together inside the parameters and invoke the method recordTimeIn1(...) the complier is giving me an error of not finding this method...
i just can't get it why he can't ..
need help pls.. or my boss will kill me...
Thanks is advance!!

