Re: First Day Disgust!

2007-09-11 Thread Gerolf Seitz
On 9/10/07, Martijn Dashorst [EMAIL PROTECTED] wrote: I haven't used an Eclipse plugin for maven since the command line version works really well and my previous experiences with mevenide were less than ok (talking about 2 years ago!) Martijn there seem to be a new

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

2007-09-11 Thread Johan Compagner
i will discuss tomorrow with Martijn when we could organize it. johan On 9/11/07, Matthijs Wensveen [EMAIL PROTECTED] wrote: Hi, I'm interested, and I think several of my co-workers are too. Matthijs Danny van Bruggen wrote: I'm interested. I've only just started, so every topic is

Re: 1.3.0-SNAPSHOT maven error

2007-09-11 Thread Sebastiaan van Erk
This was a mvn eclipse:eclipse, but I get a similar error with a mvn compile. It's just a standard project with wicket as a dependency; used to be 1.3.0-beta3 (which worked fine), but changed it to SNAPSHOT and added the wicketstuff repository like so: repositories repository

Re: Ajax error in Safari / Konqueror

2007-09-11 Thread Matej Knopp
If you can submit a snapshot that demonstrates ajax failure in beta 3, please do. -Matej On 9/10/07, Nathan Hamblen [EMAIL PROTECTED] wrote: Rüdiger Schulz wrote: How can I find out more, or what more information would be needed to root this down? Maybe this is related to WICKET-938?

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

2007-09-11 Thread Johan Compagner
just like last week? On 9/11/07, Maurice Marrink [EMAIL PROTECTED] wrote: I don't think Martijn will be here tomorrow Johan. He has taken some time off to work on the book. Maurice On 9/11/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 9/11/07, Wouter Huijnink [EMAIL PROTECTED] wrote:

Re: First Day Disgust!

2007-09-11 Thread Ayodeji Aladejebi
maven maven maven, that is if all developers all over the world knows what maven is. Ant was what i first knew until i started hearing maven and infact it was mainly because of wicket that i learnt maven early before a netbeans module came out. so really not all developers will have some patience

Re: Wasp/Swarm Questions was Re: Component parent null after replace

2007-09-11 Thread Maurice Marrink
On 9/11/07, Anthony Schexnaildre [EMAIL PROTECTED] wrote: Please hijack away. I have been quite happy with Wasp and Swarm. It's simple and painless but quite flexible. The examples are the life saver though. To be honest, the security framework is why I chose to use Wicket for this project

Re: Default focus behavior for ajax request

2007-09-11 Thread Matej Knopp
Because currently there is no way during ajax processing to determine that the event was a focus related one. I think that it's good to restore focus on last focused element by default. But I'm also aware that it causes problems with focus related event, so i think maybe we should just call

Re: Wasp/Swarm Questions was Re: Component parent null after replace

2007-09-11 Thread Maurice Marrink
Martijn, you are absolutely right, i forgot we moved the user from the session to the requestcycle. Just keep the id for your user in the session and keep the actual user for this request in the requestcycle. This way each thread will have its own instance of the user. Maurice On 9/11/07,

auto dirty and widget factory

2007-09-11 Thread Sam Hough
Apologies in advance as I'm a newbie harking on about my pet topic again but... Taking the example of TabbedPanel and AjaxTabbedPanel (only in extensions but a common UI concept) I think it shows why it would be good to use the factory pattern to generate elemental widgets (like button, panel

No cursor in Modal Window in FF

2007-09-11 Thread Artur W.
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: http://www.nabble.com/No-cursor-in-Modal-Window-in-FF-tf4421726.html#a12612071 Sent from the Wicket - User mailing list archive at

Re: PageNavigator Vs Nice Url

2007-09-11 Thread Johan Karlberg
In your application class's init method, mount the page with an appropriate URL strategy. I have mounts like these in my current code. mount(new HybridUrlCodingStrategy(/plist, PlistPage.class)); Johan chickabee wrote: I have the nice url: https://lilo:8443/whisky/app/plist/ When I go to

Re: PageNavigator Vs Nice Url

2007-09-11 Thread C. Bergström
chickabee wrote: Yes, Now the urls are like: https://lilo:8443/whisky/app/plist/.1.2 https://lilo:8443/whisky/app/plist/.1.3 ...etc...these are much better than earlier. thx. However, they are not bookmarkable, if I start the new browser and point the folloing url:

