Hi Johan,

sorry to reply you this late, my colleague told me you guys have replied my
message, and I also need the time to create a very simple quickstart
application to reproduce this stateless and redirect(true) problem.

Do you mind if I send you that application through Email attachment? Since I
am afraid I can't explain well in English.
The expiration problem still exists after logging into the application from
a stateless form with a redirect(true).

And do you guys know why CompoundRequestCycleProcessor disappear in the
wicket-1.3.0-incubating-SNAPSHOT.jar (Mar 18), I am using it for URL
encryption.

Matthew


Johan Compagner wrote:
> 
> yes a submit will always be redirected so what happens if you don't do
> setRedirect(true)
> are you then not getting that expired page??
> 
> does the onSubmit really be called? Or is that already the expired page?
> 
> johan
> 
> 
> On 3/5/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
>>
>> dont know if there is a problem with stateless pages and redirects, but
>> wicket's default redirect-to-buffer render strategy should already
>> eliminate
>> that popup by performing a redirect
>>
>> -igor
>>
>>
>> On 3/5/07, Matthew Kwong <[EMAIL PROTECTED]> wrote:
>> >
>> >
>> > Hi guys,
>> >
>> > I encountered a problem in the stateless form, which is in my login
>> > page.
>> >
>> > The form code is as below:
>> >
>> > public final void onSubmit() {
>> >     // Get session info
>> >     DataStoreSession session = (DataStoreSession)getSession();
>> >
>> >     // Sign the user in
>> >     if (session.authenticate(username, password)) {
>> >         if (!continueToOriginalDestination()) {
>> >             setRedirect(true);
>> >             setResponsePage(new DataStoreTabbedPanelPage());
>> >         }
>> >     }
>> >     else {
>> >         error(getLocalizer().getString("loginError", this, "Unable to
>> > sign
>> > you in"));
>> >     }
>> > }
>> >
>> > DataStoreTabbedPanelPage is a stateful page with all the components and
>> > panels. The session is also created after submit. However, when I click
>> > other pages, it gives me Expired Page. The reason I want to redirect
>> > because
>> > when the user successfully login, and press F5, firefox gives them a
>> > popup
>> > for them to resubmit the form and create another session.
>> >
>> > Is there any problem with the setRedirect(true) in stateless form?
>> >
>> > Matthew Kwong
>> > --
>> > View this message in context:
>> >
>> http://www.nabble.com/StatelessForm-and-setRedirect%28true%29-in-the-onSubmit-method-tf3347688.html#a9308281
>> > Sent from the Wicket - User mailing list archive at Nabble.com.
>> >
>> >
>> >
>> >
>> -------------------------------------------------------------------------
>> > Take Surveys. Earn Cash. Influence the Future of IT
>> > Join SourceForge.net's Techsay panel and you'll get the chance to share
>> > your
>> > opinions on IT & business topics through brief surveys-and earn cash
>> >
>> >
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> > _______________________________________________
>> > Wicket-user mailing list
>> > [email protected]
>> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >
>>
>>
>> -------------------------------------------------------------------------
>> Take Surveys. Earn Cash. Influence the Future of IT
>> Join SourceForge.net's Techsay panel and you'll get the chance to share
>> your
>> opinions on IT & business topics through brief surveys-and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> _______________________________________________
>> Wicket-user mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
>>
> 
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share
> your
> opinions on IT & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Wicket-user mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/StatelessForm-and-setRedirect%28true%29-in-the-onSubmit-method-tf3347688.html#a9545838
Sent from the Wicket - User mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to