Re: passing data(object) from jsp to action class thru HTTP request.

2007-07-26 Thread Mateusz Nowakowski
I have to pass object,so I think I should go for session? Am I right? Yes, you should use session, but ... i dissuade from save something to session from JSP. Firstly, after a month you won't remember what you have in session, and session will grown because you won't remember to clean it pro

Re: passing data(object) from jsp to action class thru HTTP request.

2007-07-26 Thread Kameshwaran
I have to pass object,so I think I should go for session? Am I right? newton.dave wrote: > > --- Kameshwaran <[EMAIL PROTECTED]> wrote: >> I am trying to pass some values from the jsp to >> action class. >> >> I did something like this in the >> jsp:request.setAttribute("InvVOX", inventoryVOX

Re: passing data(object) from jsp to action class thru HTTP request.

2007-07-26 Thread Dave Newton
--- Kameshwaran <[EMAIL PROTECTED]> wrote: > I am trying to pass some values from the jsp to > action class. > > I did something like this in the > jsp:request.setAttribute("InvVOX", inventoryVOX); > > but when I try to get it in the action class(when > the jsp gets submitted).I am getting null.