Hi,
 
I have embed/include a wicket page in a third party jsp site ( with iframe )
and  on form submit the jsp sending the values to iframe through post
method.

I need to get those values in wicket page, I have used pageparameters and
getRequest().getPostParameters().getParameterNames() but no luck.

Please can you help me on this.
 

Code : 
Third Party Jsp

<form action="http://localhost:8080/abc"; name="myform" target="my-iframe"
method="POST" >
                        <input type="text" name="name" id="text"></input>
                        <input type="hidden" name="memberId" id="memberId" 
value="1234"/>
                        <input type="hidden" name="firstName" id="firstName" 
value="ram"/>
                        <input type="hidden" name="lastName" id="lastName" 
value="babu"/>
                        <input type="hidden" name="parenttoken" 
id="parenttoken" value="123456"/>
                        <input type="submit" name="sumbit" />
</form>
 <iframe height="410" width="100%" frameBorder="1" name="my-iframe"
                                                
src="http://localhost:8081/abc";></iframe>


Kind regards
Rambabu

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Not-getting-the-Post-Parameter-values-in-Iframe-wicket-Page-tp4650106.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

Reply via email to