Re: PageNavigator Vs Nice Url

2007-09-11 Thread Sebastiaan van Erk
I have exactly the same issue, and was thinking of writing a special PageNavigation to do the job for me. Many times the only relevant state is the page number (and possibly the filter used). The use case (which I think occurs very often) is a list of comments in a guestbook or blog, or the

Model question

2007-09-11 Thread Leszek Gawron
Assuming eventModel is loadable detachable model sould I implement some marker interfaces in the following model? private static class SystemWarningEventImagePathModel extends AbstractReadOnlyModel { private IModel eventModel; public SystemWarningEventImagePathModel( IModel

ModalWindow customisation ?

2007-09-11 Thread Anthony J Webster
Hi, Is there any way to customise the actual frame of a ModalWindow? Preferably I'd like to get rid of the frame entirely or just replace it with a simple box of the same colour as the enclosed page/panel without the top-right close button. Any ideas? Many Thanks Anthony

ResourceWatcher is not working properly in Development mode

2007-09-11 Thread Alex Objelean
I use the wicket-1.3-snapshot (from 9th sept). In development mode, I expect that any change to markup would be visible after the page is refreshed (as it does in wicket-1.3-beta3). But it doesn't. Any ideas why? Alex. -- View this message in context:

Re: PageNavigator Vs Nice Url

2007-09-11 Thread Martijn Dashorst
When you embark on your bookmarkable paging navigator remember that you have to take into account 2 or 3 navigators on a page, how do you keep them apart? Or how do you encode sorting? URL state is a really tricky thing. Besides, the paging navigator itself is quite non-interesting to bookmark.

Re: Model question

2007-09-11 Thread Martijn Dashorst
Nothing directly. The only thing you should do is propagate the 'detach' method to your nested eventModel. The chaining model is merely interesting for consumers of your model, so they can get to the embedded model using a specified API. From chapter 5 Understanding Models of Wicket in Action

How Dynamic ListView

2007-09-11 Thread Edi
How to display the dynamic Listview. for e.g, I have a dynamic query like select * from tablename, I want to display the table values into ListView. Is it possible. Please remember, table name is dynamic. I don't have setter and getter method for table name/class name. All suggestions welcome.

Re: PageNavigator Vs Nice Url

2007-09-11 Thread chickabee
I think it will be easily achievable by adding one more constructor to PageNavigator which can take the starting page param: Exising: add(new PagingNavigator(navigator, gridView)); Proposed: add(new PagingNavigator(navigator, gridView, startPage)); This startPage can be extracted from

Re: PageNavigator Vs Nice Url

2007-09-11 Thread chickabee
Hi Sebastiaan, Can't wait to see what you come-up with after the weekend full of grunt work, i have just posted a few design pointers, in case they make any sense to you. I have not yet opened the PageNavigation.java file but I will shortly if an acceptable solution does not surface timely, I

Re: How to create Dynamic ListView

2007-09-11 Thread chickabee
You can follow the GridView code in the examples, it is the easiest way to learn how effortlessly wicket can provide data grids in a webpage. As far as the tablename etc is there, I believe this is your very own business logic situation, so deal with it. Good luck wicketing!! Edi wrote:

Re: PageNavigator Vs Nice Url

2007-09-11 Thread Sebastiaan van Erk
Hi, chickabee wrote: I think it will be easily achievable by adding one more constructor to PageNavigator which can take the starting page param: Exising: add(new PagingNavigator(navigator, gridView)); Proposed: add(new PagingNavigator(navigator, gridView, startPage)); This startPage can be

Re: ModalWindow customisation ?

2007-09-11 Thread Frank Bille
It's in the stylesheet. Some time ago I did a custom skin for it. The project died, so I don't have it anymore, but it's not that hard (read: if I can do it, you can do it) Frank On 9/11/07, Anthony J Webster [EMAIL PROTECTED] wrote: Hi, Is there any way to customise the actual frame of a

Re: ModalWindow customisation ?

2007-09-11 Thread Anthony J Webster
hmm it uses image maps for the frame graphics :/ I suppose I could rewrite it and strip it of most of its functionality - Original Message - From: Frank Bille [EMAIL PROTECTED] To: users@wicket.apache.org Sent: Tuesday, September 11, 2007 3:15 PM Subject: Re: ModalWindow customisation

Re: PageNavigator Vs Nice Url

2007-09-11 Thread chickabee
I like the simple just set the start page idea. However why would need a special coding strategy? You have to already retrieve the page number manually from the params in your example, so why not just modify PagingNavigator to make bookmarkable page links. Yes, I agree on that, You are right

Re: First Day Disgust!

2007-09-11 Thread igor . vaynberg
no one is asking anyone here to become a maven guru. All we are asking is that they use it to generate a quickstart project, which simply involves following the directions. -igor On 9/11/07, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: maven maven maven, that is if all developers all over the

Re: First Day Disgust!

2007-09-11 Thread jlawrence
Hi I have been trying to use the quickstart for beta3 with the Maven command as stated on the wicket site and it is not working. Build Error Unable to download file... Org.apache.wicket:wicket-archetype-quickstart:jar:1.3.0-beta3 Etc.. Can anyone please advise. Jim --

Localize AjaxButton

2007-09-11 Thread Tim Lantry
How do you localize the 'label' on an AjaxButton component?

Re: Localize AjaxButton

2007-09-11 Thread Al Maw
Tim Lantry wrote: How do you localize the 'label' on an AjaxButton component? Off the top of my head, try: AjaxButton foo = new AjaxButton(foo); foo.setModel(new StringResourceModel(propertyKey)); Regards, Al -- Alastair Maw Wicket-biased blog at http://herebebeasties.com

Re: Wasp/Swarm Questions was Re: Component parent null after replace

2007-09-11 Thread Anthony Schexnaildre
This makes sense. Where would you stick the user on the requestcycle? It's not obvious from the javadocs. Is there a wicket way? -Anthony On Sep 11, 2007, at 10:05 AM, Maurice Marrink wrote: Martijn, you are absolutely right, i forgot we moved the user from the session to the requestcycle.

Re: Wasp/Swarm Questions was Re: Component parent null after replace

2007-09-11 Thread Martijn Dashorst
Create your custom request cycle, and add a getter that uses the session's username/id to retrieve the user from the database, and cache it locally. Martijn On 9/11/07, Anthony Schexnaildre [EMAIL PROTECTED] wrote: This makes sense. Where would you stick the user on the requestcycle? It's not

Re: HOWTO create a new ResourceReference

2007-09-11 Thread Nathan Hamblen
Ryan Sonnek wrote: Okay folks, I think I'm stuck. After releasing my wicketstuff project that creates RSS feeds [1], it was suggested to use a WebResource instead of a WebPage to create RSS/Atom feeds [2]. Makes sense to me, but I'm really getting stuck on how to create a new ResourceReference

Re: ModalWindow customisation ?

2007-09-11 Thread Matej Knopp
Yeah, I must admit, that modal window is not the most customizable piece of code out there. It is possible, but require a rather deep css and modal window knowledge. It's on my todo list to rewrite and modularize it, unfortunately I'm rather busy lately. -Matej On 9/11/07, Anthony J Webster

Re: First Day Disgust!

2007-09-11 Thread Ayodeji Aladejebi
at least i see a lot of maven related issues on the forum, not that maven is not perfect but some starters who dont know it well may think there is some big stuff about any issue they may have when setting it up and setting up sample projects. today I have a plugin build (not fully stable) that

Re: Default focus behavior for ajax request

2007-09-11 Thread Carlos Pita
behavior if the event is onblur. Can you submit RFE? Done. I filed it as minor improvement https://issues.apache.org/jira/browse/WICKET-957. Because currently there is no way during ajax processing to determine that the event was a focus related one. I think that it's good to Maybe setting

Re: First Day Disgust!

2007-09-11 Thread Konstantin Ignatyev
You are absolutely correct: lots of issues with Maven all the time and it would be really beneficial if various Lets Get Started tutorials do not rely on that and rely on Ant only to do everything they need to do. Ideally all the libraries will come with it too, and if download size is too big

Re: First Day Disgust!

2007-09-11 Thread Eelco Hillenius
On 9/11/07, Konstantin Ignatyev [EMAIL PROTECTED] wrote: You are absolutely correct: lots of issues with Maven all the time and it would be really beneficial if various Lets Get Started tutorials do not rely on that and rely on Ant only to do everything they need to do. Ideally all the

Re: First Day Disgust!

2007-09-11 Thread Konstantin Ignatyev
I will try to cut some time to do that. Konstantin Ignatyev PS: If this is a typical day on planet earth, humans will add fifteen million tons of carbon to the atmosphere, destroy 115 square miles of tropical rainforest, create seventy-two miles of desert, eliminate between forty to one

Re: First Day Disgust!

2007-09-11 Thread Eelco Hillenius
On 9/11/07, Konstantin Ignatyev [EMAIL PROTECTED] wrote: I will try to cut some time to do that. Cheers! Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

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

2007-09-11 Thread Martin Funk
Would it be impolite to ask if the language of the meeting could be English? I think I'd come anyway, but if it all talking were in Nederlands, my level of understanding would drop drastically. Coming from Düsseldorf, probably by train, Amsterdam or Amersfoort don't seem to make a big

WicketTester and Page parameters Wicket Example Unit tests?

2007-09-11 Thread wicket user
Ok, Two questions really: 1) I've got a page that gets hit by an outside credit card merchant once they have validated the card, they post me my transaction ID along with a whole host of other parameters. Getting them from the request is easy in the page itself but trying to unit test it is

Re: First Day Disgust!

2007-09-11 Thread Konstantin Ignatyev
Maven guru can use Maven to create and maintain such package - it should be just another type of assembly, right? :) Konstantin Ignatyev - Original Message From: jweekend [EMAIL PROTECTED] To: users@wicket.apache.org Sent: Tuesday, September 11, 2007 12:21:53 PM Subject: Re: First

