Re: Session-Timeout Exception

2007-09-24 Thread Eelco Hillenius
On 9/3/07, Jan Kriesten <[EMAIL PROTECTED]> wrote: > > Hi, > > when a Session-Timeout occurs, the following Exception is thrown when the user > gets active again: > > ---8<--- > 2007-09-03 16:41:26,316 ERROR [org.apache.wicket.RequestCycle ] > - > Cannot find the rendered page in ses

Re: strange ClassCastException when deserializing a Page

2007-09-24 Thread Xavier Hanin
On 9/25/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > Gee that looks weird. As far as I know, the only exotic stuff we do > with serializing is an optimization for page references. But I can't > see how that might relate to this. > > Johan, any ideas? Any chance you could make a test case out

Re: No cursor in Modal Window in FF

2007-09-24 Thread Eelco Hillenius
If you have this reproducible, please file a bug report. Eelco On 9/11/07, Artur W. <[EMAIL PROTECTED]> wrote: > > Hi! > > There is no cursor in input fields in Modal Window. > I use Wicket wicket-1.3.0-beta3 and ff 2.0.0.6 > > Thanks for help, > Artur > > -- > View this message in context: > ht

Re: NoSuchMethodException / PropertyResolver

2007-09-24 Thread Martijn Dashorst
You have to provide the types for the fields, or else Wicket won't be able to discover what type to use (apparently it resolves to boolean for the name), or provide default values with the correct type in your valuemap. i.e. either: add(new TextField("firstName", new PropertyModel(map, "firstName

Re: modal window rendering not quite smooth

2007-09-24 Thread Eelco Hillenius
On 9/9/07, Gumnaam <[EMAIL PROTECTED]> wrote: > has any one noticed that the modal window when opens up , > shows the contents of the parent page, before showing it's actual content. > The time for which it shows parent page's content depends on how much > time it takes to fetch it's content via aj

Re: wicket-ajax.js not added

2007-09-24 Thread Eelco Hillenius
On 9/24/07, John Carlson <[EMAIL PROTECTED]> wrote: > I have had several pages that will not initially load the wicket-ajax > functionality. The page will load but the throttler is missing or it > will complain that submitFormById is undefined. Refreshing the page > loads the ajax scripts and eve

Re: strange ClassCastException when deserializing a Page

2007-09-24 Thread Eelco Hillenius
Gee that looks weird. As far as I know, the only exotic stuff we do with serializing is an optimization for page references. But I can't see how that might relate to this. Johan, any ideas? Any chance you could make a test case out of it Xavier? Eelco On 9/24/07, Xavier Hanin <[EMAIL PROTECTED]>

Re: Redirect to HTTPS?

2007-09-24 Thread Eelco Hillenius
> I haven't tested but I think the solution is to override public final > CharSequence encode(final RequestCycle requestCycle,final IRequestTarget > requestTarget)BUT...it is final so we can't reuse the class directly but > have to make a copy. And this is where your alarm bells should go

Re: Getting at the HttpServletResponse?

2007-09-24 Thread Eelco Hillenius
On 9/24/07, Andrew Lombardi <[EMAIL PROTECTED]> wrote: > I do not have my own RequestCycle, no. Just using whatever is standard > with Wicket. What does it say the type is then? Can you paste the stack trace? Eelco - To unsubsc

Re: Redirect to HTTPS?

2007-09-24 Thread Eelco Hillenius
> All the other encode methods get the proper wicket URL but doesn't prepend > the webapp URI which this final encode method does. Beyond filing a RFE to > either make this method non-final or provide a postEncode(RequestCycle, > IRequestTarget) method before URL encoding, we will have to copy the

Re: Redirect to HTTPS?

2007-09-24 Thread Doug Leeper
I tested and it appears to work as expected. I have updated the Wiki to explain the steps involved for getting this to work in your application. Now I need to figure out how to get Jetty 4.2.24 to listen on an SSL port. Any idea? -- View this message in context: http://www.nabble.com/Redirect

