Re: Retrieving Post Parameters with PageParameters

2007-11-01 Thread Chris Fierer

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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Retrieving Post Parameters with PageParameters

2007-10-26 Thread Johan Compagner
see examples:

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


On 10/26/07, Andrew Lombardi <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]> 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: [EMAIL PROTECTED]
> >> For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: Retrieving Post Parameters with PageParameters

2007-10-26 Thread Andrew Lombardi

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 <[EMAIL PROTECTED]> 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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Retrieving Post Parameters with PageParameters

2007-10-26 Thread Johan Compagner
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 <[EMAIL PROTECTED]> 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: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: Retrieving Post Parameters with PageParameters

2007-10-26 Thread James Law
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Retrieving Post Parameters with PageParameters

2007-10-26 Thread Chris Fierer

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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]