Re: Is wicket suited for my needs?

2011-02-14 Thread Suraj Chandran
10K concurrent sessions. Thanks, Suraj. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: usage of JavascriptFilteredIntoFooterHeaderResponse

2011-02-14 Thread Jeremy Thomerson
On Mon, Feb 14, 2011 at 12:11 AM, Zilvinas Vilutis wrote: > > Hi Jeremy, > > Thanks for the implementation ( I've found that you're the author of most > of > the files :) ) - it will be really useful in the future. > > 1st problem I ran into - no usage example in Javadocs :) However, mailing > lis

Re: Unable to update FeedBackPanel within AjaxEventBehavior call

2011-02-14 Thread Jeremy Thomerson
On Mon, Feb 14, 2011 at 3:11 PM, sheadley3228 wrote: > > I am getting the following error in the wicket ajax debug window when > trying > to update the feedback panel in my result page. > > ERROR: Wicket.Ajax.Call.processComponent: Component with id [[feedback91]] > a > was not found while trying

Re: Is wicket suited for my needs?

2011-02-14 Thread Jeremy Thomerson
As Jonathan asked, did you really mean 10k concurrent *requests* (which is what you stated originally), or did you mean 10k concurrent *sessions*? -- Jeremy Thomerson http://wickettraining.com *Need a CMS for Wicket? Use Brix! http://brixcms.org* On Mon, Feb 14, 2011 at 11:31 PM, Suraj Chandra

Re: Is wicket suited for my needs?

2011-02-14 Thread Suraj Chandran
I understand that wicket is a stateful session based framework, but there is still provision for stateless stuff. My aim would be to push requests towards statelessness as much as possible. Noticing this some guys have told me that "maybe wicket is not for this". Considering that atleast 20% of t

Re: Is wicket suited for my needs?

2011-02-14 Thread Jonathan Locke
10K concurrent *requests* or sessions? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Is-wicket-suited-for-my-needs-tp3305543p3306071.html Sent from the Users forum mailing list archive at Nabble.com. -

Unable to update FeedBackPanel within AjaxEventBehavior call

2011-02-14 Thread sheadley3228
I am getting the following error in the wicket ajax debug window when trying to update the feedback panel in my result page. ERROR: Wicket.Ajax.Call.processComponent: Component with id [[feedback91]] a was not found while trying to perform markup update. Make sure you called component.setOutputMa

cell width AjaxFallbackDefaultDataTable

2011-02-14 Thread fachhoch
I want to increase column width inAjaxFallbackDefaultDataTable. first I tried columns.add(new org.apache.wicket.extensions.markup.html.repeater.data.table.AbstractColumn(new Model("Name and Phone No."),"firstName") { @Override

Is wicket suited for my needs?

2011-02-14 Thread Suraj Chandran
Hi guys, I have just started with wicket and I have started loving it. But I am afraid whether wicket suits my needs. 1) We are working on a website that will serve free and legal music. So basically the whole purpose of the site is to serve content with all the boiler plate like "Search", "Profi

Re: usage of JavascriptFilteredIntoFooterHeaderResponse

2011-02-14 Thread Martin Grigorov
On Mon, Feb 14, 2011 at 7:02 PM, wrote: > Interesting how the HeaderResponseFilteredResponseContainer in this > example is after the tag even though best practices as well as the > Javadoc suggest it should be just before the . Perhaps the example > should be changed so as not to set a bad...er

Re: Strange behaviour of BookmarkablePageLink

2011-02-14 Thread Christian Grobmeier
OK i solved it now. Sorry for the mailinglist noise. This link: https://cwiki.apache.org/WICKET/faqs.html#FAQs-WhatisthedifferencebetweensetResponsePage%2528newMyWebPage%2528%2529%2529andsetResponsePage%2528MyWebPage.class%2529 describes the difference between setReponse(instance) and setResponse

Re: Strange behaviour of BookmarkablePageLink

2011-02-14 Thread Christian Grobmeier
Hello again, it still something weird I meanwhile have: mountPackage("/", HomePage.class); mountPackage("/feedback", FeedbackPage.class); mountPackage("/login", LoginPage.class); mountPackage("/test", TestPage.class); Everything fine so far. After I have logged in (in the onSubmit()), I redirec

Re: usage of JavascriptFilteredIntoFooterHeaderResponse

2011-02-14 Thread MZemeck
Interesting how the HeaderResponseFilteredResponseContainer in this example is after the tag even though best practices as well as the Javadoc suggest it should be just before the . Perhaps the example should be changed so as not to set a bad...er...example... A header response that creates t

Re: Hibernate lazy collections and Wicket Serializable Checker

2011-02-14 Thread Pedro Santos
Hi Alexandru, Wicket checker ends up invoking Object#equals in all objects reachable by the checker. It is up to hibernate to don't try to initialize your collection if it is not the time. Ex.: PersistentBag#equals implementation, jus copy pasting the its code comment: /** * Bag does not respect t

Re: Hibernate lazy collections and Wicket Serializable Checker

2011-02-14 Thread Igor Vaynberg
you really should not reference hibernate entities directly. use a loadable detachable model for that. otherwise when the page is deserialized the entity is detached from the session... -igor On Mon, Feb 14, 2011 at 8:23 AM, Alexandru Artimon wrote: > Hello, > > I'm having some problems in port

Hibernate lazy collections and Wicket Serializable Checker

2011-02-14 Thread Alexandru Artimon
Hello, I'm having some problems in porting our application to Wicket. Wicket Serializable Checker tries to see if all the fields in a hibernate bean are serializable, but some of the fields are collections that have lazy set to true. Now, at the moment it tries to check those collections the

Access denied page shows

2011-02-14 Thread jussi isokangas
Hi, Im not familiar with the wicket. I don't undestand why my project's SecureWebPage work occasionally. It throws access denied page. All should be ok. Is it in my development enviroment? I working with m2eclipse. t. jussi

Re: Strange behaviour of BookmarkablePageLink

2011-02-14 Thread Christian Grobmeier
Hi Robson, > I noticed that there are two pages mounted in the same URL: both HomePage > and TestPage are mounted on /app. I'm not sure if this is the cause of the > problem, but you can try changing the mount point of one of them. actually you are right. It seems mounting different packages to t

Re: Strange behaviour of BookmarkablePageLink

2011-02-14 Thread Robson Paniago de Miranda
Hi Christian, I noticed that there are two pages mounted in the same URL: both HomePage and TestPage are mounted on /app. I'm not sure if this is the cause of the problem, but you can try changing the mount point of one of them. Regards, Robson Paniago 2011/2/14 Christian Grobmeier > Hello

Strange behaviour of BookmarkablePageLink

2011-02-14 Thread Christian Grobmeier
Hello I have two forms in my app. One is behaving correct, one not. So I assume I did something bad, but I cannot find my failure - maybe one of you guys had a similar problem in the past. I am using 1.5 trunk version. In my apps init method i mounted some pages/packages: mountPackage("app", Hom