You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Chris Fierer <cf...@medfusion.net> on 2007/10/26 17:06:17 UTC

Retrieving Post Parameters with PageParameters

I am using an IFrame to call into a webpage with a form.  When, that form is
submitted, it posts back to my site.  It sends the data via a POST Request. 
I was using the PageParameters object in my Page Constructor, but it never
gets hit (I was using breakpoints).

I have dug around the forum and tried various mount options, but still
haven't had much luck.  

All GET Parameters work fine, it's just the POST Parameters.

Could anyone help me out on sharing how to pull POST Parameters from the
PageParameters object?

Thanks,

Chris
-- 
View this message in context: http://www.nabble.com/Retrieving-Post-Parameters-with-PageParameters-tf4697756.html#a13428705
Sent from the Wicket - User mailing list archive at Nabble.com.


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


Re: Retrieving Post Parameters with PageParameters

Posted by Johan Compagner <jc...@gmail.com>.
see examples:

http://wicketstuff.org/wicket13/stateless/public/StatelessPage/


On 10/26/07, Andrew Lombardi <an...@mysticcoders.com> wrote:
>
> Johan, is there any code examples out there for using stateless forms?
>
> On Oct 26, 2007, at 1:01 PM, Johan Compagner wrote:
>
> > what kind of form do you use? Cant you use a stateless form on a
> > stateless
> > page?
> > then you dont have to worry about anything like conversion.
> >
> > then everything is just as a normal statefull form.
> >
> > johan
> >
> >
> >
> > On 10/26/07, Chris Fierer <cf...@medfusion.net> wrote:
> >>
> >>
> >> I am using an IFrame to call into a webpage with a form.  When,
> >> that form
> >> is
> >> submitted, it posts back to my site.  It sends the data via a POST
> >> Request.
> >> I was using the PageParameters object in my Page Constructor, but
> >> it never
> >> gets hit (I was using breakpoints).
> >>
> >> I have dug around the forum and tried various mount options, but
> >> still
> >> haven't had much luck.
> >>
> >> All GET Parameters work fine, it's just the POST Parameters.
> >>
> >> Could anyone help me out on sharing how to pull POST Parameters
> >> from the
> >> PageParameters object?
> >>
> >> Thanks,
> >>
> >> Chris
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Retrieving-Post-Parameters-with-
> >> PageParameters-tf4697756.html#a13428705
> >> Sent from the Wicket - User mailing list archive at Nabble.com.
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> >> For additional commands, e-mail: users-help@wicket.apache.org
> >>
> >>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: Retrieving Post Parameters with PageParameters

Posted by Andrew Lombardi <an...@mysticcoders.com>.
Johan, is there any code examples out there for using stateless forms?

On Oct 26, 2007, at 1:01 PM, Johan Compagner wrote:

> what kind of form do you use? Cant you use a stateless form on a  
> stateless
> page?
> then you dont have to worry about anything like conversion.
>
> then everything is just as a normal statefull form.
>
> johan
>
>
>
> On 10/26/07, Chris Fierer <cf...@medfusion.net> wrote:
>>
>>
>> I am using an IFrame to call into a webpage with a form.  When,  
>> that form
>> is
>> submitted, it posts back to my site.  It sends the data via a POST
>> Request.
>> I was using the PageParameters object in my Page Constructor, but  
>> it never
>> gets hit (I was using breakpoints).
>>
>> I have dug around the forum and tried various mount options, but  
>> still
>> haven't had much luck.
>>
>> All GET Parameters work fine, it's just the POST Parameters.
>>
>> Could anyone help me out on sharing how to pull POST Parameters  
>> from the
>> PageParameters object?
>>
>> Thanks,
>>
>> Chris
>> --
>> View this message in context:
>> http://www.nabble.com/Retrieving-Post-Parameters-with- 
>> PageParameters-tf4697756.html#a13428705
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>> For additional commands, e-mail: users-help@wicket.apache.org
>>
>>


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


Re: Retrieving Post Parameters with PageParameters

Posted by Johan Compagner <jc...@gmail.com>.
what kind of form do you use? Cant you use a stateless form on a stateless
page?
then you dont have to worry about anything like conversion.

then everything is just as a normal statefull form.

johan



On 10/26/07, Chris Fierer <cf...@medfusion.net> wrote:
>
>
> I am using an IFrame to call into a webpage with a form.  When, that form
> is
> submitted, it posts back to my site.  It sends the data via a POST
> Request.
> I was using the PageParameters object in my Page Constructor, but it never
> gets hit (I was using breakpoints).
>
> I have dug around the forum and tried various mount options, but still
> haven't had much luck.
>
> All GET Parameters work fine, it's just the POST Parameters.
>
> Could anyone help me out on sharing how to pull POST Parameters from the
> PageParameters object?
>
> Thanks,
>
> Chris
> --
> View this message in context:
> http://www.nabble.com/Retrieving-Post-Parameters-with-PageParameters-tf4697756.html#a13428705
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: Retrieving Post Parameters with PageParameters

Posted by James Law <jl...@umich.edu>.
This is a bit of a guess on my part, but since wicket does a redirect 
after a post (feature), could that be the issue?

--James
> I am using an IFrame to call into a webpage with a form.  When, that form is
> submitted, it posts back to my site.  It sends the data via a POST Request. 
> I was using the PageParameters object in my Page Constructor, but it never
> gets hit (I was using breakpoints).
>
> I have dug around the forum and tried various mount options, but still
> haven't had much luck.  
>
> All GET Parameters work fine, it's just the POST Parameters.
>
> Could anyone help me out on sharing how to pull POST Parameters from the
> PageParameters object?
>
> Thanks,
>
> Chris
>   


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


Re: Retrieving Post Parameters with PageParameters

Posted by Chris Fierer <cf...@medfusion.net>.
Thanks for all the replies.  I found out that the issue was related to my
Apache settings and the names of my Inputs that I was passing over to the
IFrame.

No Wicket Issues here.

- Chris



Chris Fierer wrote:
> 
> I am using an IFrame to call into a webpage with a form.  When, that form
> is submitted, it posts back to my site.  It sends the data via a POST
> Request.  I was using the PageParameters object in my Page Constructor,
> but it never gets hit (I was using breakpoints).
> 
> I have dug around the forum and tried various mount options, but still
> haven't had much luck.  
> 
> All GET Parameters work fine, it's just the POST Parameters.
> 
> Could anyone help me out on sharing how to pull POST Parameters from the
> PageParameters object?
> 
> Thanks,
> 
> Chris
> 

-- 
View this message in context: http://www.nabble.com/Retrieving-Post-Parameters-with-PageParameters-tf4697756.html#a13537711
Sent from the Wicket - User mailing list archive at Nabble.com.


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