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!!

[1048 byte] By [QussayNajjara] at [2007-11-27 11:03:24]
# 1

Where's recordTimeIn1 declared?

Are you sure the parameters are correct (check the method signature)?

Manuel Leiria

manuel.leiriaa at 2007-7-29 12:49:24 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2

The full error message would help, as well as the definition of the method that it can't find (at least its signature).

masijade.a at 2007-7-29 12:49:24 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3

Thanks guys, but i solved the problem, and saved my brain..

will if you're intersted to know.. the problem was with Date invocation which i changed to java.sql.Timestamp and it worked..

i don't know what difference it did, or what was wrong, but all i care about now that my program is working...

Thanks again (^_^);

QussayNajjara at 2007-7-29 12:49:24 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...