Re: Getting datas from session objects

2007-06-19 Thread Dave Newton
--- [EMAIL PROTECTED] wrote: > The jsp is loaded correctly and works fine so far. > After I submitted the form (the jsp doesn't crash > while submitting), I can see in the debug log, that > the changed data is transfered - but I can't see it > in the session test. > > Now the question: > How can

Getting datas from session objects

2007-06-18 Thread andihartmann
Hello! I've got an object, which has getter an setter methods, e.g.: Object test { String foo="something"; public String getFoo() { return (foo;) } public void setFoo(String foo) { this.foo=foo;} } The object is set to the session with rq.getSession().setAttribute("test",test); The jsp uses th