PageParameters contain only the GET parameters.
Calling super(parameters) only helps to use page.getPageParameters() later.

getRequest().getPostParameters().getParameterNames() is the right way
to read POST params in this case.
As I said check that the browser actually sends them.

On Wed, Jun 20, 2012 at 11:30 AM, vineet semwal
<vineetsemwa...@gmail.com> wrote:
> you forgot to do super(parameters) in constructors
>
> On Wed, Jun 20, 2012 at 1:58 PM, ramlael <grambab...@gmail.com> wrote:
>> HI
>>
>> JSP and Wikcet Iframe running on different server.
>>
>> The JAVA Code
>> public class abc extends WebPage {
>>
>> public abc(final PageParameters parameters) {
>> logger.debug("+++++++++++++++++++++++++++++++++++++++++++++++++ "+
>> parameters.getIndexedCount());
>> logger.debug("+++++++++++++++++++++++++++++++++++++++++++++++++"+getRequest().getPostParameters().getParameterNames());
>>        }
>>
>> }
>>
>> --
>> View this message in context: 
>> http://apache-wicket.1842946.n4.nabble.com/Not-getting-the-Post-Parameter-values-in-Iframe-wicket-Page-tp4650106p4650108.html
>> Sent from the Users forum mailing list archive at Nabble.com.
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>
>
>
> --
> thanks,
>
> Vineet Semwal
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>



-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to