Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Martin Grigorov
Hi, See http://stackoverflow.com/a/25147003 Do you know which version of Tomcat is in use behind the scenes ? Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Nov 25, 2014 at 9:01 AM, Milind m.gaw...@maxxton.com wrote: some part of web.xml as: filter

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Milind
Hi Martin, I am using tomcat-7.0.42, tested the same with tomcat-7.0.47/54/57 too still same issue happened. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket6-setResponsePage-stackoverflow-error-tp4668538p4668543.html Sent from the Users forum mailing list

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Martin Grigorov
I'd suggest to ask in Tomcat users@ mailing list. The weird cycle is in their code. https://issues.apache.org/bugzilla/show_bug.cgi?id=56339#c4 says it should have been fixed in 7.0.54. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Nov 25, 2014 at 10:29

Re: IComponentOnBeforeRenderListener and ListView

2014-11-25 Thread Martin Grigorov
Hi, On Mon, Nov 24, 2014 at 10:34 PM, mscoon msc...@gmail.com wrote: Martin, I'll try once again to explain my problem and if it's still unclear I'll make the quickstart. What you say is right, the sequence of events is as you said. My problem is that everything happens in

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Milind
Its updated at https://issues.apache.org/bugzilla/show_bug.cgi?id=57256 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket6-setResponsePage-stackoverflow-error-tp4668538p4668548.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Martin Grigorov
I guess it will be closed with message like Bugzilla is not support forum. Please use the mailing lists :-) But let's see. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Nov 25, 2014 at 12:20 PM, Milind m.gaw...@maxxton.com wrote: Its updated at

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Milind
Reported bug is closed https://issues.apache.org/bugzilla/show_bug.cgi?id=57256 Mark Thomas 2014-11-25 11:38:08 UTC You (or the application you are using) has created a wrapper that wraps itself. -- View this message in context:

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Martin Grigorov
The only way I see this to happen is if SomeHttpServletRequestWrapper calls setRequest(this). There is no such usage of javax.servlet.ServletRequestWrapper#setRequest() in wicketstuff-portlet code. So it should be in Liferay's code ... Martin Grigorov Wicket Training and Consulting

Re: IComponentOnBeforeRenderListener and ListView

2014-11-25 Thread mscoon
attachValidationErrors has nothing to do with FormErrorDecorator. It is just some code that adds validation errors to some form components. I use it because I want to show validation errors right when then form opens, and not after a submit. For instance if the user loads a record for editing,

Re: IComponentOnBeforeRenderListener and ListView

2014-11-25 Thread Martin Grigorov
OK, but isn't it possible to mark the form components as invalid with IComponentOnBeforeRenderListener too ? Just add the new IComponentOnBeforeRenderListener in the collection before FormErrorDecorator. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Nov

Re: CSS3, PIE behavior and image resources

2014-11-25 Thread souag
I know what a problem can be, if you read this: CSS3: Progressive Internet Explorer (PIE) http://basicuse.net/articles/pl/textile/html_css/css3_progressive_internet_explorer_pie . You will notice that it requires MIME-type in header without this, it won't work. I had painful experience about

Re: Problems with wicket serialization

2014-11-25 Thread souag
Did you try to set correct permissions for temp files in config? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problems-with-wicket-serialization-tp4668414p4668556.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Why doesn't Wicket seem to call Session.replaceSession automatically?

2014-11-25 Thread Thorsten Schöning
Guten Tag Martin Grigorov, am Montag, 24. November 2014 um 20:44 schrieben Sie: https://issues.apache.org/jira/browse/WICKET-5775 Thanks a lot, I didn't have the time yet to create it on my own. Mit freundlichen Grüßen, Thorsten Schöning -- Thorsten Schöning E-Mail:

Re: Could not clear select2Choice component model value.

2014-11-25 Thread Martin Grigorov
Hi Maxim, The change has been introduced in Wicket-Select2 with https://github.com/ivaynberg/wicket-select2/issues/29 I'll see how to fix it now. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Nov 12, 2014 at 12:11 PM, Martin Grigorov mgrigo...@apache.org

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Gabriel Landon
I know it's not the error you report, but did you add liferay-web-xml-enabled=false in the liferay-plugin-package.properties file. I had to do that to have portlet work with liferay 6.1 and 6.2 see : http://apache-wicket.1842946.n4.nabble.com/wicket-portlet-and-liferay-6-1-td4650001.html Also I'm

Re: Could not clear select2Choice component model value.

2014-11-25 Thread Martin Grigorov
Fixed with https://github.com/wicketstuff/core/commit/b7e5b68b858336d85958663204166bd0852b43dd Hopefully all other use cases are still covered. I just noticed that there is https://github.com/wicketstuff/core/tree/wicket-6.x/jdk-1.6-parent/select2-parent (i.e. Wicket 6.x version). It would be

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Rob Sonke
Gabriel, did you consider offering the patch to the wicketstuff project? Maybe those changes are general improvements for all of us. Thanks for sharing anyway! On Tue, Nov 25, 2014 at 7:49 PM, Gabriel Landon glan...@piti.pf wrote: I know it's not the error you report, but did you add

Re: IComponentOnBeforeRenderListener and ListView

2014-11-25 Thread mscoon
I don't want to use an IComponentOnBeforeRenderListener as it is an application wide facility whereas what I'm doing applies to a couple of pages only. But you suggestion gave me an idea. I am now using a behavior which I add to all form components in ListView#populateItem(). The behavior marks

Re: IComponentOnBeforeRenderListener and ListView

2014-11-25 Thread Martin Grigorov
On Tue, Nov 25, 2014 at 11:33 PM, mscoon msc...@gmail.com wrote: I don't want to use an IComponentOnBeforeRenderListener as it is an application wide facility whereas what I'm doing applies to a couple of pages only. But you suggestion gave me an idea. I am now using a behavior which I add

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Gabriel Landon
Well I don't known if the code I've modified is relieable enough... I've just debug what seems to be wrong for my personal usecases. Feel free to use it and improve it! For me the wicketuff-portlet code is a complete maze!! -- View this message in context:

Re: IComponentOnBeforeRenderListener and ListView

2014-11-25 Thread mscoon
On Tue, Nov 25, 2014 at 11:40 PM, Martin Grigorov mgrigo...@apache.org wrote: On Tue, Nov 25, 2014 at 11:33 PM, mscoon msc...@gmail.com wrote: I don't want to use an IComponentOnBeforeRenderListener as it is an application wide facility whereas what I'm doing applies to a couple of pages

Re: Could not clear select2Choice component model value.

2014-11-25 Thread Maxim Solodovnik
Thanks a lot! I'll backport! On Wed, Nov 26, 2014 at 1:34 AM, Martin Grigorov mgrigo...@apache.org wrote: Fixed with https://github.com/wicketstuff/core/commit/b7e5b68b858336d85958663204166bd0852b43dd Hopefully all other use cases are still covered. I just noticed that there is

Re: Wicket6 setResponsePage() stackoverflow error.

2014-11-25 Thread Milind
Hi Gabriel, yes we are already changed it to *liferay-web-xml-enabled=false* -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket6-setResponsePage-stackoverflow-error-tp4668538p4668569.html Sent from the Users forum mailing list archive at Nabble.com.