Re: Default focus behavior for ajax request

2007-09-11 Thread Johan Compagner
see my comments in that issue. Its not that we have to do something on the serverside this is a clientside issue. johan On 9/11/07, Carlos Pita [EMAIL PROTECTED] wrote: behavior if the event is onblur. Can you submit RFE? Done. I filed it as minor improvement

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

2007-09-11 Thread Martijn Dashorst
I'm comfortable speaking in Engrish, so I have no problem with that. But I can't vouch for the others And I'm sure you'll hear some nice Dunglish expressions along the way [1]. Martijn [1] http://www.dunglish.nl/ On 9/11/07, C. Bergström [EMAIL PROTECTED] wrote: Martijn Dashorst wrote:

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

2007-09-11 Thread Eelco Hillenius
On 9/11/07, Martijn Dashorst [EMAIL PROTECTED] wrote: I'm comfortable speaking in Engrish, so I have no problem with that. But I can't vouch for the others And I'm sure you'll hear some nice Dunglish expressions along the way [1]. Martijn [1] http://www.dunglish.nl/ Haha, fantastic!

Re: Default focus behavior for ajax request

2007-09-11 Thread Carlos Pita
Dunno. Up till now my workaround is to set focusComponent to null at the server-side for validation purposes. I'm not suggesting that this should be wicket's approach or something similar, of course. Regards, Carlos On 9/11/07, Johan Compagner [EMAIL PROTECTED] wrote: see my comments in that

