Hi, I have a standard form that has an action to call BeforeProc, where email can be accessed from request, but when BeforeProc returns "AfterProc", the request.getParameter("email") is null, why?
public class BeforeProc { @Inject private Request request; Object onActivate() { return sub_proc(); } Object sub_proc() { String email = request.getParameter("email"); // email has value return "AfterProc"; } } public class AfterProc { @Inject private Request request; Object onActivate() { String email = request.getParameter("email"); // email is null here } } -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-accessing-parameters-from-request-tp3287653p3287653.html Sent from the Tapestry - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org