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 the object like this:

<html:text name="test" property="foo"/>

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 I address the changed data in the ActionForm-class? Reloading the 
sessionobject test doesn't work - I just can see the old data again.


Thanks for your hint,
kind regards,
Andreas Hartmann



"Jetzt Handykosten senken mit klarmobil - 14 Ct./Min.! Hier klicken"
produkte.shopping.freenet.de/handy_voip_isdn/klarmobil/index.html?pid=73025


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to