Re: New MEAP content for Wicket in Action available

2007-09-11 Thread Eelco Hillenius
On 9/11/07, Scott Swank [EMAIL PROTECTED] wrote: I just noticed that Wicket in Action is now available for pre-order on amazon.com. I also noticed this detail: Delivery estimate: January 28, 2008 - February 1, 2008 We're woking on having the book done early next month, and then it takes

Re: WicketTester and Page parameters Wicket Example Unit tests?

2007-09-11 Thread Martijn Dashorst
I'll leave 1 for others. re: 2. The wicket examples sources are part of the wicket distribution. You can find them in src/jdk-1.5/wicket-examples There are tests available, but afaik they are jwebunit tests, and scheduled to be replaced with WicketTester due to the fact that jwebunit is now GPL

Any way to apply wicket:link to a with contained img?

2007-09-11 Thread mchack
Was wondering if there was an easy way - Hopefully without code to create a bookmarkable link where there is a contained image tag. Seems like from a usability standpoint this would be very common and a little bit cumbersome if I have to do this in the backing code. Thanks -- View this message

Re: New MEAP content for Wicket in Action available

2007-09-11 Thread Eelco Hillenius
On 9/11/07, Scott Swank [EMAIL PROTECTED] wrote: From what I've seen in the MEAP the book look really promising. I'm definitely excited about getting my hands on it. Thanks. We should have more chapters coming up soon (particularly 5 and 9), and we fixed issues for earlier chapters (including

Re: Two small questions

2007-09-11 Thread Eelco Hillenius
Is this related to this task: http://issues.apache.org/jira/browse/WICKET-466 It is. Not sure whether that patch is the best solution though, so I need some time to look into it. Eelco - To unsubscribe, e-mail: [EMAIL

Re: First Day Disgust!

2007-09-11 Thread Eelco Hillenius
On 9/11/07, Konstantin Ignatyev [EMAIL PROTECTED] wrote: + generate ant build file to compile project and start jetty. That will make me happy as a lark :) I like Maven's idea and promise but implementation is not that great to my taste Then maybe Ant + Ivy would be good. Though

