[Wicket-user] Problem disabling PageMaps (A. Zwaan)

2006-11-30 Thread A. Zwaan
Anyone that can help me with this? Greetings, Arjan Zwaan. Message: 5 Date: Tue, 28 Nov 2006 10:32:16 +0100 From: A. Zwaan [EMAIL PROTECTED] Subject: [Wicket-user] Problem disabling PageMaps To: wicket-user@lists.sourceforge.net Message-ID: [EMAIL PROTECTED]

Re: [Wicket-user] Problem disabling PageMaps (A. Zwaan)

2006-11-30 Thread Erik van Oosten
Hello Arjan, Please verify that you are running in deployment mode. Regards, Erik. A. Zwaan schreef: Hi all, Our web-application is getting OutOfMemoryErrors and PageMaps seem to be the cause (they seem to be writing a lot to an outputstream), I've been trying to disable

Re: [Wicket-user] How to get the Exception on the Exception page?

2006-11-30 Thread Erik van Oosten
Okay great, that works. I would not have found that myself. Now I also would like to redirect to the error page when an _Ajax_ request fails. Currently I have some javascript that triggers when the request fails, but that way the exception is lost. Thanks, Erik. Johan Compagner schreef:

Re: [Wicket-user] Timeline-component

2006-11-30 Thread Vincent Demay
James McLaughlin wrote: /me makes mental note to check out all the good work in wicket-contrib-dojo Can we have wicket-library.com http://wicket-library.com host live examples from wicket-stuff, or is it just for wicket core? This would be great, especially for the more evolved projects

Re: [Wicket-user] Hot Deploy/Undeploy Fails

2006-11-30 Thread Nathan Green
You mean this (web.xml)? servlet-classwicket.protocol.http.WicketServlet/servlet-class init-param param-nameconfiguration/param-name param-valuedeployment/param-value /init-param Nope, still does it. I've tried several variations, none have worked. On 11/30/06, Igor

[Wicket-user] cancel page load...

2006-11-30 Thread Nino Wael
Hi On one of our pages I've created at cancel button. The functionality are simple, im just doing some simple javascript that reloads the url, however it looks like wicket waits for the original request to complete before loading the new page(hence the cancel button no longer has the

Re: [Wicket-user] Hot Deploy/Undeploy Fails

2006-11-30 Thread Johan Compagner
We do load things out of those jars yes. and we try to close as much as we can. But because of some implementations (like the classloader or jar url connection) there are things that are kept open. and when that happens under windows you can't delete it. in tomcat you have settings for that i

Re: [Wicket-user] Palette add selected option

2006-11-30 Thread Nino Wael
I think I have something somewhere... As I remember you need to update the recorder component... Below is only meant as a sniplet(notice the recreate model, which now are called from the palette onchange function).. package com.sas.jobindsats.ui.palette.component; import

Re: [Wicket-user] Problem disabling PageMaps (A. Zwaan)

2006-11-30 Thread Johan Compagner
did you look at my reply i did earlier?? PageMaps don't write anything to an outputstream. Do you run your app in deployment or development mode? (in development the pages are tested for serialization) The qeustion is even with the settings you do there. Do you still really have more then one

Re: [Wicket-user] How to get the Exception on the Exception page?

2006-11-30 Thread Johan Compagner
i thought we had support for that that you could just set the response page in an ajax request and then the ajax request would redirect to that page. But i can't find support for this anymore. Matej? Eelco? johan On 11/30/06, Erik van Oosten [EMAIL PROTECTED] wrote: Okay great, that works. I

Re: [Wicket-user] How to get the Exception on the Exception page?

2006-11-30 Thread Matej Knopp
SetResponsePage should work. However, I'm not sure about failing ajax request. Meybe we catch the exception on some other place, I'm not sure. -Matej Erik van Oosten wrote: Okay great, that works. I would not have found that myself. Now I also would like to redirect to the error page when

Re: [Wicket-user] Problem disabling PageMaps (Erik van Oosten)

2006-11-30 Thread Erik van Oosten
Hi Arjan, What Wicket version are you using? In addition, you can try to identify components that keep references to objects outside the page structure. In wicket 2 this will all be serialized so you need to keep your components lean. If you use clustering this is also important in wicket 1.

Re: [Wicket-user] Palette add selected option

2006-11-30 Thread Vincent Renaville
Dear, Thanks for the respond but somebody have Already deploy the solution. I m a newbies with Wicket, so i you have a example , it will be nice :) Vincent On Thu, 2006-11-30 at 14:15 +0100, Nino Wael wrote: I think I have something somewhere... As I remember you need to update the

Re: [Wicket-user] Problem disabling PageMaps (Johan Compagner)

2006-11-30 Thread A. Zwaan
Hello Johan, I've checked every mail since I posted my question and I have double checked now, but I couldn't find your response. I do seem to be missing issue 236, the one right after my question, though. Looks like I never received that one somehow. We have it running in deployment mode,

[Wicket-user] So, we reflect - what was your favorite Big Show match?

2006-11-30 Thread recognizably
I asked for a map of it and basically was denied. I am looking forward to working with them. This one can cook a phone. The TSA sketch was okay but lacked an effective climax. BBC News provides trusted World and UK news as well as local and regional perspectives. One of the coolest things ever

[Wicket-user] Wicket CMS

2006-11-30 Thread Ted Roeloffzen
Hi all, As some of you may know, we're currently working on a Wicket CMS. We have begun with implementing the code and very soon we'll put what we have so far on wicket-stuff. We still hope that there are some among you who are willing to help. If so, don't hesitate to ask. Ted Rick

