Re: Redirects to external URLs do not work as expected when cookies are forbidden

2013-04-04 Thread Oliver Zemann
ter than 302 > in your case ? > > > > On Thu, Apr 4, 2013 at 4:35 PM, Oliver Zemann >wrote: > > > But the warning is thrown by wicket itself that 303 is not allowed. So i > am > > very sure this is a wicket problem. I use jetty 9 as web server. So the > > prob

Re: Redirects to external URLs do not work as expected when cookies are forbidden

2013-04-04 Thread Oliver Zemann
container - to set the header, and by the browser - to read the > value and interpret it. > > > On Thu, Apr 4, 2013 at 10:04 AM, Oliver Zemann >wrote: > > > Hi > > > > I created a wicket quickstart: > > https://github.com/olze/WicketRedirect.git > >

Redirects to external URLs do not work as expected when cookies are forbidden

2013-04-04 Thread Oliver Zemann
Hi I created a wicket quickstart: https://github.com/olze/WicketRedirect.git The SC_SEE_OTHER which is defined in the RFC for HTTP 1.1 (iirc Jan. 1997) was explaining that this should work (sending a post to the application which uses GET to get the page from the redirected URL) is not working, i

Re: Ajax based panel replacement

2012-11-25 Thread Oliver Zemann
lete timer fails with "The behavior's component (a Form which is no more connected to the Page) cannot find its page. This is a plain error in the application. On Sun, Nov 25, 2012 at 6:34 PM, Oliver Zemann **wrote: As suggested i created the JIRA issue https://issues.apache.org/** jira

Re: Ajax based panel replacement

2012-11-25 Thread Oliver Zemann
to wicket. If there is a better way to do that, please feel free to give me hints :) I see no other way of doing what i want without using ajax that way (directly in the panel instead of the base page). On Sun, Nov 25, 2012 at 6:34 PM, Oliver Zemann wrote: As suggested i created the J

Re: Ajax based panel replacement

2012-11-25 Thread Oliver Zemann
tly is the problem. Sven On 11/25/2012 01:13 AM, Oliver Zemann wrote: Unfortunately this is not a solution as i have about 30 different panels. And i guess at least 10 of them should later use JS. With the approach you suggested i would have to check which panel should be displayed and lo

Re: Ajax based panel replacement

2012-11-24 Thread Oliver Zemann
lTwo two = new PanelTwo("panel"); wmc.addOrReplace(two); target.add(wmc); stop(target); } }); add(wmc); wmc.add(new PanelOne("panel")); This way you won't have to pass 'wmc' to PanelOne any longer.

Re: Ajax based panel replacement

2012-11-24 Thread Oliver Zemann
? Sven On 11/24/2012 08:22 PM, Oliver Zemann wrote: Hi, i created a small wicket application to show my problem: https://github.com/olze/WicketPanelReplace The first panel gets displayed, after a few seconds it should be replaced by the second panel. Is there any way to achieve this behavior

Ajax based panel replacement

2012-11-24 Thread Oliver Zemann
Hi, i created a small wicket application to show my problem: https://github.com/olze/WicketPanelReplace The first panel gets displayed, after a few seconds it should be replaced by the second panel. Is there any way to achieve this behavior with that kind of architecture? If not, how should