Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-23 Thread Johan Compagner
that seems to be the error then.What is the full stacktrace of that error?johanOn 10/23/06, kurt heston [EMAIL PROTECTED] wrote:Is this normal behavior or a good place to start chasing down my issue: java.lang.NoSuchFieldException: usernamekurt heston wrote: Something changed about how I'm

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-22 Thread kurt heston
Something changed about how I'm supposed to override WebRequestCycle. This is where my values are disappearing. Reading up on it now... Igor Vaynberg wrote: yes you are too vague, and another problem is that this list has been down because of sf.net http://sf.net for a while. -Igor On

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-22 Thread kurt heston
Is this normal behavior or a good place to start chasing down my issue: java.lang.NoSuchFieldException: username kurt heston wrote: Something changed about how I'm supposed to override WebRequestCycle. This is where my values are disappearing. Reading up on it now... Igor Vaynberg wrote:

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-22 Thread kurt heston
The attached code works fine with 1.2RC3, does not work with 1.2.2. I'm pretty sure the problem lies in with MyApplication or RequestCycle just not sure where. package test.base; import java.awt.Color; import test.auth.UserSession; import wicket.Resource; import wicket.markup.html.WebPage;

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-05 Thread Frank Bille
Yes please try to share some code with shows where the problem exatly is.FrankOn 10/2/06, kurt heston [EMAIL PROTECTED] wrote:Am I being too vague here to get an answer?Do I need to post my code? kurt heston wrote: All I did was switch from wicket-1.2-rc3.jar to wicket-1.2.2.jar and my SignIn

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-05 Thread Igor Vaynberg
yes you are too vague, and another problem is that this list has been down because of sf.net for a while.-IgorOn 10/2/06, kurt heston [EMAIL PROTECTED] wrote: Am I being too vague here to get an answer?Do I need to post my code?kurt heston wrote: All I did was switch from wicket-1.2-rc3.jar to

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-02 Thread kurt heston
Am I being too vague here to get an answer? Do I need to post my code? kurt heston wrote: All I did was switch from wicket-1.2-rc3.jar to wicket-1.2.2.jar and my SignIn page, adapted from Juergen's code, stopped working. The fields are always an empty string. What did I miss in the

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-02 Thread kurt heston
Here's the code...it should look VERY familiar. It works when I use wicket-1.2-rc3.jar, but not when I use wicket-1.2.2.jar. With 1.2.2, getUsername and getPassword always return an empty string. //- /* *

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-02 Thread Eelco Hillenius
I tested the examples (singin, signing2), and they work fine. Can you double check if you didn't forget anything? If you still think it is an issue, please add a bug report to our issue tracker. Eelco On Oct 2, 2006, at 7:41 AM, kurt heston wrote: All I did was switch from

[Wicket-user] getObjectAsString always null in 1.2.2

2006-10-01 Thread kurt heston
All I did was switch from wicket-1.2-rc3.jar to wicket-1.2.2.jar and my SignIn page, adapted from Juergen's code, stopped working. The fields are always an empty string. What did I miss in the release notes? - Take