Re: [Wicket-user] Timeline-component

2006-11-30 Thread Eelco Hillenius
Cool! Eelco For the moment there isn't any live demo. But you can test It on my personal machine : http://www.demay-fr.net:8080/Wicket-start/app It could be quitte slow... it is just my own server... it is not a professionnal one - sorry;)

Re: [Wicket-user] Wicket CMS

2006-11-30 Thread Eelco Hillenius
I think that would work best if you start adding your code to a project asap, and then start discussions on development/ usability aspects based on that. In other words: looking forward to see some code :) Eelco On 11/30/06, Ted Roeloffzen [EMAIL PROTECTED] wrote: Hi all, As some of you may

Re: [Wicket-user] Hot Deploy/Undeploy Fails

2006-11-30 Thread Nathan Green
That would be difficult, considering the problem occurs even if I don't load any pages (I canot deploy and then immediately undeploy). I can look through the Wicket source, but not right now: I've got too much work to do. On 11/30/06, Eelco Hillenius [EMAIL PROTECTED] wrote: If Nathan could

Re: [Wicket-user] How to get the Exception on the Exception page?

2006-11-30 Thread Erik van Oosten
Interesting. I'll look into the code tomorrow. Any hints on where at which point I can start looking? BTW, I am using the 1.2.x trunk from a couple of days ago. Erik. Matej Knopp schreef: SetResponsePage should work. However, I'm not sure about failing ajax request. Meybe we catch the

[Wicket-user] Forum congratulations...

2006-11-30 Thread Erik van Oosten
Congratulations, this mailing list is the most active java web framework forum on Nabble! http://day-to-day-stuff.blogspot.com/2006/11/wicket-most-active-java-web-framework.html - Take Surveys. Earn Cash. Influence the

Re: [Wicket-user] Hot Deploy/Undeploy Fails

2006-11-30 Thread Eelco Hillenius
Nathan, could you try the patch that is outlined here: http://www.nabble.com/Re%3A--Wicket-developwicket-Patches-1562130---File-descriptor%09leak-in-URLResourceStream-tf2710839.html#a7557516 and see if that fixes the problem? Or you think that is unrelated Johan? Eelco On 11/30/06, Igor

Re: [Wicket-user] Forum congratulations...

2006-11-30 Thread Francis Amanfo
And do we interpret this as good news or bad news. To play the devils advocate here, this might also be interpreted as a framework with bad documentation and hard to use. So people often have o consult the mailing list to pose questions. What do you think? On 11/30/06, Erik van Oosten [EMAIL

Re: [Wicket-user] Forum congratulations...

2006-11-30 Thread Igor Vaynberg
while this might make sense theoretically, practically it is not the case check out the stats for struts user list http://dir.gmane.org/gmane.comp.jakarta.struts.user and compare to wicket user list http://dir.gmane.org/gmane.comp.java.wicket.user struts user list has more traffic, and it is

[Wicket-user] Changing class attribute of a HTML-tag

2006-11-30 Thread Ted Roeloffzen
Hi all, Is it possible to change the class attribute of a tag at run-time using Wicket? I need multiple instances of the same component, but with different styles. Ted - Take Surveys. Earn Cash. Influence the Future of IT

Re: [Wicket-user] Forum congratulations...

2006-11-30 Thread Eelco Hillenius
On 11/30/06, Erik van Oosten [EMAIL PROTECTED] wrote: Considering that Wicket's documentation is ok (actually quite good compared to many other products), I would like to interpreted it as good news :) Documentation can always be better and is always an issue for coders. But the WIKI helped a

Re: [Wicket-user] Forum congratulations...

2006-11-30 Thread Igor Vaynberg
sure, but that doesnt mean that struts is buggy or is hard to use which is what was implied. -igor On 11/30/06, Eelco Hillenius [EMAIL PROTECTED] wrote: I don't know. I tend to agree with Francis in that it can be explained in several ways. Even with Struts you could say it attracts more

Re: [Wicket-user] brave

2006-11-30 Thread Scott Swank
Hey, I figured out why the nabble list is so active. On 11/30/06, Richard M. Trevino [EMAIL PROTECTED] wrote: [image: harlot] Taking a longer term, bigger picture perspective, however, should be considered. Inject some snap back into your cycling legs so you can take advantage of your form.

Re: [Wicket-user] Hot Deploy/Undeploy Fails

2006-11-30 Thread Johan Compagner
`yes i think it is the initializers thing that does this.. Will see if we can improve that a bit more somehow... johan On 11/30/06, Igor Vaynberg [EMAIL PROTECTED] wrote: interesting. then its probably one of two things initializer reading wicket.properties file, or some thread we spin off

Re: [Wicket-user] brave

2006-11-30 Thread Eelco Hillenius
Yeah that sucks. Apache has much better filtering, so once we get the user list over, that stuff will be paste tense. Eelco On 11/30/06, Scott Swank [EMAIL PROTECTED] wrote: Hey, I figured out why the nabble list is so active.

Re: [Wicket-user] brave

2006-11-30 Thread Scott Swank
;) On 11/30/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Yeah that sucks. Apache has much better filtering, so once we get the user list over, that stuff will be paste tense. Eelco On 11/30/06, Scott Swank [EMAIL PROTECTED] wrote: Hey, I figured out why the nabble list is so active.

Re: [Wicket-user] Problem disabling PageMaps (Johan Compagner)

2006-11-30 Thread karthik Guru
I remember, in Wicket 1.2 it used to work out of a log4j setting which was changed to Application settings in the subsequent Wicket releases. Are you running Wicket 1.2 by any chance? If you are running Wicket 1.2 and have something like this -