We are creating a payroll time entry application for the web.
Background:
We have the employee logging in, getting time information for the employee and storing it into objects. Then we ask the employee to pick between approving time (managers only) and entering time (all have this choice). We use a forward to send the employee to the time entry screen
jsp, and we pass the initial objects on.
Problem:
When the employee enters time, we update the time vector. When we save the time data, then return to the time entry display, the modified time entry data does not display - it does show back on the screen what we changed in the time vector.
Question:
When you pass out an object, how can you update the object, or do you need to delete it and then re-read the data to pick up the changed information from the database?
Is it tied to how we may be keeping track of our session that we are in? How do you get the session ID and then pass it between jsp's?