Re: First Day Disgust!

2007-09-11 Thread Michael Day
I think the examples should include dependencies as possible. If there are license restrictions, include the download links in the README. That said, why does it *really* matter? I don't have maven installed, and I've never had any issues with wicket whatsoever. I haven't tried to

Re: MOUNT UNMOUNT-ing path in WebApplication

2007-09-11 Thread Al Maw
Stefan Simik wrote: I want to thank wicket's developers for the nice product and in second place I want to make clear that I am a newbie, so maybe my question is a stupid one No, it's an excellent question. So unmount cannot be succesfully done by removing entry by key, because there are no

Re: Setting up a very simple login page

2007-09-11 Thread Cristina
Hi Carlos, thanks so much for your explanation. Your 1st reply was already helpful as I was able to notice my mistake after you pointed it out :-). I apologize for posting sample code with such an obvious mistake in it. By the way, the page is working as it should now... Best regards, Cristina

Re: Wasp/Swarm Questions was Re: Component parent null after replace

2007-09-11 Thread Maurice Marrink
Ok, i just finished a SecureContainerLink that should do what your SecurePanelLink does, but it is a bit less complex. I haven't checked it in yet or tested it for that matter but hope to hear from you if this is what you meant. If so i will make it a part of wasp. Maurice /* * Licensed to the

Re: Wasp/Swarm Questions was Re: Component parent null after replace

2007-09-11 Thread Anthony Schexnaildre
At first glance this looks more impressive than my first attempt. I am just reorganizing my application by storing the User in the RequestCycle as was suggested earlier and storing the User id in the session. After that I will give this code a spin and let you know my thoughts. -Anthony

Re: How to get a list of the connected users ?

2007-09-11 Thread Carlos Pita
Maybe you can write a session listener to intercept session destruction (give a look at servlet api, in particular HttpSessionListener). For sessions that do have an associated (logged in) user you can set the isConnected flag to false then. I wouldn't recommend keeping these flags in a

Re: Any way to apply wicket:link to a with contained img?

2007-09-11 Thread mchack
I think it's a common case in most if not all web apps (hyperlinked images). It is so common that having to add code would cumbersome. I appreciate the component oriented aspect of the framework but really want to use it for more leveraged UI elements. I guess what I am looking to build is

Re: How to get a list of the connected users ?

2007-09-11 Thread John Krasnay
On Tue, Sep 11, 2007 at 11:24:38PM +0200, landry soules wrote: Hello, I have to display a list of the connected users in a page of my app. I know it sounds definitely dumb, but i don't know how to achieve this... Users login to my site (i extended AuthenticatedWebApplication), and then i

Re: Accessing to session scope attribute

2007-09-11 Thread Carlos Pita
From wicket.Session javadoc: Arbitrary objects can be attached to a Session by installing a session factory on your Application class which creates custom Session subclasses that have typesafe properties specific to the application (see Application for details). To discourage non-typesafe access

Re: Any way to apply wicket:link to a with contained img?

2007-09-11 Thread Carlos Pita
From my own experience most of the times the images in those links are taken from properties of some entity (say product or user) that is ultimately comming from a model, not just static resources. So you can't avoid the code counterpart anyway. Reagrds, Carlos On 9/11/07, mchack [EMAIL

Re: Any way to apply wicket:link to a with contained img?

2007-09-11 Thread Eelco Hillenius
Was wondering if there was an easy way - Hopefully without code to create a bookmarkable link where there is a contained image tag. Seems like from a usability standpoint this would be very common and a little bit cumbersome if I have to do this in the backing code. I think this already

