Re: memcached session store

2009-03-09 Thread Martin Grotzke
Hi, sounds interesting. What would you say are the advantages of terracotta over memcached? I'd say in terms of scalability terracotty has the same disadvantages like local (in-jvm) caches - replication has to be done to all other nodes. Thanx for your thoughts, cheers, Martin On Sun,

Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread Maarten Bosteels
Hello, I am also using IDEA 8.1 but instead of the jetty:run I start the wicket app with the Start [1] class that is part of the quickstart archetype. Not sure it's necessary but in my Application class, I added these lines for automatic picking up changes to the html:

Re: Security in a Spring Wicket layered application

2009-03-09 Thread Kent Larsson
Hi, Great answer! :-) I'll try to do that today. Best regards, Kent On Sun, Mar 8, 2009 at 8:38 PM, Erik van Oosten e.vanoos...@grons.nl wrote: Hi Kent, Go with something that enables authorization in the service layer (e.g. Spring Security, jSecurity, ...). Next base your custom wicket

Re: memcached session store

2009-03-09 Thread Martin Grotzke
On Sun, 2009-03-08 at 16:56 -0700, Victor Igumnov wrote: I wrote a memcached session manager store for jetty, that our wicket app utilizes. Works well, except I can't open source it, since it was created on the company's dime ;-( Well, most interesting things are not so simple to realize that

Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread Stefan Malmesjö
You can read up here http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin on scanIntervalSeconds and reload=automatic. It works for me, but I usually get an exception after 30 or so reloads. But I figure it's better than nothing :) /Stefan Jason Rosenberg wrote: Hello, I'm new to

Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread uwe janner
for class reloading you can either use wicket with seam (of course activate debug/development mode in both seam and wicket) or javarebel (which now has a wicket plugin). as we migrated from seam with jsf to seam with wicket we are very happy to have this instant change feature for free. cheers,

Custom wicket:tags?

2009-03-09 Thread Wayne Pope
Hi, is it possible to develop our own custom wicket tag(s)? Anyone done this, or have any pointers? thanks - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: Custom wicket:tags?

2009-03-09 Thread Jan Kriesten
Hi Wayne, is it possible to develop our own custom wicket tag(s)? Anyone done this, or have any pointers? yep, possible. I did sortof in the Dynamo example (http://www.footprint.de/fcc/2008/11/some-wicket-scala/) Regards, --- Jan.

Re: Creating a brandable or white label type of application

2009-03-09 Thread Serkan Camurcuoglu
Hi Igor, Is there another CMS (other than brix) that works well with wicket? Igor Vaynberg wrote: if you are just starting to think about building this you might want to consider using brix, or another cms that works well with wicket. in case of brix: each client would get their own jcr

Re: memcached session store

2009-03-09 Thread Martijn Dashorst
Starts to sound like a form of premature optimization. If you are new to Wicket, why do you want to implement a memcached session store? What is the usecase? Martijn On Mon, Mar 9, 2009 at 9:56 AM, Martin Grotzke martin.grot...@javakaffee.de wrote: On Sun, 2009-03-08 at 16:56 -0700, Victor

Re: Ajaxifying FormComponentPanel

2009-03-09 Thread Linda van der Pal
When I debug the app, I can see that getObject() is being called for subgenrefield, only selectedGenre == null. I also put a breakpoint in convertInput() inside the GenreFieldSwithPanel, but it doesn't pass it. Shouldn't it use that to determine what the new value of the model will be? Linda

Re: memcached session store

2009-03-09 Thread Martin Grotzke
On Mon, 2009-03-09 at 13:07 +0100, Martijn Dashorst wrote: Starts to sound like a form of premature optimization. If you are new to Wicket, why do you want to implement a memcached session store? What is the usecase? We're starting a new project (the relaunch of a big ecommerce system) and want

PageExpiredException

2009-03-09 Thread Douglas Ferguson
I get a PageExpiredException periodically and I'm having trouble isolating the cause. I thought that it had something to do with server restarts but I'm not sure about that now. Stack: org.apache.wicket.protocol.http.PageExpiredException: Cannot find the rendered page in session

Re: Custom wicket:tags?

2009-03-09 Thread Jeremy Thomerson
Look at AutoLinkResolver and see how to build one - you can basically auto-magically handle any kind of tag any way you want to. -- Jeremy Thomerson http://www.wickettraining.com On Mon, Mar 9, 2009 at 4:58 AM, Wayne Pope waynemailingli...@googlemail.com wrote: Hi, is it possible to

Re: Custom wicket:tags?

2009-03-09 Thread Wayne Pope
thanks guys On Mon, Mar 9, 2009 at 3:52 PM, Jeremy Thomerson jer...@wickettraining.com wrote: Look at AutoLinkResolver and see how to build one - you can basically auto-magically handle any kind of tag any way you want to. -- Jeremy Thomerson http://www.wickettraining.com On Mon, Mar 9,

Re: PageExpiredException

2009-03-09 Thread Ryan Gravener
I would double check that all your classes implement Serializable. Ryan Gravener http://ryangravener.com/flex | http://twitter.com/ryangravener On Mon, Mar 9, 2009 at 10:39 AM, Douglas Ferguson doug...@douglasferguson.us wrote: I get a PageExpiredException periodically and I'm having

RE: PageExpiredException

2009-03-09 Thread Douglas Ferguson
I know that this error comes up when there is a serialization issue, but I don't think that is my problem. I'm fairly certain that the session is expiring and wicket is dumping the pageMap and therefore the AjaxCall bombs. Douglas -Original Message- From: snoop...@gmail.com

Re: Wicket Web Desktop

2009-03-09 Thread Igor Vaynberg
you should always start with how things are configured out of the box as we take care to select good defaults. when you have a problem you should start customizing. -igor On Mon, Mar 9, 2009 at 12:47 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Hi! How should I configure

Re: Creating a brandable or white label type of application

2009-03-09 Thread Igor Vaynberg
no first hand experience, but this one should be: http://www.hippocms.org/ -igor On Mon, Mar 9, 2009 at 4:36 AM, Serkan Camurcuoglu serkan.camurcuo...@telenity.com wrote: Hi Igor, Is there another CMS (other than brix) that works well with wicket? Igor Vaynberg wrote: if you are just

Re: memcached session store

2009-03-09 Thread Martijn Dashorst
Non-sticky would be rather bad for Wicket performance/programming model. The default of wicket is to redirect after an event to a get request which renders a buffered response. The buffered response is only available on the jvm that handled the original request. If the buffered response is not

Re: Wicket Web Desktop

2009-03-09 Thread Martin Makundi
I was just wondering whether to embark or not. I take your comment as go ahead, it should work out-of-the-box :) If there were too many foreseen pitfalls, I would have more urgent things to embark on. ** Martin 2009/3/9 Igor Vaynberg igor.vaynb...@gmail.com: you should always start with how

Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread Jason Rosenberg
Thanks Maarten, This worked for me (and I'm still using jetty:run) I'll look into JavaRebel for the class reloading bit Jason Maarten Bosteels wrote: Hello, I am also using IDEA 8.1 but instead of the jetty:run I start the wicket app with the Start [1] class that is part of

Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread Jason Rosenberg
Yeah, Unfortunately, I tried using the jetty scanInterval setting, but this caused Jetty to reload the wicket app, and since I'm using Guice to inject configuration params, it doesn't like to re-inject params multiple times Jason Stefan Malmesjö wrote: You can read up here

Tabbed Panel with bookmarkable links

2009-03-09 Thread Christian Helmbold
Hello, I've written a component which provides bookmarkable links for a tabbed panel. The link to the currend tab is disabled and the url to the default tab contains no tab information to keep URLs short. It works so far, but since this is my first wicket component I'd like to know your

Re: Security in a Spring Wicket layered application

2009-03-09 Thread Kent Larsson
Hm, I had some problems. Are there any examples out there for this? On Mon, Mar 9, 2009 at 9:43 AM, Kent Larsson kent.lars...@gmail.com wrote: Hi, Great answer! :-) I'll try to do that today. Best regards, Kent On Sun, Mar 8, 2009 at 8:38 PM, Erik van Oosten e.vanoos...@grons.nl wrote:

Re: Security in a Spring Wicket layered application

2009-03-09 Thread Ryan McKinley
I have not used it (yet), but check: http://code.google.com/p/wicket-jsecurity/ On Mar 9, 2009, at 1:46 PM, Kent Larsson wrote: Hm, I had some problems. Are there any examples out there for this? On Mon, Mar 9, 2009 at 9:43 AM, Kent Larsson kent.lars...@gmail.com wrote: Hi, Great

Cookie retrieval issue.

2009-03-09 Thread Murat Yücel
Hi All I am experiencing a similar problem, as this jira issue: https://issues.apache.org/jira/browse/WICKET-2011 I am trying to make auto login work. When you login and check the remember box then a cookie is persisted. Whenever i logout the cookie is removed by calling the clear method on the

Re: PageExpiredException

2009-03-09 Thread Jeremy Levy
Can you be certain that the jsessionid is actually present in the request (via cookie or url)? I've seen the session dropped by some mobile browsers in some instances. You can add to your apache logs config to print it out, and then add some debug in your pageexpired page to help reference it

RE: PageExpiredException

2009-03-09 Thread Douglas Ferguson
I got to the bottom of this. Another developer on the project had added a RequestCycleProcessor And so my code wasn't executing. So now I can detected the PageExpiredException and deal with it gracefully. But I'm back to my original issue, which is that if the session is expired, then the

5 Days of Wicket

2009-03-09 Thread Andrew Lombardi
Hey guys, Just wanted to let you guys know, that here at Mystic we're doing a series of blog posts about Wicket, the basics on setting everything up, tests, backend, components, etc. If you're interested, would definitely love your comments (on the blog and mailing list of course).

Re: Getting an error when trying to install via Maven

2009-03-09 Thread horatiu.cherebetiu
My problem was that I used the wrong version of wicket-spring annot: 1.2.rc instead of 1.3.5, for the wicket-1.4-rc1 HHB wrote: Hey, I created a Wicket skeleton project via Maven. When trying to install the project, I got this error: java.lang.ClassCastException:

Re: Modal window not appearing in IE

2009-03-09 Thread NHSoft.YHW
first sorry for my poor english. it is really strange problem. same modelwindow'panel used in two place, one works well for IE, but another can not properly show modelwindow. after compare each other, i found that only html template file is diffirent. here is two html file, the one can not

Re: Tabbed Panel with bookmarkable links

2009-03-09 Thread Brill Pappin
Cool... I just did exactly the same thing! Since others seem to need it, this might be worth refining over on wicket-stuff. I did my version slightly different in that I used the existing one as a basis and created a PageTabbedPanel IPageTab and AbstractPageTab. The main difference is in

Future of WicketObjectStreamFactory

2009-03-09 Thread David Leangen
Hi, Just wondering about WicketObjectStreamFactory. For a reason that I have not yet been able to determine, I am having deserialization problems when using the default serialization. However, if I set this: setObjectStreamFactory(new WicketObjectStreamFactory()); then my problems go away.

log4j

2009-03-09 Thread srinivas . raju
Hi, How to integrate log4j with wicket. Regards, Srinivasa Raju CH. Get your world in your inbox! Mail, widgets, documents, spreadsheets, organizer and much more with your Sifymail WIYI id! Log on to http://www.sify.com ** DISCLAIMER ** Information contained and transmitted

Re: log4j

2009-03-09 Thread Anton Veretennikov
slf4j is used as a layer and log4j by default is contained in pom.xml if you use Wicket quickstart. You can add it manualy: dependency groupIdorg.slf4j/groupId artifactIdslf4j-log4j12/artifactId version1.4.2/version /dependency dependency groupIdlog4j/groupId

Re: memcached session store

2009-03-09 Thread Victor Igumnov
Even if you have the memcached store in place, wicket still requires session affinity. Wicket buffers redirect responses locally so the client needs to go to the same server twice or the client will receive an expired session. Wicket is a stateful framework, session affinity is a must.