Re: Need combo to determine action but validation fails

2007-09-24 Thread Swaroop Belur
Hi You should be looking at AjaxFormComponentUpdatingBehavior . Override the onUpdate(AjaxRequestTarget target) method. This will update your dropdownchoice model. Based on that you will be able to refresh the relevant parts via Ajax. On 9/25/07, Francisco Diaz Trepat - gmail <[EMAIL PROTE

Re: Redirect to HTTPS?

2007-09-24 Thread Doug Leeper
I have been attempting to get HTTPS/SSL working in my app too. Unfortunately, I have hit a wall...mostly b/c I am learning the API/Framework. In any case, the Example in the WIKI is outdated (v 1.2???) It won't work with 1.3 as is (no IResponseStrategy any more). However, I do believe I have f

NoSuchMethodException / PropertyResolver

2007-09-24 Thread Phillip Rhodes
Hi guys, I'm seeing a weird problem with Wicket. I *think* it's the same problem discussed here , but won't swear to it. Basically Wicket is logging a NoSuchMethodException when rendering my page. This is

wicket-ajax.js not added

2007-09-24 Thread John Carlson
I have had several pages that will not initially load the wicket-ajax functionality. The page will load but the throttler is missing or it will complain that submitFormById is undefined. Refreshing the page loads the ajax scripts and everything works fine. I did alittle snooping and found that o

Re: Global variables

2007-09-24 Thread Jonathan Locke
yes, these may belong in your WebApplication subclass. however, you may want to be careful to separate your /web/ application from your /application/ (to keep details of your web tier isolated). for example, at my work, we have both a WebApplication subclass that contains a variety of things

Re: Getting at the HttpServletResponse?

2007-09-24 Thread Andrew Lombardi
I do not have my own RequestCycle, no. Just using whatever is standard with Wicket. On Mon, 24 Sep 2007 23:36:00 +0200, Martijn Dashorst wrote: > Do you have your own RequestCycle? If so, is it a subclass of > WebRequestCycle? > > Martijn > > On 9/24/07, Andrew Lombardi <[EMAIL PROTECTED]> wr

Re: Appending JS to an Ajax Component

2007-09-24 Thread Igor Vaynberg
you can putting your script into iajaxcalldecorator and giving that to the behavior -igor On 9/24/07, UPBrandon <[EMAIL PROTECTED]> wrote: > > > I am trying to use an AttributeAppender to append an onchange script to a > DropDownChoice that also has an OnChangeAjaxBehavior added to it. But > on

Appending JS to an Ajax Component

2007-09-24 Thread UPBrandon
I am trying to use an AttributeAppender to append an onchange script to a DropDownChoice that also has an OnChangeAjaxBehavior added to it. But only the OnChangeAjaxBehavior's script is showing up in the markup. Is there a trick to adding JavaScript to a component that also has an Ajax behavior?

Re: Getting at the HttpServletResponse?

2007-09-24 Thread Martijn Dashorst
Do you have your own RequestCycle? If so, is it a subclass of WebRequestCycle? Martijn On 9/24/07, Andrew Lombardi <[EMAIL PROTECTED]> wrote: > The following gives me a ClassCastException: > > ((WebRequestCycle) > RequestCycle.get()).getWebResponse().getHttpServletResponse() > > On Mon, 24 Sep 20

Re: Append markup to BODY container

2007-09-24 Thread Rüdiger Schulz
Jürgen and Igor once showed me how to do this: http://www.nabble.com/BodyContributor--tf2578291.html#a7187578 http://www.nabble.com/Replacing-HtmlBodyContainer-tf3665340.html#a10241426 You need your own implementation of BodyContainer, and replace during attachment. Something like this should wor

Re: Redirect to HTTPS?

2007-09-24 Thread David Bernard
Hi, In my previous project, it was done by configuring (rewrite rules) the http front-end (apache, lighttpd,...). It's an other solution, that avoid developper to deal certificate and all the ssl machinery. /david Daniel Frisk wrote: I'm trying to add a check to the constructor on one of our

Re: Getting at the HttpServletResponse?

2007-09-24 Thread Andrew Lombardi
The following gives me a ClassCastException: ((WebRequestCycle) RequestCycle.get()).getWebResponse().getHttpServletResponse() On Mon, 24 Sep 2007 13:12:39 -0700, Eelco Hillenius wrote: > Just cast it. If you're building a regular web app, you'll always use > WebRequestCycle, which returns WebRes

Re: Getting at the HttpServletResponse?

2007-09-24 Thread Andrew Lombardi
ahh casting to WebRequestCycle was the magical incantation :) thanks. On Mon, 24 Sep 2007 13:12:39 -0700, Eelco Hillenius wrote: > Just cast it. If you're building a regular web app, you'll always use > WebRequestCycle, which returns WebResponse for getResponse. E.g. > ((WebRequestCycle)RequestCy

Re: Getting at the HttpServletResponse?

2007-09-24 Thread Eelco Hillenius
Just cast it. If you're building a regular web app, you'll always use WebRequestCycle, which returns WebResponse for getResponse. E.g. ((WebRequestCycle)RequestCycle.get()).getWebRequest(). I know it looks ugly, but then again, the idea is that you typically shouldn't the httpservletresponse direct

Re: Getting at the HttpServletResponse?

2007-09-24 Thread Andrew Lombardi
yes, I know. but how do I get a WebResponse? RequestCycle.get().getResponse() doesn't give me a class that extends from WebResponse. On Mon, 24 Sep 2007 12:52:52 -0700, Sean Sullivan wrote: > If you are using Wicket 1.3: > > class: WebResponse > > http://www.wicketstuff.org/wicket13doc/org

Re: Getting at the HttpServletResponse?

2007-09-24 Thread Sean Sullivan
If you are using Wicket 1.3: class: WebResponse http://www.wicketstuff.org/wicket13doc/org/apache/wicket/protocol/http/WebResponse.html method: getHttpServletResponse On 9/24/07, Andrew Lombardi <[EMAIL PROTECTED]> wrote: > How would I get an instance of the HttpServletResponse? I'm doing

Getting at the HttpServletResponse?

2007-09-24 Thread Andrew Lombardi
How would I get an instance of the HttpServletResponse? I'm doing some integration with an SSO provider that requires it. I've tried: ((WebResponse) RequestCycle.get().getResponse()).getHttpServletResponse() but RequestCycle.get().getResponse() returns StringResponse, which obviously will fa

FormComponentFeedbackIndicator usage

2007-09-24 Thread Clay Lehman
Hi, Can anyone point me to an example using FormComponentFeedbackIndicator? I have found examples using FormComponentFeedbackBorder, but they don't seem to have the same usage. From a post I saw on the old User's forum, I think a FormComponentFeedbackIndicator would better fit my needs, but I am

Need combo to determine action but validation fails

2007-09-24 Thread Francisco Diaz Trepat - gmail
Hi all, I have a simple Form that contains a DropDownChoice. I have a submit button and a submit link to change part of the form based on the option selected in the DropDownChoice. What it is happening is that because of some fields are invalid (Empty) I cannot get to the selected option of the D

Re: Redirect to HTTPS?

2007-09-24 Thread Eelco Hillenius
On 9/24/07, Daniel Frisk <[EMAIL PROTECTED]> wrote: > I'm trying to add a check to the constructor on one of our pages (a > credit card processing page) which should: > 1. If protocol is HTTPS; continue as usual > 2. Else redirect so that HTTPS is used to access the same page > > I saw the sample i

Re: Redirect to HTTPS?

2007-09-24 Thread Igor Vaynberg
well, i dont know. you said you have seen a few solutions on this list but they are too complicated. you want something more stripped down. so why not strip it down yourself. sure sounds like do my homework for me. as far as karma, im already in the negative. -gior On 9/24/07, Daniel Frisk <[EM

Re: Redirect to HTTPS?

2007-09-24 Thread Daniel Frisk
Well... Now that was certainly helpful. This was not intended as a "do my homework" question, read it as: "I don't know Wicket inside out yet and could use a hint if someone gets an idea from reading my question". You wasn't that someone today and you didn't help with your post, you lose ka

Re: DynamicMappedImageResource

2007-09-24 Thread Igor Vaynberg
yeah, its certainly a good idea to do that. -igor On 9/24/07, Niels Bo <[EMAIL PROTECTED]> wrote: > > > Hi > > It is very easy to create great and dynamic graphics in Wicket, but making > them interactive > using the ImageMap class only works for static images. > > Would it be an idear to have a

DynamicMappedImageResource

2007-09-24 Thread Niels Bo
Hi It is very easy to create great and dynamic graphics in Wicket, but making them interactive using the ImageMap class only works for static images. Would it be an idear to have a "DynamicMappedImageResource" class that could create both the image data and a image map out of the same class? N

Re: Redirect to HTTPS?

2007-09-24 Thread Igor Vaynberg
just take whatever has been discussed on this list and strip it down to whatever level you need. i dont think any one is interesting in doing this for you... -igor On 9/24/07, Daniel Frisk <[EMAIL PROTECTED]> wrote: > > I'm trying to add a check to the constructor on one of our pages (a > credit

Re: Wicket Dialogs

2007-09-24 Thread Igor Vaynberg
not in core, but have you checked wicketstuff-yui project? if its not there you are always welcome to contribute to it. -igor On 9/24/07, carloc <[EMAIL PROTECTED]> wrote: > > > Is there any component in wicket similar to this component? > Something like wicket dialogs > > http://developer.yahoo

Re: Append markup to BODY container

2007-09-24 Thread legol
Thx for reply, I'm using wicket 1.2.6, i have to add markup simply from String variable in class that extends from webpage Rüdiger_Schulz wrote: > > 2007/9/24, legol <[EMAIL PROTECTED]>: >> >> >> Hi all!!! >> >> What I want to do is append some markup to my webpage after body tag. I >> can't o

Re: newbie question about using WizardStep, help! thanks!

2007-09-24 Thread Eelco Hillenius
> Hi experts, > > I want to implement a wizard, user need to input some data, I can do it with > a single page using form, but I don't know how to do it in wizard, I put a > couple of input textfield etc. then I get a error: > > java.lang.IllegalStateException: Attempt to set model object on null m

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

2007-09-24 Thread Eelco Hillenius
On 9/24/07, Johan Compagner <[EMAIL PROTECTED]> wrote: > i will try to set something up, the problem is that location is depending on > how many wil come.. Why not use Arje's or Wouter's suggestion? Eelco - To unsubscribe, e-mai

Re: Global variables

2007-09-24 Thread Eelco Hillenius
On 9/24/07, Thies Edeling <[EMAIL PROTECTED]> wrote: > Why not just add them to your Application class? Yep, that's what you should do. If what you want to achieve is specific for one application, put them as members in your application class, or if you need something more generic, you can use App

Re: sessionstore is too big

2007-09-24 Thread Eelco Hillenius
> is there risk changing from wicket 1.3-beta2 to beta3 in nearly completely > implemented application? It *should* be better. But you might want to test this very well yourself, and check JIRA for newly introduced issues. Eelco ---

newbie question about using WizardStep, help! thanks!

2007-09-24 Thread raybristol
Hi experts, I want to implement a wizard, user need to input some data, I can do it with a single page using form, but I don't know how to do it in wizard, I put a couple of input textfield etc. then I get a error: java.lang.IllegalStateException: Attempt to set model object on null model of com

Re: Ajax Problem on Page with IFRAME

2007-09-24 Thread SantiagoA
I have a mainpage with some inputfields with ajax in, a submitbutton and a TabbePanel with three panels. The panels are for output only. one of the panels holds an Iframe. you can change inputs and on submit the panels are refreshed with new outputs. If one of the panels without the Iframe is ac

Re: Ajax Problem on Page with IFRAME

2007-09-24 Thread SantiagoA
I have a mainpage with some inputfields with ajax in, a submitbutton and a TabbePanel with three panels. The panels are for output only. one of the panels holds an Iframe. you can change inputs and on submit the panels are refreshed with new outputs. If one of the panels without the Iframe is ac

Re: FormTester and CheckBox

2007-09-24 Thread Rüdiger Schulz
2007/9/24, Ingram Chen <[EMAIL PROTECTED]>: > > try: > > formTester.setValue("termsAccepted", "true"); Thanks, that was it. -- greetings from Berlin, Rüdiger Schulz www.2rue.de

Re: Append markup to BODY container

2007-09-24 Thread Rüdiger Schulz
2007/9/24, legol <[EMAIL PROTECTED]>: > > > Hi all!!! > > What I want to do is append some markup to my webpage after body tag. I > can't override onRender method in HTMLBodyContainer because it is created > by > method getBodyContainer() in WebPage. I had to do the same thing, and was able to s

Re: Ajax Problem on Page with IFRAME

2007-09-24 Thread Kent Tong
SantiagoA wrote: > > Sorry, doesn´t work for me either. > > The Problem is, that the refreshing in the "main"-page does not work, if > the particular Panel is active. > The inputs and the ajax are nested in the main page, the panel shows a > "readonly" Iframe with no inputs. > Sorry that I do

Re: Label associated with an open/close tag

2007-09-24 Thread Kent Tong
Gwyn wrote: > > Please raise an issue - https://issues.apache.org/jira/browse/WICKET > Feel free to have a go at a patch, as that'll help it's chances of > getting done! > Done (https://issues.apache.org/jira/browse/WICKET-1004). No time to make a patch though... -- View this message in conte

Re: Global variables

2007-09-24 Thread Thies Edeling
Why not just add them to your Application class? Jan Kriesten wrote: hi artur, Where should I put global variables that are not related to the user but to the application. In JSP I've used servletContext.setAttribute How to do this in Wicket? you can do that in your application: ge

Re: Global variables

2007-09-24 Thread Jan Kriesten
hi artur, > Where should I put global variables that are not related to the user but to > the application. > In JSP I've used servletContext.setAttribute > > How to do this in Wicket? you can do that in your application: getServletContext().setAttribute( name, value ); regards, --- jan. ---

Redirect to HTTPS?

2007-09-24 Thread Daniel Frisk
I'm trying to add a check to the constructor on one of our pages (a credit card processing page) which should: 1. If protocol is HTTPS; continue as usual 2. Else redirect so that HTTPS is used to access the same page I saw the sample in the wiki with the annotations that intercepted the reque

Global variables

2007-09-24 Thread Artur W.
Hi! Where should I put global variables that are not related to the user but to the application. In JSP I've used servletContext.setAttribute How to do this in Wicket? Thanks, Artur -- View this message in context: http://www.nabble.com/Global-variables-tf4509527.html#a12860998 Sent from th

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

2007-09-24 Thread Wouter Huijnink
i will try to set something up, the problem is that location is depending on how many wil come.. how about: 1. pick date & city 2. decide on venue depending on nr of attendees It's not like this is going to be the once in a lifetime Wicket event - I'd say it's more important to get this

Re: Ajax Problem on Page with IFRAME

2007-09-24 Thread SantiagoA
Sorry, doesn´t work for me either. The Problem is, that the refreshing in the "main"-page does not work, if the particular Panel is active. The inputs and the ajax are nested in the main page, the panel shows a "readonly" Iframe with no inputs. thanks for help! -- View this message in context:

Append markup to BODY container

2007-09-24 Thread legol
Hi all!!! What I want to do is append some markup to my webpage after body tag. I can't override onRender method in HTMLBodyContainer because it is created by method getBodyContainer() in WebPage. Pls help -- View this message in context: http://www.nabble.com/Append-markup-to-BODY-container-t

Re: yui examples

2007-09-24 Thread James McLaughlin
On 9/24/07, Mattijs Hoitink <[EMAIL PROTECTED]> wrote: > hi all, > > i just checked out wicket-contrib-yui and wicket-contrib-yui-examples > to do some testing. > When i ran maven on it, the projects wouldn't build because of some > wrong dependencies in the pom.xml. > In a lot of places reference

Re: FormTester and CheckBox

2007-09-24 Thread Ingram Chen
try: formTester.setValue("termsAccepted", "true"); On 9/24/07, Rüdiger Schulz <[EMAIL PROTECTED]> wrote: > > Hello, > > What do I need to do if I want to select a single CheckBox in a Form using > the FormTester (Wicket 1.3 trunk)? If I do > > formTester.select("termsAccepted", 0); > > I get the

Experiences with ReloadingWicketFilter

2007-09-24 Thread Peter Thomas
Hi, I have minor issues with ReloadingWicketFilter and have reopened this JIRA issue I raised some time back, with a quickstart attached: https://issues.apache.org/jira/browse/WICKET-685 Just curious to know if others have problems with the ReloadingWicketFilter when you make minor changes to a

FormTester and CheckBox

2007-09-24 Thread Rüdiger Schulz
Hello, What do I need to do if I want to select a single CheckBox in a Form using the FormTester (Wicket 1.3 trunk)? If I do formTester.select("termsAccepted", 0); I get the following error: org.apache.wicket.WicketRuntimeException: Selecting on the component:'0:subscribeContainer:subscribeForm

Re: [podcast] Wicket talk at JavaZone 2007

2007-09-24 Thread Xavier Hanin
On 9/24/07, David Bernard <[EMAIL PROTECTED]> wrote: > > Done, > > I added > http://cwiki.apache.org/confluence/display/WICKET/Slides+and+presentations. Great! Xavier, could you check information. I create links to your presentations, > but may do you prefer to convert to attachement (part of th

Re: [podcast] Wicket talk at JavaZone 2007

2007-09-24 Thread David Bernard
Done, I added http://cwiki.apache.org/confluence/display/WICKET/Slides+and+presentations . Xavier, could you check information. I create links to your presentations, but may do you prefer to convert to attachement (part of the wiki). /david Gerolf Seitz wrote: n 9/24/07, David Bernard <[EMA

RE: yui examples

2007-09-24 Thread David Leangen
Unfortunately, yui is not updated with the same care as the core. I hope to get around to yui soon to lend a hand to all those who have contributed. Cheers, David > -Original Message- > From: Gwyn Evans [mailto:[EMAIL PROTECTED] > Sent: 24 September 2007 19:03 > To: users@wicket.apac

Re: Portlet Support

2007-09-24 Thread Dipu Seminlal
Hi Ate, Today i got some time to look at the wicket portlet demo ( jetspeed-2.1.3-dev-wicket-demo-installer.jar ), it looks very promising, thanks very much for the great work. I would like to see the portlet support integrated to the current trunk as soon as possible. Many thanks to the wicket

Re: Inter component events?

2007-09-24 Thread Sam Hough
Or maybe just have a "sortYourSelfOut" method that gets called on all components after any changes but before the the wicket response life cycle? Any existing Wicket methods fit this? onBeforeRender? Needs to get called on _all_ components even for Ajax request... Sorry for talking to myself. S

Re: Label associated with an open/close tag

2007-09-24 Thread Matej Knopp
Yeah, I agree with this too. Please submit a RFE. -Matej On 9/24/07, Kent Tong <[EMAIL PROTECTED]> wrote: > > Hi, > > I think this is one of the most common gotcha's in Wicket: a Label > associated with > an open/close tag like will silently output nothing. As I really can't > think of > a use c

Re: [podcast] Wicket talk at JavaZone 2007

2007-09-24 Thread Gerolf Seitz
n 9/24/07, David Bernard <[EMAIL PROTECTED]> wrote: > > Why not add it to the wiki or the main site (and other presentations)? > It's a good support for internal/customer "show". believe it or not, but nobody will stop you from doing this ;) gerolf I suggest a list with the following informa

Re: yui examples

2007-09-24 Thread Gwyn Evans
On Monday, September 24, 2007, 10:51:30 AM, Mattijs <[EMAIL PROTECTED]> wrote: > i just checked out wicket-contrib-yui and wicket-contrib-yui-examples > to do some testing. > When i ran maven on it, the projects wouldn't build because of some > wrong dependencies in the pom.xml. > In a lot of pl

yui examples

2007-09-24 Thread Mattijs Hoitink
hi all, i just checked out wicket-contrib-yui and wicket-contrib-yui-examples to do some testing. When i ran maven on it, the projects wouldn't build because of some wrong dependencies in the pom.xml. In a lot of places references are made to wicket 1.3.0-SNAPSHOT. But this doesn't exist in t

Inter component events?

2007-09-24 Thread Sam Hough
Has anybody used something like javax.swing.ListModel.addListDataListener or java.util.Observable to setup a nice way for components to respond to changes in other components? My use case is that I have a "basket" of items a user has selected. While they are searching/browsing if an item already

Re: sessionstore is too big

2007-09-24 Thread Benjamin Ernst
And an other question: is there risk changing from wicket 1.3-beta2 to beta3 in nearly completely implemented application? 2007/9/24, Benjamin Ernst <[EMAIL PROTECTED]>: > > Because our Application in an intrannet-Apllication the user should stay > logged-in their whole workday. So our session-ti

Re: sessionstore is too big

2007-09-24 Thread Matej Knopp
If you upgrade Wicket, there's new page store called DiskPageStore. for this pagestore you can set limits for pagemap file size and limit for entire session (so the session never grows beyond that limit) -Matej On 9/24/07, Benjamin Ernst <[EMAIL PROTECTED]> wrote: > Because our Application in an

Re: sessionstore is too big

2007-09-24 Thread Benjamin Ernst
Because our Application in an intrannet-Apllication the user should stay logged-in their whole workday. So our session-timeout is 12 hours and the sessions don't expire for a long time. Could that be a problem too? And it could be that we killed the tomcat a few tims. I will watch for session-dire

Re: sessionstore is too big

2007-09-24 Thread Matej Knopp
Jetty cleans the temp dir on startup automatically, Tomcat probably doesn't do it. Still, this shouldn't happen on production, because we clean the files when session is unbound. But when you just kill tomcat, there is no way we can clean sessions. Unless we check on startup if the folder is empty

Wicket Dialogs

2007-09-24 Thread carloc
Is there any component in wicket similar to this component? Something like wicket dialogs http://developer.yahoo.com/yui/examples/container/panel_clean.html -- View this message in context: http://www.nabble.com/Wicket-Dialogs-tf4507886.html#a12856206 Sent from the Wicket - User mailing list ar

Re: [podcast] Wicket talk at JavaZone 2007

2007-09-24 Thread David Bernard
Why not add it to the wiki or the main site (and other presentations)? It's a good support for internal/customer "show". I suggest a list with the following information : * authors * original target (ex: javazone 2007), first presentation date * wicket version (1.3.0) * attachament (slides, src..

strange ClassCastException when deserializing a Page

2007-09-24 Thread Xavier Hanin
Hi, I have a strange CCE on page deserialization with wicket 1.3.0-beta3: java.lang.ClassCastException: cannot assign instance of org.apache.wicket.model.PropertyModel to field org.apache.wicket.markup.html.WebMarkupContainerWithAssociatedMarkup.markupHelperof type org.apache.wicket.markup.html.Co

Re: sessionstore is too big

2007-09-24 Thread Johan Compagner
Yes we listen to unBind events, so they should be deleted. The only way that doesn't happen currently that i can think of if you kill tomcat the hard way then the current sessions will never normally expire and will never be cleaned johan On 9/24/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: >

Re: sessionstore is too big

2007-09-24 Thread Eelco Hillenius
On 9/24/07, Johan Compagner <[EMAIL PROTECTED]> wrote: > how do you stop tomcat when you stop it (if you do that) > Make sure that you never kill tomcat, If you do that then you have to delete > the dirs yourself. But even without shutting down, those old sessions should be removed, no? I mean, as

Re: sessionstore is too big

2007-09-24 Thread Johan Compagner
how do you stop tomcat when you stop it (if you do that) Make sure that you never kill tomcat, If you do that then you have to delete the dirs yourself. But maybe somehow there is a loophole that stops us from deleting the file. On 9/24/07, Benjamin Ernst <[EMAIL PROTECTED]> wrote: > > First of

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

2007-09-24 Thread Johan Compagner
i will try to set something up, the problem is that location is depending on how many wil come.. johan On 9/24/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > > I'm going to take a passive role in the organizing of this, though I'd > love to do so. Completing the book has my current highest p

Re: [RFE] getMarkupId()

2007-09-24 Thread Sam Hough
Just to be pedantic even in your odd/even example that could work with classes since an element can have more than one class... I think the performance problem for the browser trying to find an element by class is the bigger problem. Although in many cases events are just attached to elements tha

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

2007-09-24 Thread Martijn Dashorst
I'm going to take a passive role in the organizing of this, though I'd love to do so. Completing the book has my current highest priority. Any volunteers? Martijn -- Buy Wicket in Action: http://manning.com/dashorst Apache Wicket 1.3.0-beta3 is released Get it now: http://www.apache.org/dyn/clo

Re: sessionstore is too big

2007-09-24 Thread Benjamin Ernst
First of all: thanks for your help! Do you have any idea how to find that out? Where can I see how and when wicket tries to delete the session? Benjamin 2007/9/24, Eelco Hillenius <[EMAIL PROTECTED]>: > > > we have a problem with the sessions that wicket stores in the > filesystem. It > > seems

Re: sessionstore is too big

2007-09-24 Thread Eelco Hillenius
> we have a problem with the sessions that wicket stores in the filesystem. It > seems that the sessions that are stored here > "[TOMCAT-DIR]\work\Catalina\[HOST]\[WEB-APP-NAME\sessions\" are not deleted > after they are no longer in use. The size of this directory is now grown to > 2.5Gb, which is

Re: ANN: beturtle.com launched

2007-09-24 Thread Dipu Seminlal
Very Nice, Congratulations !! Dipu On 9/21/07, Joe Toth <[EMAIL PROTECTED]> wrote: > > Hi Everyone, > > We just launched http://beTurtle.com/ - A 'green' social networking > site. If your interested in healthy living, sustainable practices, have > 'green' questions or just want to make some new f

sessionstore is too big

2007-09-24 Thread Benjamin Ernst
Hi, we have a problem with the sessions that wicket stores in the filesystem. It seems that the sessions that are stored here "[TOMCAT-DIR]\work\Catalina\[HOST]\[WEB-APP-NAME\sessions\" are not deleted after they are no longer in use. The size of this directory is now grown to 2.5Gb, which is way

Re: [podcast] Wicket talk at JavaZone 2007

2007-09-24 Thread Xavier Hanin
On 9/22/07, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > > for those of you couldn't attend JavaZone 2007 (probably most of you) > and haven't already listened to the podcast, here we go: > > http://www4.java.no/presentations/javazone/2007/podcast/5301.mp3 As a reminder, slides and eclipse project f

Re: Label associated with an open/close tag

2007-09-24 Thread Gwyn Evans
On Monday, September 24, 2007, 2:29:07 AM, Kent <[EMAIL PROTECTED]> wrote: > Hi, > I think this is one of the most common gotcha's in Wicket: a Label > associated with > an open/close tag like will silently output nothing. As I really can't > think of > a use case when this behavior is the des