clustering and failover

2013-06-27 Thread Uwe Schäfer
hi quick question about clustering: am i right to believe that putting session/pagemap data in a memcached-like storage has advantages over the tomcat session clustering in terms of latency and robust failover behaviour? i mean, the latter obviously has the data nearby (when assuming sticky

Re: strange issue, OnChangeAjaxBehavior() executed only once

2012-11-13 Thread Uwe Schäfer
On 11/13/2012 04:13 PM, saty wrote: Anyone? wild guess, but could it be that the component with this behavior is rerendererd on the way back, but it's URL is now pointing to the initial version's behavior? (means you do not get different URLS for the callback) i tricked myself the other

Another safe way to build PropertyModels

2012-11-08 Thread Uwe Schäfer
Hi After playing around with both lambdaJ and SafeModel, here is our take on safe property model creation (that shamelessly steals from the above ones): IModelPerson p=... IModelStreet pm = model(from(p).getAddress().getStreet()) or assert(address.street,

Re: BackButton support Browser Compatibility issue

2012-10-11 Thread Uwe Schäfer
On 10/04/2012 11:05 AM, Martin Grigorov wrote: Hi Martin Create a ticket with a quickstart please. created as https://issues.apache.org/jira/browse/WICKET-4814 cu uwe - To unsubscribe, e-mail:

Re: BackButton support Browser Compatibility issue

2012-10-04 Thread Uwe Schäfer
On 10/03/2012 08:44 AM, vidhi wrote: Hi After reading the documentation and forum discussions on the same topic I tried to put my components and everything in a form and used the - form.setVersioned(true); for enabling the Browser BackButton Support. This works fine

Re: BackButton support Browser Compatibility issue

2012-10-04 Thread Uwe Schäfer
On 10/04/2012 10:24 AM, Martin Grigorov wrote: Hi Martin What really matters for this functionality is whether the page itself is versioned. By default all pages are versioned - see org.apache.wicket.settings.IPageSettings#getVersionPagesByDefault. page is versioned, form is explicitely set

Re: igor's select2 script

2012-05-13 Thread Uwe Schäfer
On 05/09/2012 09:23 PM, Dan Retzlaff wrote: Here you go, Uwe (and all): https://github.com/dretzlaff/wicket-select2 thanks a lot. i'll provide feedback as soon as i have tweaked it work with 1.4. from the API it looks nice. cu uwe

igor's select2 script

2012-05-09 Thread Uwe Schäfer
hi in order not to duplicate work: is there a wicket wrapper component out there using igor's select2 script, already? cu uwe - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

OT: Job in Germany

2012-04-23 Thread Uwe Schäfer
Hi we're looking for experienced Java developers for fulltime employment (no freelancers) with some Wicket background. Contact me, if you want to know more. cu uwe - To unsubscribe, e-mail:

Re: Spring + MongoDb

2011-12-14 Thread Uwe Schäfer
On 12/14/2011 06:51 AM, Jeff Schneller wrote: How stable is morphia? it did not change much for about a year now. it has its warts, but it works. (just like mongodb) it has 10gen backing, as scott is a 10gen employee. yes, we´re using it with wicket for almost 2 years now.

Re: Spring + MongoDb

2011-12-13 Thread Uwe Schäfer
On 12/13/2011 05:28 AM, Jeff Schneller wrote: As Martijn suggested I could just use the mongodb without the spring-data layer. Will I run into problems in the future if I go this route? you could also use morphia with/or without spring cu uwe

Joboffer Germany

2011-10-22 Thread Uwe Schäfer
Fellow Wicketeers, we're looking for several experienced full-time developers in Germany (Freiburg, Dortmund, Berlin) that love Wicket as much as we do. https://www.thomas-daily.de/company/jobs/javaee We avoid Spring fullblown-EE wherever possible and work with SQL as well as NoSQL

Re: MarkupId generation [SOLVED]

2011-02-06 Thread Uwe Schäfer
On 02/06/2011 05:51 AM, msj121 wrote: I see, well I am happy I could help, and it sounds like you have quite an interesting project. humm, indeed ;) just to let everyone know: adding this to application init works nicely: addComponentInstantiationListener(new

Re: MarkupId generation

2011-02-05 Thread Uwe Schäfer
On 02/04/2011 09:07 PM, msj121 wrote: You could have an automatic listener that takes the getMarkupId(...) and preppend, or append to the id, or do it by hand (not my favourite choice). good idea. i´ll try just setMarkupId(prefix+getMarkupId()) with an IComponentInstantiationListener.

Re: URL generation

2011-02-05 Thread Uwe Schäfer
On 02/04/2011 08:37 PM, Erik van Oosten wrote: Hi Erik, I sometimes use absolute URLs in a project. For code see https://issues.apache.org/jira/browse/WICKET-1974 splendid, thanks! uwe - To unsubscribe, e-mail:

Re: MarkupId generation

2011-02-04 Thread Uwe Schäfer
On 02/04/2011 05:02 AM, msj121 wrote: Well I think that all of the markup ids being output are based off of the name in wicket:id=name. If memory serves correct so the easiest (ie: less obtrusive) solution is to simply change your tags. this is only true for development mode. in deployment,

URL generation

2011-02-04 Thread Uwe Schäfer
Hi i am working on a wicket app which is to be included in some 3rd party page. the page somewhat uses a thing like $.load to include the wicket-generated code. To sum up, wicket has no idea that its created page will be sliced into pieces and included in some other page. any url wicket

Re: Maven: Where to find the current binaries

2010-11-29 Thread Uwe Schäfer
On 11/26/2010 08:28 PM, Uwe Schäfer wrote: i am quite puzzle due the maven behaviour described below. I took this to the maven mailinglist, but with no result. to be complete, here´s the link to the according thread on maven-user: http://bit.ly/gj33qP

Re: Maven: Where to find the current binaries

2010-11-26 Thread Uwe Schäfer
On 11/17/2010 12:17 AM, Uwe Schäfer wrote: Hi fellow Wicketeers i am quite puzzle due the maven behaviour described below. I took this to the maven mailinglist, but with no result. I think it is crucial to other projects (such as wicket) to have a pom working no matter what version of maven

Re: Swapping a wicket rendered tag for an alternate tag or text

2010-08-15 Thread Uwe Schäfer
On 08/15/2010 03:40 PM, Michael Brinkman wrote: In some cases, I would like to swap this anchor tag and it's body with a nbsp; since it's in a table. to get rid of the span-tag, see setRenderBodyOnly(true); cu uwe - To

Re: IPropertyReflectionAwareModel

2010-07-16 Thread Uwe Schäfer
Igor Vaynberg schrieb: no reason that i can see, file a jira. cant be fixed in 1.4 though. WICKET-2947. yes, would be a breaking change. thanks. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

IPropertyReflectionAwareModel

2010-07-15 Thread Uwe Schäfer
hi is there a particular reason, why IPropertyReflectionAwareModel does not extend IModelT? it looks like an extension of IModel and i need exactly this: an IModelT that implements IPropertyReflectionAwareModel: might be PropertyModel, might be something homebrewn currently i have to

Re: wicket serialization problem of guice proxies

2010-05-18 Thread Uwe Schäfer
Am 18.05.2010 23:40, schrieb Christoph Grün: I am using Wicket 1.4.8 with Guice 1.0 and Warp Persist/Hibernate. When injecting DAOs directly into Wicket components, it works fine (I inject the DAO Interface). However, I would like to inject them, next to other objects, also in classes that do

Re: The better way tp add component directly

2010-05-02 Thread Uwe Schäfer
Am 02.05.2010 15:44, schrieb Eyal Golan: The Main (parent) panel can be changed via ajax. The ajax might change the enum type. if you change it at runtime, would you not want to replace, instead of add? cu uwe - To

Re: Any mature work on integrating Hibernate Validator with Wicket?

2010-04-10 Thread Uwe Schäfer
Carlos Vara schrieb: Seeing as it is only 2 simple classes, and that the external dependencies can be reduced to a minimum (just javax-validation-api) i think message resolution is flawed (i18n) and making wicket directly dependent from javax.validation might be a bad thing. cu uwe

Re: Any mature work on integrating Hibernate Validator with Wicket?

2010-04-10 Thread Uwe Schäfer
David Chang schrieb: hi, did you get the jsr 303 validation code released? where can i find it? i am really excited looking forward to it. about to. just finishing examples tomorrow. stay tuned. cu uwe - To unsubscribe,

Re: Any mature work on integrating Hibernate Validator with Wicket?

2010-04-09 Thread Uwe Schäfer
David Chang schrieb: Is there any mature work on integrating Hibernate Validator with Wicket? I am unable to find any at wicketstuff. Googled and found this work is interesting. i´d like to contribute my approach to wicketstuff-core. i do have commit access for wicketstuff. is there anyone

Re: Any mature work on integrating Hibernate Validator with Wicket?

2010-04-05 Thread Uwe Schäfer
David Chang schrieb: Any comment or pointers regarding relatively mature work in this regard? we did something that does not need spring, though it need some polishing and is not yet released. i´ll contact you later this week. cu uwe

Re: Wicket JMS

2010-03-29 Thread Uwe Schäfer
Marek Šabo schrieb: ...and then I would need some logic to read queue (here is where my understanding of broker api runs out) during those AjaxUpdates. just for the record: we´re using hornetq (used to be activemq) with guice without being tied to the requestcycle. cu uwe

Re: Wicket JavaScript Library Integration - A Common Base

2010-03-27 Thread Uwe Schäfer
Cemal Bayramoglu schrieb: dear Cemal, What I was proposing was not as a solution to incompatibilities between such multiple dependencies. fair enough. I am a believer in keeping the core as simple and light as possible whilst still open (and designed for) potential enhancement with

Re: Wicket JavaScript Library Integration - A Common Base

2010-03-26 Thread Uwe Schäfer
Uwe Schäfer schrieb: Hi Cemal, I was thinking that it could possibly be sensible to have another project where we abstract out the mechanisms wiQuery provides for resources and JavaScript statements. to keep that topic alive: do you agree that providing a unified way for component authors

Behaviour being also a Validator

2010-03-22 Thread Uwe Schäfer
hi i ran into a problem, where a Behaviour, that at some point happens to also implement also IValidator did no longer get the expected callbacks. this is understandable given the fact, that i call either add(IValidator) on FormComponent or add(IBehaviour) on Component to add it. I am

Re: Wicket JavaScript Library Integration - A Common Base

2010-03-19 Thread Uwe Schäfer
Cemal Bayramoglu schrieb: dear Cemal, I was thinking that it could possibly be sensible to have another project where we abstract out the mechanisms wiQuery provides for resources and JavaScript statements. i have no idea of how wiQuery does it, but i strongly agree to the urgent need of a

Re: Guice LazyInitProxyFactory : NPE when calling, first, public fields

2010-03-08 Thread Uwe Schäfer
Uwe Schäfer schrieb: To me this does not feel like necessarily the right behaviour. I do not see a tremendous advantage in this resolving being done lazily. for the record: we could change to doing it non-lazy, but it does not solve this particular issue, as the value of public field

Re: Wicket does not(?) prevent multiple submits

2010-01-11 Thread Uwe Schäfer
Muro Copenhagen schrieb: I have this urgent an vital problem i must solve, so i hope someone could assist. captured from the list: http://www.codesmell.org/blog/2008/12/wicket-resubmitsafeform/ cu uwe - To unsubscribe,

Re: Java Wicket Job Opportunity, Finland

2009-12-28 Thread Uwe Schäfer
Sam Stainsby schrieb: Finland, Finland, Finland The country where I quite want to be! ^^^ Not the best job application I've seen :-) but a nice reference to monty python´s flying circus ;) - To unsubscribe, e-mail:

Re: Getting server-url ?

2009-11-17 Thread Uwe Schäfer
Martin Grigorov schrieb: it should return http://www.serverurl.com ((WebRequest) getRequest()).getHttpServletRequest().getServerHost() or something like that pass the httpServletRequest to public static StringBuffer getContextUrl(final HttpServletRequest req) { String

Re: XML Serialization Wicket

2009-11-13 Thread Uwe Schäfer
Pamir Erdem schrieb: As you know, Wicket uses disk storage to save web pages by serializing them. PageMap and DiskPageStore classes are examples for it. Is there any way to change the serialization type from DOM Serialization to SAX Serialization in these classes ? If serialization of an

Re: [ANN] wicket-dnd project

2009-10-03 Thread Uwe Schäfer
Sven Meier schrieb: I'm happy to announce wicket-dnd, a generic drag and drop framework for Wicket. looks pretty slick! congrats. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: Wicketstuff really needs some updates

2009-09-16 Thread Uwe Schäfer
Pierre Goupil schrieb: +1 for CI since it would give confidence on health status of the various projects as well. http://wicketstuff.org/teamcity cu uwe - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: WicketFilter

2009-08-31 Thread Uwe Schäfer
Igor Vaynberg schrieb: hm, i remember that filter also setting the application. maybe i did not remember correctly. anyways, you can simply write your own filter then. done. but i´d love to grab the webApplication reference from the original filter by other means than nasty reflection *g*

Re: WicketFilter

2009-08-31 Thread Uwe Schäfer
Igor Vaynberg schrieb: how are you getting a reference to the filter itself to start with? MyFunkyFilter extends WicketFilter :) - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: WicketFilter

2009-08-31 Thread Uwe Schäfer
Igor Vaynberg schrieb: ok, i added a protected getter. remember, you can only call it after the filter's init() has been called. sure, thanks Igor. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: WicketFilter

2009-08-30 Thread Uwe Schäfer
Igor Vaynberg schrieb: map WicketSessionFilter in front of those servlets, you will get both Session.get() and Session.get().getApplication(), and Application.get() awesome. i was not aware of this. thanks Igor. cu uwe - To

Re: WicketFilter

2009-08-30 Thread Uwe Schäfer
Igor Vaynberg schrieb: even though it is session specific it still sets application threadlocal. does not work, and does not look like it would: public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {

WicketFilter

2009-08-29 Thread Uwe Schäfer
Hi once in a while, i´d like to create a servlet (or worse) that can grab data from the wicket application. currently, i do it through singletons which feels quite dirty. i was wondering, if it would be possible to extend the WicketFilter, to offer a reference to anyone processing the

Re: Wicket + Webservice

2009-08-28 Thread Uwe Schäfer
Bas Gooren schrieb: to a WSDL provided by the payment provider. The WSDL specifies a SOAP binding, so that's what I need to implement. have the same requirements and we go for metro. it is a s easy as adding the dependency to pom and annotating @WebSerive. be sure to take at least version

Re: Wicket + Webservice

2009-08-28 Thread Uwe Schäfer
Bas Gooren schrieb: I have found JAX-WS Guice integration (see https://jax-ws-commons.dev.java.net/guice/), so maybe I can find a way to make it use the wicket-guice injector. easy, done it. i´ll publish it on sunday and send you a private mail. cu uwe

[ANN] Wicket Guice Metro, was: Wicket + Webservice

2009-08-28 Thread Uwe Schäfer
Bas Gooren schrieb: Hi Bas I would like to integrate a webservice callable by others into my existing Wicket application. The reason is that I'm integration a third-party payment provider and they provide a callback mechanism in the form of a WSDL I need to implement. I'd like to be able to

Design of components utilizing JS, was: Wicket and JQuery - lavalamp

2009-08-16 Thread Uwe Schäfer
Eyal Golan schrieb: hi Eyal Hi all,I've created a small Wicket module for the lavalamp JQuery library (some links below). nice. why not on wicketstuff? Please be kind and give me any suggestion and insights. i just looked at it quickly, but two things strike me: 1st: afaik you should

Re: Issue WICKET-2409

2009-08-08 Thread Uwe Schäfer
Eyal Golan schrieb: have you read thishttp://www.codesmell.org/blog/2009/08/pitfall-on-implementing-generic-methods/? just added a patch to WICKET-2409. searching the codebase for MapString, Object i found about a hundred occurances (not all of them publicly available, but some). could it

Re: Issue WICKET-2409

2009-08-08 Thread Uwe Schäfer
Uwe Schäfer schrieb: could it be a valid/possible strategy to change all those publicly available to MapString, Object ? ehm, meant to MapString, ? of course. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Issue WICKET-2409

2009-08-08 Thread Uwe Schäfer
burnstone schrieb: Type erasure would mean it can't, wouldn't it? agreed, but i fear i might be missing something. anyway, i tried with some testclasses to change a signature from foo(MapString, Object) to foo(MapString, ?) without breaking existing code compiled against the first version.

Re: Issue WICKET-2409

2009-08-08 Thread Uwe Schäfer
Igor Vaynberg schrieb: what happens if you overrode a method that took a mapstring,object and then change the super to mapstring,? ? while it certainly does no longer compile Name clash: The method foo(MapString,Object) of type C has the same erasure as foo(MapString,?) of type A but does

Re: Issue WICKET-2409

2009-08-08 Thread Uwe Schäfer
Igor Vaynberg schrieb: a compilation error is also a deal breaker. 1.4.x should be dropin replacements. we will have to wait for 1.5 to get this in. hopefully, this time around 1.5 will be a much shorter cycle. for sure, api change is never easy, not matter how minor it is. thx anyway and we

Re: Problem with Required component message

2009-08-02 Thread Uwe Schäfer
Martin Makundi schrieb: Debugging deeper into the problem shows that Wicket constructs a dot-notation component path of the requied component: page.panel.form.nested_panel.listview.index.componentId.Required and tries to look for a property with such name. don´t know about the exact state of

Re: Localizing thru database lookup

2009-07-24 Thread Uwe Schäfer
Dave Schoorl schrieb: updates the cached value. Of course, when you use an ORM-tool, you can alternatively use it's second level cache. i recently look in that corner, and iirc you don´t have to cache them at all, because wicket does in a layer above (when running in prod). cu uwe

Re: Use Guice....

2009-07-23 Thread Uwe Schäfer
Johannes Schneider schrieb: It's the better Spring ;-) agreed! - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

commit permission wicketstuff jslibraries

2009-07-11 Thread Uwe Schäfer
hi apart from jeremy´s agreement, what would be necessary to get commit permission for wicketstuff-core/jslibraries? it is quite tedious sending patches to jeremy on the long run ;) cu uwe - To unsubscribe, e-mail:

Re: commit permission wicketstuff jslibraries

2009-07-11 Thread Uwe Schäfer
Jeremy Thomerson schrieb: Just supply your sourceforge.net username and Igor or someone can give you commit permissions for the whole wicketstuff project. fine, thx. it is uschaefer_ (note the underscore at the end) cu uwe -

Re: Localization message for validators

2009-07-03 Thread Uwe Schäfer
Igor Vaynberg schrieb: yeah, it does seem inconsistent :| will have to think about this some more. on the first glance field.key seems ok and personally i do not mind going back to it but i need to search back through the archives and reread the threads that affected this change in the first

Re: Localization message for validators

2009-07-02 Thread Uwe Schäfer
Major Péter schrieb: Dear Igor referring to your comment on https://issues.apache.org/jira/browse/WICKET-2350 where it reads: the proper format of the override key is formid.componentid.key, you are missing the formid part. this was considered a bug in earlier versions of wicket and was

Re: Generate markup for hidden framework form field?

2009-06-13 Thread Uwe Schäfer
janneru schrieb: i also just found a similar one by uwe schaefer: http://www.codesmell.org/blog/2008/12/wicket-secureform/ cheers uwe. note that it is just a copy of what mighty igor posted here :) i´m using it in production a lot. thx again, igor. cu uwe

Detaching models

2009-05-06 Thread Uwe Schäfer
hi we have a problem here, which we think might be a common one, so i´d like to discuss. from time to time we create models (mostly LDMs) that are not actually reachable by components. (yes, you can argue that this is stupid, but it happens where 1:1 mapping between component and model is

Re: Detaching models

2009-05-06 Thread Uwe Schäfer
James Carman schrieb: Refer to the injection code to find out how to do the scanning. you can do this now, no need to wait for 1.5. simply create a detachlistener that scans the class for imodel fields and detaches them. awesome. i was not aware of this one. thanks.

Re: Detaching models

2009-05-06 Thread Uwe Schäfer
Igor Vaynberg schrieb: i thought not reachable means they are not in any default model slot...dunno yep, that´s what i meant. sorry i wasn´t clear on that one. using the listener to test the fields for IDetachable works pretty well. thanks again.

Re: Detaching models

2009-05-06 Thread Uwe Schäfer
Johan Compagner schrieb: If it are fields on components the currently the thing to do is simpel just make sure that those fields are detached in the detach method of the component that has those fields sure, but this is quite easy to forget (that´s what i´m good at), so doing it from the

wsjquery unmaintained?

2009-04-15 Thread Uwe Schäfer
hi looking at the jira of wicketstuff-jquery and its current state, am i right to say it is quite unmaintained right now? i need an advice here: i´d pretty much like to add some simple things and maybe even make it dependent on wicketstuff-jslib (if there is not a good argument against

wicketstuff-core:jquery accordion broken?

2009-04-13 Thread Uwe Schäfer
hi currently the accordion in jquery-examples does not work in FF nor IE. jQuery.filter(expr, [i]).r is undefined http://localhost:8080/resources/org.wicketstuff.jquery.accordion.JQAccordion/jquery.accordion.pack.js Line: 1 is this known, or should i try diggin in? about jquery anyway: i

Re: [OT] Framework for managing task

2009-02-23 Thread Uwe Schäfer
Kaspar Fischer schrieb: the task will be run, even if the server is shut down in between and the task needs to be restarted. Also, tasks that support cancellation (à la java.util.concurrent.ExecutorService) should be cancelled when the system stops. sounds like JMS. I´d recommend ActiveMQ.

Session Constructor

2009-02-09 Thread Uwe Schäfer
Hi i just stumbled across this code in 1.4m3: public Session(Request request){ locale = request.getLocale(); if (locale == null){ throw new IllegalArgumentException(Parameter 'locale' must not be null); } } please don´t call me picky, but am i right to say, that thiss error message is

final Session.setLocale (1.4m3)

2009-02-09 Thread Uwe Schäfer
hi why is it, that setLocale(Locale) is final on Session ? i´d really like to overwirte that in order to be able to hook some preference-storing stuff in there, like setting cookies and/or updating persistent preference data. i´d understand it, if Session´s constructor would call it, but

Re: final Session.setLocale (1.4m3)

2009-02-09 Thread Uwe Schäfer
Martijn Dashorst schrieb: Hi Martijn Why are you doing this with 1.4M3? 1.4RC2 is about to be made available. thanks for taking the time. well, we have an essential local patch against 1.4m3 which would not make it into the official wicket code, but is necessary for us (related to caucho,

Re: final Session.setLocale (1.4m3)

2009-02-09 Thread Uwe Schäfer
Igor Vaynberg schrieb: Hi Igor, it is no longer final in rc3 *g* what did i miss? yes, you missed the fact that #setLocale() marks session object as dirty - damn right. thx. cu uwe - To unsubscribe, e-mail:

Re: What are the consequences on sharing panels between pages?

2009-02-01 Thread Uwe Schäfer
Per Newgro schrieb: i would like to share (instance reuse) a navigation panel in my page flow. I try to achieve that so i can keep the current state of navigation components. It's a clone of the windows xp sidebar in system controls. sounds awful. would not do that. being deserialized from

Re: DefaultDataTable and AjaxEditableLabel

2009-01-22 Thread Uwe Schäfer
Philipp Daumke schrieb: I try to create an editable column using DefaultDataTable and AjaxEditableLabel. My current version is posted below but it's quite a hack and I wonder whether there's an official good solution for that before I go on with my work. i think the passing of your models

Re: URL fragment has unmatched key/value pairs

2009-01-08 Thread Uwe Schäfer
francisco treacy schrieb: dear francisco (i even had Fragment: admin, Fragment: bank-account , and things of the sort) i´ve seen this too. for instance on hybrid encoding, if you mount a page to /foo, /foo/bar/ will bring this error, while /foo/bar/baz wont, because it means bar=baz in

Re: Twenty Six Wicket Tricks

2008-12-30 Thread Uwe Schäfer
Jonathan Locke schrieb: I'd also be interested in getting some idea how many people would be interested in this book (would provide some fuel for me to get it done). where´s the pre-order link ? ;) you write it, we buy it. -- THOMAS DAILY GmbH Adlerstraße 19 79098 Freiburg Deutschland T +

Re: [OT] wicket users around the world

2008-12-12 Thread Uwe Schäfer
Freiburg (Breisgau), Germany - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

JavaScript Framework Dependencies

2008-11-02 Thread Uwe Schäfer
hi forgive me, if this topic is a dead horse already, but it really bugs me that this does not seem to be sorted out. i´m just wondering why there isn´t a project like org.wicketstuff.javascript.mootools/jquery/extjs/whatever the story: i was just implementing some mini behaviour using

Re: JavaScript Framework Dependencies / Wicket Stuff commit access

2008-11-02 Thread Uwe Schäfer
Igor Vaynberg schrieb: i´m just wondering why there isn´t a project like org.wicketstuff.javascript.mootools/jquery/extjs/whatever why? because you havent built it yet. wicketstuff is open for participation, feel free. the answer i was hoping for ;) i´d like to ask for permission to commit

Re: JavaScript Framework Dependencies

2008-11-02 Thread Uwe Schäfer
Sven Meier schrieb: this is exactly the reason why we have wicketstuff-prototype: http://wicketstuff.org/confluence/display/STUFFWIKI/wicketstuff-prototype good to hear that. i´ll look into it thx uwe - To unsubscribe,

Re: A wicket gathering?

2008-10-14 Thread Uwe Schäfer
Martin Funk schrieb: the london guys are already crouching together at google regularly. i´d love frankfurt :) And I'm not sure if Frankfurts places to hold a conference at, are as nice as Amsterdams places. okok. amsterdam was really nice. go amsterdam! ;)

Re: A wicket gathering?

2008-10-14 Thread Uwe Schäfer
marco.behler schrieb: Wicket Europe - London/ Frankfurt? = muchos biggos airportos e train stationes :) the london guys are already crouching together at google regularly. i´d love frankfurt :) -- THOMAS DAILY GmbH Adlerstraße 19 79098 Freiburg Deutschland T + 49 761 3 85 59 0 F + 49 761

Re: Mount URL to another host?

2008-10-12 Thread Uwe Schäfer
Zach Cox schrieb: I need the browser to actually redirect the user to http://othersite.com if they go to http://mysite.com/something, regardless of if they click a link or type it into the address bar. doesn´t this work there? class SomethingPage extends WebPage { // mounted accordingly

Re: HTTPS and FileUpload

2008-10-07 Thread Uwe Schäfer
Igor Vaynberg schrieb: hmm, create a jira issue. mabe if you override getmaxsize on the form and return -1 or null -indicating you dont care, we should not error out done. https://issues.apache.org/jira/browse/WICKET-1861 thx uwe

HTTPS and FileUpload

2008-10-06 Thread Uwe Schäfer
hi i think i hit a bug within wicket (or maybe it is a bug within the appserver?). i have a FileUpload on a wicket form and everything is smooth, _until_ it is taken to https. it looks like in https, the request does not (at least in caucho resin) tell the size of the request. This means

Re: Wicket critique

2008-09-23 Thread Uwe Schäfer
Yiannis Mavroukakis schrieb: http://stackoverflow.com/questions/116978/can-anyone-recommend-a-simple-java-web-app-framework complicated dir structure? countless xml files? come on... - To unsubscribe, e-mail: [EMAIL

Re: how to get values from a property file

2008-09-22 Thread Uwe Schäfer
Eyal Golan schrieb: ResourceModel rmAsc = new ResourceModel(Reports.Parameters.ascending); String ascending = (String) rmAsc.getObject(); if it were an inner class, you could just String ascending = getString(Reports.Parameters.ascending); cu uwe

Re: Dynamic PageExpiredPage

2008-09-22 Thread Uwe Schäfer
Markus Haspl schrieb: getApplicationSettings().setPageExpiredErrorPage(Page.class); In the Page.class i can't work with the PageParameters, so i can't make it dynamic. what kind of data would you like to pass to it, and - more important - where could you possibly get it from ? cu uwe

Re: Dynamic PageExpiredPage

2008-09-22 Thread Uwe Schäfer
Markus Haspl schrieb: i have a PageParameter (portalId) which indicates on which Portal the User is on. In the database there are a lot of portals, every portal has it's own users, pages and so on. So, every portal should have its own PageExpiredErrorPage. that is all fine, but where could

Re: Scalability PageMaps

2008-09-18 Thread Uwe Schäfer
James Carman schrieb: hi james Do you think that modulus number should be customizable? So, for now, you mod your number of users by 100. But, for larger sites, they might want to mod it by 1000 or 256 or whatever. actually, the first level dir is created from hash%1 and the second

Re: Scalability PageMaps

2008-09-18 Thread Uwe Schäfer
James Carman schrieb: So, why are we dividing it up in the first place if it can't lead to problems? before, there was just the sessionId, which - as we all know - could lead to problems with 32k concurrent sessions. what you now have is 8 numbers (like in 100.000.000 minus one) * 32k. i

Re: Scalability PageMaps

2008-09-18 Thread Uwe Schäfer
Johan Compagner schrieb: hi Johan or does another filesystem has another limit? from what i´ve googled, all FS i could think of either dont care, or limit to (almost) 32k or more. (could be wrong here, anyone?) hopefully the hash is a bit equally divided so the first dir will make 999

Re: Scalability PageMaps

2008-09-18 Thread Uwe Schäfer
James Carman schrieb: hi James That's where I got the 100 thing. ah, i lost track of that. did not want to sound harsh or anything. The folders won't be removed even after all of their subfolders are removed, right? no empty folder should be left behind (if you stay away from just

Re: Wicket and Mootools?

2008-09-17 Thread Uwe Schäfer
Agent Mahone schrieb: Does Mootools slow down the application? Does somebody had good expierence with it? using tooltips. no problems. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Scalability PageMaps

2008-09-16 Thread Uwe Schäfer
Matej Knopp schrieb: can you create an enhancement jira issue for this? will do. thx cu uwe -- THOMAS DAILY GmbH Adlerstraße 19 79098 Freiburg Deutschland T + 49 761 3 85 59 0 F + 49 761 3 85 59 550 E [EMAIL PROTECTED] www.thomas-daily.de Geschäftsführer/Managing Directors: Wendy

Re: Scalability PageMaps

2008-09-16 Thread Uwe Schäfer
Uwe Schäfer schrieb: can you create an enhancement jira issue for this? filed as WICKET-1837, patch against 1.4m3 included. thx uwe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Scalability PageMaps

2008-09-16 Thread Uwe Schäfer
Matej Knopp schrieb: I had a quick glance at the patch. The folder hierarchy it creates seems to be quite deep, i'm not sure if that is necessary. Perhaps 3-4 levels would be enough? Also I'm afraid that this approach would leave lot of empty folders. well, that depends on the number of

Re: Scalability PageMaps

2008-09-16 Thread Uwe Schäfer
Matej Knopp schrieb: Another approach would be just counting hash from session id and mod it. that´s much better for sure. i´ll do it asap. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

  1   2   >