Re: Question With Detachable Models

2007-09-14 Thread Jonathan Locke
I should also add this: although you can do what you will in Wicket, it is generally better to use models consistently and reload your objects from the DB (this isn't so bad in practice as a lot of the time reloads will just hit ehcache or whatever you're using to cache query results and hook the

Re: Question With Detachable Models

2007-09-14 Thread Jan Kriesten
> transient fields are never stored in a session at all. sorry, i meant they are never serialized at all. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Question With Detachable Models

2007-09-14 Thread Jan Kriesten
hi, > Are my objects still being stored in the session when I use this kind of > query. transient fields are never stored in a session at all. but since you have neither an id nor a logic to load your object to be restored, you certainly will get a NPE when the object is about to be restored.

Re: Question With Detachable Models

2007-09-14 Thread Jonathan Locke
Your QueryDetachableModel will break under clustering. The transient "instance" Object will become null when the container deserializes it and your load method will be unable to reload the object. If you're using these QueryDetachableModels, yes, the object instance is being stored in your se

Question With Detachable Models

2007-09-14 Thread carloc
Hi, I would like to ask this. Are my objects still being stored in the session when I use this kind of query. I don't requery the objects using a detachable model. package com.ccti.web.query; import org.apache.wicket.model.LoadableDetachableModel; public class QueryDetachableModel extends Loa

MockWebApplication.generateLastRenderedPage(WebRequestCycle cycle)

2007-09-14 Thread Craig Lenzen
I'm looking at the following block of code in the MockWebApplication within the method that is listed in the subject of this post; else if (target instanceof IBookmarkablePageRequestTarget) {

Re: Too many open Files

2007-09-14 Thread John Ray
> Any Idea what could cause this? There were only 15 users in the test. Is this an automated test that hammers the server? I ran into a similar situation on Linux. The problem is that when a TCP connection is closed the socket on one side ends up in the TIME_WAIT state. This is just in case a pa

Re: Wicket Accessibility

2007-09-14 Thread Eelco Hillenius
On 9/14/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > if this can be done in a light weight manner i would be all for merging this > into the core component set +1 Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Re: Wicket Accessibility

2007-09-14 Thread Igor Vaynberg
if this can be done in a light weight manner i would be all for merging this into the core component set -igor On 9/14/07, James Renfro <[EMAIL PROTECTED]> wrote: > > Is there already an effort out there to make Wicket more accessible for > people with disabilities? It seems like the framework i

Wicket Accessibility

2007-09-14 Thread James Renfro
Is there already an effort out there to make Wicket more accessible for people with disabilities? It seems like the framework is well-suited to this -- for instance, adding ARIA (http://www.w3.org/TR/aria-roadmap/) attributes to markup tags, setting tabindex numbers intelligently and transparen

Re: FormComponentPanel and CompoundPropertyModel

2007-09-14 Thread Igor Vaynberg
initialize them lazily then add(new DropDownChoice("id", new PropertyModel(this, "model")); <== will evaluate at runtime so if cmp is used it will work. -igor On 9/14/07, Joe Toth <[EMAIL PROTECTED]> wrote: > > I have a FormComponentPanel, I want it to get and set a property from > the Form it

FormComponentPanel and CompoundPropertyModel

2007-09-14 Thread Joe Toth
I have a FormComponentPanel, I want it to get and set a property from the Form it belongs to who's model is a CompoundPropertyModel. When the FormComponentPanel is loaded, how can I get the backing model's object whether someone passes in a Model or it should get it from the parent? If my FormCo

Re: Acegi (Spring Security)

2007-09-14 Thread John Krasnay
On Fri, Sep 14, 2007 at 04:05:47PM +0200, Ian Godman wrote: > Does anyone have any experience with Wicket/Acegi or know how Wicket deals > with Acegi integration? I need ideas of where to look. > > Ian Can you post the Spring configuration for your Acegi beans? jk -

Re: Wicket visibility and Panel positioning

2007-09-14 Thread Matej Knopp
The panel is not rendered when you call setVisible(false). So the subsequent ajax update has no dom element to replace. You can call panel.setOutputMarkupPlaceholderTag(true) to work around it. -Matej On 9/14/07, Kirk Israel <[EMAIL PROTECTED]> wrote: > I looked over a lot of the usual examples b

Wicket visibility and Panel positioning

2007-09-14 Thread Kirk Israel
I looked over a lot of the usual examples but didn't quite find what I was looking for... I also tried looking for more information inside of Pro Wicket. As always, pointers to useful examples and documentation appreciated. My overall task is to make a dropdown menu, one that appears under a graph

Re: More extend points

2007-09-14 Thread Nathan Hamblen
fero wrote: Hi, is it possible to have more than one on one page. I use a convention of adding components at the extension point from an overridable method. The base class just returns an empty component; subclasess return a Panel. I don't know if that's more templates than you want, but ke

RE: Wicket vs. JSF/Seam (The Dead Debate)

2007-09-14 Thread William Hoover
Thank you for your input Scott. I have noticed the same trend in my encounters with JSF. -Original Message- From: Scott Swank [mailto:[EMAIL PROTECTED] Sent: Friday, September 14, 2007 2:04 PM To: users@wicket.apache.org Subject: Re: Wicket vs. JSF/Seam (The Dead Debate) When we chose b

wicket doesn't show its debugging?

2007-09-14 Thread Potje rode kool
I want to use xhtml files instead of html files so I overwrite the method WebPage#getMarkupType to return "xhtml" to make it work. But got an MarkupNotFoundException which sugested to turn on debugging for org.apache.wicket.util.resource but didn't got any debugging about the filenames that were tr

Re: Bug in IndexedParamUrlCodingStrategy 1.3 Beta3

2007-09-14 Thread Chris Lintz
yeah sorry i missed that last line in your post or I wouldnt have submitted. I guess better 2 Jira's for it than none :) Sebastiaan van Erk wrote: > > Maybe WICKET-950 should be marked as a duplicate of this one then. > > Regards, > Sebastiaan > > Chris Lintz wrote: >> I Have submitted the fo

Re: Wicket vs. JSF/Seam (The Dead Debate)

2007-09-14 Thread Scott Swank
When we chose between JSF and Wicket our conclusions were: 1. JSF is more compact because tags involve fewer lines of code than Java components. 2. Wicket is much easier to extend than JSF. An example is in order. We sell a customer a hotel room reservation & tickets to two different shows. We

Re: Bug in IndexedParamUrlCodingStrategy 1.3 Beta3

2007-09-14 Thread Sebastiaan van Erk
Maybe WICKET-950 should be marked as a duplicate of this one then. Regards, Sebastiaan Chris Lintz wrote: I Have submitted the following Jira on this issue: http://issues.apache.org/jira/browse/WICKET-976 Chris Lintz wrote: Actually I just realized what causes this but have no idea how to ge

Re: wicket datetime / YUI calendar

2007-09-14 Thread Gerolf Seitz
yeah, patches are always welcome (and increases the chances for the issue to be processed, although no guarantee for that ;) ) gerolf On 9/14/07, Nino.Martinez <[EMAIL PROTECTED]> wrote: > > > Hi Gerolf > > It should be pretty easy to implement right? > > Should I make a patch if I can? > > reg

Re: wicket datetime / YUI calendar

2007-09-14 Thread Nino.Martinez
Hi Gerolf It should be pretty easy to implement right? Should I make a patch if I can? regards Nino Gerolf Seitz wrote: > > from the top of my head i'd say it's not yet possible. > yould you please file a RFE? thanks. > > gerolf > > On 9/14/07, Nino.Martinez <[EMAIL PROTECTED]> wrote: >>

Re: wicket datetime / YUI calendar

2007-09-14 Thread Gerolf Seitz
from the top of my head i'd say it's not yet possible. yould you please file a RFE? thanks. gerolf On 9/14/07, Nino.Martinez <[EMAIL PROTECTED]> wrote: > > > Hi > > Im trying to setup the calendar to: > > Not being a popup > Being multipage (2 pages) > > Like this: > http://developer.yahoo.com/

Re: NotSerializableException for SLF4JLocationAwareLog with Wicket 1.2.6

2007-09-14 Thread Eelco Hillenius
> or transient... That will fix the exception, but will throw null pointers when you use the back button (at least with the SLCSS/ in a cluster). Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: Copenhagen wicket users meeting?

2007-09-14 Thread Nino.Martinez
Me too, wanted to add the meetup to the page. But was too darn busy upgrading from 1.2.6 to 1.3:) Frank Bille-2 wrote: > > I have added myself to the meetup list on the wiki. > > http://cwiki.apache.org/WICKET/community-meetups.html > > Frank > > On 9/13/07, Flemming Boller <[EMAIL PROTECTED]

Re: NotSerializableException for SLF4JLocationAwareLog with Wicket 1.2.6

2007-09-14 Thread Nino.Martinez
or transient... -Nino Eelco Hillenius wrote: > > On 9/13/07, mraible <[EMAIL PROTECTED]> wrote: >> >> I noticed the following in my logs today when using Wicket 1.2.6. Is this >> a >> known issue? > > That happens when you include your loggers as members. Unfortunately, > they are not serial

Re: More extend points

2007-09-14 Thread Nino.Martinez
Hehe but the answer to the wicket:child was that you cannot have more than one, this has been on the list before... Nino.Martinez wrote: > > You could have a abstract class which had a listview which iterate over > panels and added the form, you could then deliver the model for the > listview in

RE: Wicket vs. JSF/Seam (The Dead Debate)

2007-09-14 Thread William Hoover
Eelco, I appreciate your input- very objective answer! -Original Message- From: Eelco Hillenius [mailto:[EMAIL PROTECTED] Sent: Friday, September 14, 2007 12:32 PM To: users@wicket.apache.org Subject: Re: Wicket vs. JSF/Seam (The Dead Debate) On 9/14/07, William Hoover <[EMAIL PROTECTED

Re: More extend points

2007-09-14 Thread Nino.Martinez
You could have a abstract class which had a listview which iterate over panels and added the form, you could then deliver the model for the listview in the implementation(or just in the constructor I guess), that way you could add more panels by doing so. Also forms do not need to have their own m

wicket datetime / YUI calendar

2007-09-14 Thread Nino.Martinez
Hi Im trying to setup the calendar to: Not being a popup Being multipage (2 pages) Like this: http://developer.yahoo.com/yui/examples/calendar/calgrp.html Im having sometrouble doing this, I am overiding the configure and the parameters are being passed out to the JS. But it's not working, I g

Re: NotSerializableException for SLF4JLocationAwareLog with Wicket 1.2.6

2007-09-14 Thread Eelco Hillenius
> Your framework review is spot on about a very helpful community. Not sure > Eelco or Igor ever sleep. Not sure either ;-) But many others in the team and some users work just as hard on supporting Wicket! Eelco - To unsubscrib

Re: Wicket vs. JSF/Seam (The Dead Debate)

2007-09-14 Thread Eelco Hillenius
On 9/14/07, William Hoover <[EMAIL PROTECTED]> wrote: > Our company is in the process of evaluating the feasibility in transitioning > our UI framework to Wicket. In doing so, I stumbled upon this article > http://ptrthomas.wordpress.com/2007/05/14/a-wicket-user-tries-jsf/ that does > a nice job

Re: Wicket vs. JSF/Seam (The Dead Debate)

2007-09-14 Thread Igor Vaynberg
which part is that exactly? im not that familiar with it. -igor On 9/14/07, William Hoover <[EMAIL PROTECTED]> wrote: > > ...to be "politically" correct, "Application Framework", but I'm referring > to the portion of the framework that addresses the UI. > > -Original Message- > From: Igo

RE: Wicket vs. JSF/Seam (The Dead Debate)

2007-09-14 Thread William Hoover
...to be "politically" correct, "Application Framework", but I'm referring to the portion of the framework that addresses the UI. -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: Friday, September 14, 2007 12:22 PM To: users@wicket.apache.org Subject: Re: Wicket vs.

Re: Bug in IndexedParamUrlCodingStrategy 1.3 Beta3

2007-09-14 Thread Igor Vaynberg
thanks -igor On 9/14/07, Chris Lintz <[EMAIL PROTECTED]> wrote: > > > I Have submitted the following Jira on this issue: > http://issues.apache.org/jira/browse/WICKET-976 > > > Chris Lintz wrote: > > > > Actually I just realized what causes this but have no idea how to get > past > > it. The Inv

Re: Wicket vs. JSF/Seam (The Dead Debate)

2007-09-14 Thread Igor Vaynberg
I didnt know Seam was a UI framework... -Igor On 9/14/07, William Hoover <[EMAIL PROTECTED]> wrote: > > Our company is in the process of evaluating the feasibility in > transitioning our UI framework to Wicket. In doing so, I stumbled upon this > article > http://ptrthomas.wordpress.com/2007/05/

Re: Bug in IndexedParamUrlCodingStrategy 1.3 Beta3

2007-09-14 Thread Chris Lintz
I Have submitted the following Jira on this issue: http://issues.apache.org/jira/browse/WICKET-976 Chris Lintz wrote: > > Actually I just realized what causes this but have no idea how to get past > it. The InviteAcceptacePage has a Panel within another Panel. The nested > Panel contains a sim

Wicket vs. JSF/Seam (The Dead Debate)

2007-09-14 Thread William Hoover
Our company is in the process of evaluating the feasibility in transitioning our UI framework to Wicket. In doing so, I stumbled upon this article http://ptrthomas.wordpress.com/2007/05/14/a-wicket-user-tries-jsf/ that does a nice job of composing a simple side-by-side comparison of JSF and Wicke

Re: ImageButton vs Image and SharedResources

2007-09-14 Thread Doug Leeper
Martijn, I didn't mean to infer that you "wouldn't accept the RFE". Sorry about the confusion. I did create an RFE (WICKET-975) and attached the patch. I hope I followed the guidelines. It was fairly easy to adjust as I followed the Image behaviors for the resource reference. BTW...I didn't

Re: More extend points

2007-09-14 Thread Carlos Pita
...also, if you need multiple markup extension points for the same component, fragments will give you the ultimate flexibility, although at the cost of some (little) added complexity. I'll use them only if the other approaches are inappropriate. Regards, Carlos On 9/14/07, Carlos Pita <[EMAIL PRO

Re: More extend points

2007-09-14 Thread Carlos Pita
You can use border/body in a similar way than child/extend. Also, if the form incarnations haven't a lot of common markup between them, you can use the form as the webmarkupcontainer it is and put its logic in one place but the markup everywhere the form is. Regards, Carlos On 9/14/07, fero <[EM

Re: Palette header

2007-09-14 Thread fero
Thanks Gerolf! By the way, is somewhere the list of all keys for components? Gerolf Seitz wrote: > > you can either provide localized strings for the keys "palette.selected" > and > "palette.available" (preferred), > or override the methods newAvailableHeader/newSelectedHeader. > > gerol

More extend points

2007-09-14 Thread fero
Hi, is it possible to have more than one on one page. I want to make an universal page with form. This form has some common features, but I want to extend it. I want to extend the page as well (to put some panels under the form) but not always. I don't want to code a Form as a Panel and extend th

Re: Too many open Files

2007-09-14 Thread Sebastiaan van Erk
Hi, It does look to me like it could be an issue in the wicket-contrib-tinymce part, probably as a result of the bug in the JDK jar file handling. Btw, how are you deploying? In an war file? Does it get expanded automatically? (if not, you could try expanding it to solve the problem). Othe

Re: Too many open Files

2007-09-14 Thread Benjamin Ernst
Hi, i didn't truncate the list. but this was just with one user (me). But I did find out one new thing: when I load the page with the TinyMCE-textarea in internet explorer 6 the lsof goes up by 130. when I load the same page with firefox there is no noticeable change in the lsof (actually it goe

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Iulian Costan
there are two ways to use tinymce: 1) TinyMCEPanel - does add static tinymce capabilities to the page/textarea 2) TinyMCEBehaviour - it is a try to make tinymce/ajax load/work together, but it seems that tinymce library is not ajax ready (if you look at how they lazy-load JS files in background you

Acegi (Spring Security)

2007-09-14 Thread Ian Godman
Hi I am have a bit of a problem with Wicket and Acegi. I am not getting an exception so there is no trace. What is happening is that once logged in the Authentication is sometimes not set. I get it as follows: AuthenticationToken tkn = SecurityContextHolder.getContext().getAuthentication() ;

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Marieke Vandamme
Well ... it didn't. And the strangest thing is that when working with the previous CVS sources from tinymce, it does.. Can it have something to do with those changes for internet explorer or ajax? I can go back to the previous release, but then internet explorer doesn't work... Marieke Vandamme

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Marieke Vandamme
I did some more 'research' on this, and this is what i came up with : http://trac.dojotoolkit.org/ticket/233 I'm using a dojodatepicker on the same page of my tinymcepanel. I haven't checked if the position of the js-includes will solve my problem, but i hope so.. Iulian Costan wrote: > > my gu

Re: Too many open Files

2007-09-14 Thread Sebastiaan van Erk
Hi, I don't know if those jars should be open multiple times (unless you do fancy stuff with classloaders maybe), so that may be a wicket issue (or an issue of one of the extensions you use)... I know enough about wicket yet to answer that question. (In my first real deployed webapp, which I

Re: NotSerializableException for SLF4JLocationAwareLog with Wicket 1.2.6

2007-09-14 Thread Sam Hough
That is a shame. Our web developer/HTML monkey seems quite happy. The Wicket guys have really gone the full monty in not having any scripting. IMHO this is a good thing. As a GWT fan I'd go further and have fewer HTML chunks :) I'm still a bit worried about Ajax requests be single threaded per Pa

Re: ImageButton vs Image and SharedResources

2007-09-14 Thread Martijn Dashorst
On 9/14/07, Doug Leeper <[EMAIL PROTECTED]> wrote: > Thanks...I will file an RFE. > > However, given that the probability that this won't be accepted...how should I didn't say we wouldn't accept your RFE, it was a remark in general. It never hurts to file a RFE, just don't expect us to honor every

Re: ImageButton vs Image and SharedResources

2007-09-14 Thread Doug Leeper
Thanks...I will file an RFE. However, given that the probability that this won't be accepted...how should I proceed to have a Link submit a Form? -- View this message in context: http://www.nabble.com/ImageButton-vs-Image-and-SharedResources-tf4442320.html#a12674987 Sent from the Wicket - User

Re: NotSerializableException for SLF4JLocationAwareLog with Wicket 1.2.6

2007-09-14 Thread mraible
I'm using it with pleasure. ;-) I really like Wicket and almost used it on my last project. Unfortunately, it's lack of conditionals in templates was a show stopper for the web developers on the project. Also, the inability to call methods with arguments (from templates) was an issue. I'm sure w

Re: ImageButton vs Image and SharedResources

2007-09-14 Thread Martijn Dashorst
On 9/14/07, Doug Leeper <[EMAIL PROTECTED]> wrote: > Why doesn't the ImageButton follow the same behavior as Image when utilizing > Resources. With Image I have the ability to add a SharedResource with a > ValueMap. The ImageButton only allows me to add a Resource at construction > with no Values

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Iulian Costan
my guess is that you load tinymce using ajax, where tinymce area is placed in a panel that is loaded dynamically. if the above is true then there (TinymceBehaviour constructor) is a boolean parameter called 'ajax' that you have to set to true. /iulian On 9/14/07, Marieke Vandamme <[EMAIL PROTECTE

ImageButton vs Image and SharedResources

2007-09-14 Thread Doug Leeper
Why doesn't the ImageButton follow the same behavior as Image when utilizing Resources. With Image I have the ability to add a SharedResource with a ValueMap. The ImageButton only allows me to add a Resource at construction with no Values. Was this intended or should I file a request for enhanc

Re: Copenhagen wicket users meeting?

2007-09-14 Thread Frank Bille
I have added myself to the meetup list on the wiki. http://cwiki.apache.org/WICKET/community-meetups.html Frank On 9/13/07, Flemming Boller <[EMAIL PROTECTED]> wrote: > > Hi Nino > > Yes count me in also. > > /Flemming Boller > > On 9/13/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Benjamin Ernst
Hi i don't get this error in firefox. And I configured TinyMCE just like in the examples. Benjamin 2007/9/14, Marieke Vandamme <[EMAIL PROTECTED]>: > > > Hello, > > I had the same problem with tinymce in internet explorer. I was glad to > read > this thread and downloaded the latest sources from

Re: Too many open Files

2007-09-14 Thread Benjamin Ernst
We did also get this Error: 2007-09-13 19:02:49,186 ERROR [FilePageSavingThread-MainApplication] org.apache.wicket.protocol.http.FilePageStore: Error saving page de.csg.fips.fe.main.MainPage [9,2] for the sessionid D95AA4FC47B08FA1EC718F8BA4E7AB29 2007-09-13 19:02:51,188 ERROR [FilePageSavingThrea

Re: Too many open Files

2007-09-14 Thread Matej Knopp
By default diskpagestore doesn't eat more then 25 handles (I even plan to increasing this), unless you are under _extreme_ load, but then you'd see WARN messages in log. We used to have a problem with jetty and filehandles. Jetty didn't properly close file handle when serving static resources. -M

Re: Too many open Files

2007-09-14 Thread Benjamin Ernst
On our development system it looks like this: [EMAIL PROTECTED] ~]# ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited max nice(-e) 0 file size (blocks, -f) unlimited pending signals (-i) 16384 max l

Re: Too many open Files

2007-09-14 Thread Martijn Dashorst
Ah, just saw that it checks for 'the jar'. Could this be the disk store that eats up the file handles? Martijn On 9/14/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Hmm, > > This: > 2007-09-13 18:53:24,719 ERROR [TP-Processor5] > org.apache.wicket.util.resource.UrlResourceStream: getLastModif

Re: Wicket-Stuff Tinymce-Editor: No toolbars in IE6

2007-09-14 Thread Marieke Vandamme
Hello, I had the same problem with tinymce in internet explorer. I was glad to read this thread and downloaded the latest sources from CVS. But now I get a firefox error saying : tinyMCE.baseURL has no properties (tiny_mce_src.js:88). Am i the only one getting this error or is it a common error?

Re: Too many open Files

2007-09-14 Thread Martijn Dashorst
Hmm, This: 2007-09-13 18:53:24,719 ERROR [TP-Processor5] org.apache.wicket.util.resource.UrlResourceStream: getLastModified for jar:file:/home/fips/webapps/WEB-INF/lib/wicket- extensions-1.3.0-beta2.jar!/org/apache/wicket/extensions/ajax/markup/html/modal/res/frame-blue-1-ie.pngfailed: /home/fips/

Re: Too many open Files

2007-09-14 Thread Matej Knopp
It doesn't look like the jars are issue. What is your file handle limits? Maybe it's just set too low. -Matej On 9/14/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Is this only at your client's site? Why doesn't this show on your own > test servers? It seems like a configuration issue. > > On

Re: Too many open Files

2007-09-14 Thread Martijn Dashorst
Is this only at your client's site? Why doesn't this show on your own test servers? It seems like a configuration issue. One way to get around this problem is to unzip the jar and put the contents on the classpath. This will solve the problem for your client until we have found the cause. Martijn

Re: Palette header

2007-09-14 Thread Gerolf Seitz
you can either provide localized strings for the keys "palette.selected" and "palette.available" (preferred), or override the methods newAvailableHeader/newSelectedHeader. gerolf On 9/14/07, fero <[EMAIL PROTECTED]> wrote: > > > Hi, > simple question: How to set model Palette header ("Avaiable

Palette header

2007-09-14 Thread fero
Hi, simple question: How to set model Palette header ("Avaiable", "Selected") ? I have a locale combo and I want to use ResourceModel, to change headers, when locale is changed. Thanks Fero -- View this message in context: http://www.nabble.com/Palette-header-tf4442063.html#a12673870 Sent from

Re: Too many open Files

2007-09-14 Thread Benjamin Ernst
Hi, I figured out that the same jars are opened multiple times. I don't know if this is the right behavior. the lsof looks like this: [EMAIL PROTECTED] ~]# lsof | grep wicket java 19905 root 97u REG 253,0 1577553 35472 /usr/local/tomcat/webapps/FIPS_neu/WEB-INF/lib/w

Wicket Meetup in The Netherlands

2007-09-14 Thread Arje Cahn
Hi Johan, > Johan Compagner wrote: > > > I can organize one if there is enough interest Martijn and > i will be > > there then. There's 21 people on the Wiki page now! Even though I and some other people have already been bragging about hosting, booking rooms and organizing lunches, I gue

Re: Too many open Files

2007-09-14 Thread Benjamin Ernst
Hi, our Application is running in deployment-mode. Unfortunately we are not directly able to debug the system, because it is running on the server at our client and so far we couldn't reproduce the error on our own server. Is it also possible that this is a configuration-issue? Can we tell tomcat

Re: Too many open Files

2007-09-14 Thread Benjamin Ernst
Hi, our Application is running in deployment-mode. Unfortunately we are not directly able to debug the system, because it is running on the server at our client and so far we couldn't reproduce the error on our own server. Is it also possible that this is a configuration-issue? Can we tell tomcat

RE: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-14 Thread Arje Cahn
> Added a Bookmarkable link > (http://cwiki.apache.org/WICKET/community-meetups.html), > flagging the URL to the static page that should be used to > reduce the load on the wiki itself! Thanks, Gwyn :) - To unsubscribe, e-mai

Re: wicket 1.3 setting locale with tester?

2007-09-14 Thread Nino Saturnino Martinez Vazquez Wael
I think the answer could be : cycle.getSession().setLocale rigth? Nino Saturnino Martinez Vazquez Wael wrote: Hi Earlier I could set locale by doing this getApplicationSettings().setDefaultLocale(loc); from wicketTester... How do I do this now? regards Nino --

wicket 1.3 setting locale with tester?

2007-09-14 Thread Nino Saturnino Martinez Vazquez Wael
Hi Earlier I could set locale by doing this getApplicationSettings().setDefaultLocale(loc); from wicketTester... How do I do this now? regards Nino - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Too many open Files

2007-09-14 Thread Sebastiaan van Erk
Hi, Martijn Dashorst wrote: Do you run in development mode? Try switching to deployment mode. In development mode wicket will scan for changes of files, and that triggers a bug/feature in the JVM that keeps file handles open. Martijn As far as I recall, this bug was actually fixed (I rememb

Re: Too many open Files

2007-09-14 Thread Sebastiaan van Erk
Hi, Did you try looking at which resources are open with the lsof? Without knowing what it is specifically that's causing the problem, the problem is kind of hard to debug. And yes, when you've run out of file descriptors, opening anything that requires one is going to fail, whether it be op

Re: Too many open Files

2007-09-14 Thread Martijn Dashorst
Do you run in development mode? Try switching to deployment mode. In development mode wicket will scan for changes of files, and that triggers a bug/feature in the JVM that keeps file handles open. Martijn On 9/14/07, Benjamin Ernst <[EMAIL PROTECTED]> wrote: > Hi, > as far as I know, we don´t o

Re: Too many open Files

2007-09-14 Thread Benjamin Ernst
Hi, as far as I know, we don´t open any files or streams. I now got the catalina.out and it says that it is a SocketException: 2007-09-13 18:53:24,721 ERROR [TP-Processor116] org.apache.wicket.util.resource.UrlResourceStream: getLastModified for jar:file:/home/fips/webapps/WEB-INF/lib/wicket- exte

compressing resources which are not in the classpath

2007-09-14 Thread Andrew Klochkov
Hi! How to compress resources (css, java scripts) which are lying not in the classpath but in /css and /js in the webapp context folder? How can I create a CompressedResourceReference to such a resource? -- Andrew Klochkov ---

Re: Centering ModalWindow during scroll?

2007-09-14 Thread Anthony J Webster
Ok well I think I'm going to abandon this for the meantime and just use an indicator and a modal semi-transparent overlay over the site. I don't really have the time to learn cross-browser javascript! - Original Message - From: "Matej Knopp" <[EMAIL PROTECTED]> To: Sent: Friday, Sept

Re: Centering ModalWindow during scroll?

2007-09-14 Thread Matej Knopp
It's not a simple thing. A huge amount of time (both for implementation and testing) went into the current modal window library to make it work as cross-browser as possible. Unfortunately, I wasn't aware of all the exotic use cases people want so the library is rather monolithic. There is a rewrite

Re: Centering ModalWindow during scroll?

2007-09-14 Thread Anthony J Webster
It seems to be a rather tricky issue in terms of browser compatibilty. I have been looking around for alternatives to ModalWindow and most of them only have this working in FF (the small ones which don't involve a huge library that is). Pity I'm not a JS expert... - Original Message -

Re: Modal dialogs with Ajax

2007-09-14 Thread Matej Knopp
Well, modal window is a bit overkill in this case. I guess I'd replace it by a custom mask and probably a centered message with a button. It's hard to be any detailed, as this requires some CSS work and custom javascript. -Matej On 9/13/07, Anthony J Webster <[EMAIL PROTECTED]> wrote: > Hello aga

Re: setRenderAllowed not called in Tree items

2007-09-14 Thread Matej Knopp
Then it's a bug probably. Can you please create a JIRA issue so that I don't forget to look at it? Thanks. -Matej On 9/14/07, buealb <[EMAIL PROTECTED]> wrote: > > I'm working with the trunk. > > > >What wicket version are you using? > > >-Matej > > >On 9/13/07, buealb <[EMAIL PROTECTED]> wrote:

Re: Centering ModalWindow during scroll?

2007-09-14 Thread Matej Knopp
No, currently there is not. -Matej On 9/14/07, Anthony J Webster <[EMAIL PROTECTED]> wrote: > Hi, > > Is there a way to center a ModalWindow so that when a user scrolls the site > with the navigator scrollbar, the ModalWindow stays centered while the site > behind scrolls? > > Thanks > > Anthon

Centering ModalWindow during scroll?

2007-09-14 Thread Anthony J Webster
Hi, Is there a way to center a ModalWindow so that when a user scrolls the site with the navigator scrollbar, the ModalWindow stays centered while the site behind scrolls? Thanks Anthony

Re: ModalWindow bug - unable to close when added AjaxButton in content of the window

2007-09-14 Thread Matej Knopp
Are you sure your Form validates, when you click AjaxLink? Because otherwise the onSubmit is not invoked. Can you put a breakpoint in onSubmit? Also there is onError handler that is invoked when form validation fails. -Matej On 9/14/07, Vit Rozkovec <[EMAIL PROTECTED]> wrote: > I am sorry, I coul

Re: wicket 1.2 ---> wicket 1.3 upgrade / java.lang.ClassCastException: wicket.Initializer

2007-09-14 Thread Nino.Martinez
Dead on! thanks :) Eelco Hillenius wrote: > >> Im trying to upgrade our application to wicket 1.3 comming from 1.2.6, >> all now compiles fine but at runtime I get an exception in >> >> my application: >> >> /** >> * @param properties >> *Properties map with names of an

Re: Too many open Files

2007-09-14 Thread Sebastiaan van Erk
Do you open any files (streams) in your webapplication that you forgot to close? That would cause the files to run out and cause wicket to complain when it tries to open a new file. On linux you can easily see WHICH resources are being left open by doing lsof. Once you know which resource is c

Too many open Files

2007-09-14 Thread Benjamin Ernst
Hi, We are having problems while testing our wicket-application with multiple users. Wicket says that there are too many open files. Do you have an Idea how we can avoid this problem? We are using Wicket 1.3.0-beta2 in Tomcat 5.5.23 with IBM JDK 5 on a Red-Hat Linux. This is the error-log: 2007-

Re: wicket 1.2 ---> wicket 1.3 Beta 3 upgrade / java.lang.ClassCastException: wicket.Initializer

2007-09-14 Thread Nino Saturnino Martinez Vazquez Wael
I have added the slf4j dependencies from start so I cannot be that which are causing it... Looking at this thread http://www.nabble.com/remove-test-scope-for-slf4j-in-pom.xml-t3913261.html and my old thread regarding something possibly different(this is a new project): http://www.nabble.c

Re: NotSerializableException for SLF4JLocationAwareLog with Wicket 1.2.6

2007-09-14 Thread Eelco Hillenius
On 9/14/07, Sam Hough <[EMAIL PROTECTED]> wrote: > > Is that THE Matt Raible? Are you using Wicket in anger or evaluating? I bet with stress on the anger ;-) AppFuse supports Wicket now too if I'm correct. Eelco - To unsubscrib

Re: wicket 1.2 ---> wicket 1.3 upgrade / java.lang.ClassCastException: wicket.Initializer

2007-09-14 Thread Eelco Hillenius
> Im trying to upgrade our application to wicket 1.3 comming from 1.2.6, > all now compiles fine but at runtime I get an exception in > > my application: > > /** > * @param properties > *Properties map with names of any library initializers > in it > */ > private

Re: NotSerializableException for SLF4JLocationAwareLog with Wicket 1.2.6

2007-09-14 Thread Sam Hough
Is that THE Matt Raible? Are you using Wicket in anger or evaluating? mraible wrote: > > I noticed the following in my logs today when using Wicket 1.2.6. Is this > a known issue? > > Thanks, > > Matt > > Sep 14, 2007 1:19:59 AM org.apache.catalina.session.StandardSession > writeObject >

wicket 1.2 ---> wicket 1.3 upgrade / java.lang.ClassCastException: wicket.Initializer

2007-09-14 Thread Nino Saturnino Martinez Vazquez Wael
Hi Im trying to upgrade our application to wicket 1.3 comming from 1.2.6, all now compiles fine but at runtime I get an exception in my application: /** * @param properties *Properties map with names of any library initializers in it */ private final void load(

Re: setRenderAllowed not called in Tree items

2007-09-14 Thread buealb
I'm working with the trunk. >What wicket version are you using? >-Matej >On 9/13/07, buealb <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm using Tree component. I have problems with the rendering of the > children > of an TreeItem. If I look the code of Component.renderComponent, after of > callin