Re: First Day Disgust!

2007-09-11 Thread Evan Chooly
You could also look at how qwicket uses ant+maven tasks to build a system. The maven tasks handle downloading dependencies and ant does everything else. I know there's still that dependency on maven libs but it's just for the dependencies. And that's still miles ahead of using get to manage

How to remove a page from Wicket's back button memory?

2007-09-11 Thread Justin Morgan (Logic Sector)
Hi, Okay, another newbie question. :) I have some secured pages that require a user login. The main page (unsecured) has direct links to these secured pages. If the user tries to access one of these secured pages without being logged in, I throw a restartresponseexception that takes

Re: First Day Disgust!

2007-09-11 Thread Konstantin Ignatyev
If you'd rather add a get for all the dependencies and depdendencies of dependencies and dependencies of ... well, you're probably beyond all hope of help to start with. Well, that is why 'get' is better :) - via transitive dependencies usually we get s many unnecessary jars that is creates

1.3.0-beta2/3 broken in the m2 repo?

2007-09-11 Thread Craig Tataryn
Tried grabbing: dependency groupIdorg.apache.wicket/groupId artifactIdwicket-parent/artifactId version1.3.0-beta3/version /dependency And then: dependency groupIdorg.apache.wicket/groupId artifactIdwicket-parent/artifactId version1.3.0-beta2/version /dependency Each

Re: First Day Disgust!

2007-09-11 Thread Jan Kriesten
(though people might argue that we could even replace logging with JDK logging) don't even think about it :D regards, --- jan. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: 1.3.0-beta2/3 broken in the m2 repo?

2007-09-11 Thread Craig Tataryn
Does work when trying to download directly from Meant Doesn't not Does. On 9/11/07, Craig Tataryn [EMAIL PROTECTED] wrote: Tried grabbing: dependency groupIdorg.apache.wicket/groupId artifactIdwicket-parent/artifactId version1.3.0-beta3/version /dependency And then:

Re: BookmarkablePage URL

2007-09-11 Thread Eelco Hillenius
On 9/11/07, V. Jenks [EMAIL PROTECTED] wrote: Can anyone help out w/ this? I'm stumped. The images are somehow being passes as parameters? It isn't all of the images on the page because some of them show up...and they're all in the same folder. This makes no sense to me. How do you

Re: Form validation error in Wicket 1.3

2007-09-11 Thread Eelco Hillenius
On 8/27/07, dzenanr [EMAIL PROTECTED] wrote: The last major thing for my application to run on Wicket 1.3 are form validation errors. They do not appear on the page where the form is. In Wicket 1.2 I used the following code to report the error in the form: protected void

Re: Ajax operations on Panels nested in Fragments

2007-09-11 Thread Eelco Hillenius
On 8/29/07, Oli Evans [EMAIL PROTECTED] wrote: I just lost a few hours on a problem where an ajax operation on a Panel nested in a Fragment was failing as my nested panel could not find its associated markup. It seems this was because a Fragment will only reliably find its markup if you

Re: Exception

2007-09-11 Thread Eelco Hillenius
What I'm doing on logout is calling the logout-page and there: public LogoutPage() { AuthServiceWebSession.get().logout(); // Invalidates the session setResponsePage( LoginPage.class ); } What change might have caused this and how can I circumvent this? Interesting... So you

Re: How to get a list of the connected users ?

2007-09-11 Thread Matthijs Wensveen
landry soules wrote: Hello, I have to display a list of the connected users in a page of my app. I know it sounds definitely dumb, but i don't know how to achieve this... Users login to my site (i extended AuthenticatedWebApplication), and then i update a isConnected flag in users table. Thus

Re: Exception

2007-09-11 Thread Jan Kriesten
hi eelco, Interesting... So you invalidate the session right away, but then wicket does a redirect, picks up the same session somehow (even though it is invalidated) and borkes. Do you call invalidateNow or invalidate? invalidate. it also doesn't matter at which page-state i call this, i

Re: I18n and resource bundles prioritization

2007-09-11 Thread Alex Objelean
JIRA issue created: https://issues.apache.org/jira/browse/WICKET-959 WICKET-959 Eelco Hillenius wrote: Could you open a JIRA issue please so that we can fix either the WIKI or a bug? Eelco On 8/27/07, Alex Objelean [EMAIL PROTECTED] wrote: The