i remember there was a discussion about this...embedding wicket pages in
iframes. and i believe the deal was that IE doesnt pass the cookies to the
iframe so it cannot find the session on a submit. you have to enable url
rewriting i guess.

-igor


On 2/10/07, Carfield Yim <[EMAIL PROTECTED]> wrote:

On 2/10/07, Matej Knopp <[EMAIL PROTECTED]> wrote:
> Hi.
>
> The major problem is (amongst other problems) that you have page from
> another host in modal window. Generally, this is going to cause some
> trouble, because it's cross site scripting. The browsers are trying to
> prevent that.
>
I have to do that because I need to read a file of that host...

> Another thing is that I don't understand how you can submit wicket form
> to another host. Because to submit form in wicket (unless the form is
> stateless, which is possibility only 1.x or 2.0) you need first to
> create page instance, and then use the instance number in the post url,
> as well as the FormSubmitListener listener and form component path.
>
I guess you think what I do is something like

<form action="http://host2/app/page"; method=post>

But I am not, in fact, I just use an iframe for now:

<iframe src="http://host2/app/page";></iframe>

It ok to display "page" , but after I submit at "page", it show page
expire, and only IE have this problem

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to