Re: Problems with Autocomplete in 6.11.0

2013-10-03 Thread manuelbarzi
followed your patch, Jan, but the indicator was not hiding when deleting the input value (backspace key). so forced to hide the indicator on auto complete hiding [1]. for the moment it works, until the issue is solved in the original component. [1] wicket-autocomplete.js function

AutoCompleteTextField break in new wicket 6.10.0?

2013-08-27 Thread manuelbarzi
hi, after moving from wicket 6.9.1 to 6.10.0 caused all AutoCompleteTextFields to break up in the application (no results shown). also a quick test created from scratch with this component does not work. does anybody experience the same? thx -- View this message in context:

Re: AutoCompleteTextField break in new wicket 6.10.0?

2013-08-27 Thread manuelbarzi
sorry, i try to be more specific. after moving to wicket 6.10.0, it fails in two different cases: case 1: when adding this behavior: autoComplete.add(new AjaxFormComponentUpdatingBehavior(onKeyUp) { @Override protected void onUpdate(final AjaxRequestTarget target) {

Re: Wicket for Hybrid App

2013-03-25 Thread manuelbarzi
Create a native app for your phone that installs Tomcat, Jetty along with your Wicket webapp and whatever else you might nedd. Have your webapp on all those clients sync up with your central db whenever they come online :) how do you do explain that? running a fully compliant jvm in a

Re: Free Wicket guide now available!

2013-03-23 Thread manuelbarzi
miracle! thanks for your egoism, Andrea; made us happy :)

Re: The best way for designers and Wicket developers to collaborate

2013-02-20 Thread manuelbarzi
i apply the same practice as igor. it works great for both sides, dev and des. once des already has the html model, dev creates the first integration to the object-tree, providing feedback to des, so dom-tree follows the same coherence (in case needed to correct some parts), and following are just

Re: How to contribute to the reference guide

2013-02-06 Thread manuelbarzi
Few people contacted me personally to ask how they can contribute to the reference guide. I've just added http://martin-g.github.com/wicket-reference-guide/howtohelp.html that explains the steps. Let me know if I can improve it. Or just me a patch ;-) is there the intention to deprecate

Re: Wicket job market

2013-02-05 Thread manuelbarzi
The one thing i would say:if you want to have a nice presentation of vaadin,it comes out of the box,because thats a vaadin feature:nice presentation. No other framework has it such easy:) Vaadin efficiently speaks the language of emotions. So lets start a competition... Nice ;) but, i

Re: Wicket job market

2013-02-05 Thread manuelbarzi
If someone feels good enough in web design - HTML+CSS, video making, everything that will make the site more attractive for both technical and non-technical people: the new site (unfinished) is at https://github.com/dashorst/wicket-site the current site is at:

Re: Wicket job market

2013-02-05 Thread manuelbarzi
I think the problem is that most good software engineers see 'beauty' in the elegant component based, object oriented architecture of Wicket - we can all go oooh and h just thinking about how truly beautiful Wicket has been 'engineered'. We see beauty beyond the external presentation.

Re: Wicket job market

2013-02-05 Thread manuelbarzi
Reading the mails sent so far, I think Wicket should improve two aspects: -Its promotion -Support for stateless usage. The second point has already been indicated as a target for Wicket 7. The promotion stuff is probably the most challenging because many of Wicket supporters has technical

Re: Wicket job market

2013-02-04 Thread manuelbarzi
toolkits such as angular, backbone etc. One of the main reason why i started using wicket was my phobia for javascript. That phobia is no more. Infact i want more and more control over the javascript on my client. Does anyone else share the same sentiments? I am still a huge wicket fun and i

Re: Wicket job market

2013-02-04 Thread manuelbarzi
I think, you should not compare wicket with vaadin. Wicket is not the right answer for every project. Wicket does not compete with vaadin, because wicket is a different hammer. The rise of javascript apps could change the future of web development, but for such a project you should not use

little refactor moving onPopulate() to populate(), and make first called by second, and overridable?

2012-12-18 Thread manuelbarzi
hi, i would appreciate having the choice to do something on DataView.onPopulate (at end of populating process), but cannot override this method (final at RefreshingView). i know i have the choice to compare Item.getIndex() to DataView.getItemsPerPage() to determine the end of populating process,

Re: little refactor moving onPopulate() to populate(), and make first called by second, and overridable?

2012-12-18 Thread manuelbarzi
time dataview/repeater is rendered,you can do the same thing after overriding onbeforerender, pseducode below new DataView(){ public void onbeforerender(){ super.onbeforerender(); //this will create/populate children too //now my code } } On Tue, Dec 18, 2012 at 5:36 PM, manuelbarzi

Re: Session problem - object stays in after invalidate()

2012-09-27 Thread manuelbarzi
Which, when clicked, is performed, but in the second request, the User object, which set to null in my overriden signOut(), is back in my when are you exactly calling signOut? cant be deduced from your snippet and comment. Session.invalidateNow won't remove your custom session properties by

Re: handling session expiration feedback when clicking on bookmarkablepagelink

2011-12-27 Thread manuelbarzi
, Dec 27, 2011 at 3:14 PM, manuelbarzi manuelba...@gmail.com wrote: hi, this is wicket 1.4.19 ( cannot upgrade to 1.5). the scenary is: [1] when user is logged in [2] after inactive long time session expires [3] user clicks on bookmarkablepagelink [4] request handling automatically brings

handling session expiration feedback when clicking on bookmarkablepagelink

2011-12-27 Thread manuelbarzi
hi, this is wicket 1.4.19 ( cannot upgrade to 1.5). the scenary is: [1] when user is logged in [2] after inactive long time session expires [3] user clicks on bookmarkablepagelink [4] request handling automatically brings the user to homepage (default) if possible, what's the recommended way

Re: Validating HTML 4

2011-11-10 Thread manuelbarzi
in HTML the link tag has no end tag. in XHTML the link tag must be properly closed. source: http://www.w3schools.com/tags/tag_link.asp . On Thu, Nov 10, 2011 at 9:29 AM, Martin Grigorov mgrigo...@apache.org wrote: So you say that br/ is valid but link / is not. Both of them are void

Re: Validating HTML 4

2011-11-10 Thread manuelbarzi
, 2011 at 10:39 AM, manuelbarzi manuelba...@gmail.com wrote: in HTML the link tag has no end tag. in XHTML the link tag must be properly closed. source: http://www.w3schools.com/tags/tag_link.asp . On Thu, Nov 10, 2011 at 9:29 AM, Martin Grigorov mgrigo...@apache.org wrote: So you say

Re: DateTextField

2011-11-07 Thread manuelbarzi
wicket-extensions offers you a default pattern date conversion, while wicket-datetime forces you to determine one. . On Mon, Nov 7, 2011 at 1:57 PM, chrome1235 kemal.m...@gmail.com wrote: Hi, There are two DateTextField components. So, which I use it?

Re: Form action from Form component

2011-11-04 Thread manuelbarzi
may you try extending overriding your form :? YourForm extends Form { ... ... onComponentTag(ComponentTag tag) { ... super.onComponentTag(tag); String action = tag.getString(action); ... } On Fri, Nov 4, 2011 at 3:06 PM, Brian Mulholland blmulholl...@gmail.comwrote: How do I get the

Re: Dynamically choosing component to add

2011-10-31 Thread manuelbarzi
MarkupContainer addOrReplace :? . On Mon, Oct 31, 2011 at 2:49 PM, Bertrand Guay-Paquet ber...@step.polymtl.ca wrote: Hi, Was is the proper way to choose which panel to add to a page based on a model's object value? Currently, I directly access the model and check the value during

Re: Bookmarkable link within AjaxLazyLoadPanel

2011-10-27 Thread manuelbarzi
Your HTML didn't make it. Better return a Panel/Fragment that contains the link+label. it seems to be merged with the rich html mail. clicking on the link below (nabble post), the html is perfectly visible. may it be considered for next time ;-) View this message in context:

Re: AjaxTabbedPanel - intercept switching tabs

2011-10-20 Thread manuelbarzi
may you follow something like this: public class AjaxTabbedPanel extends TabbedPanel { public AjaxTabbedPanel(String id, ListITab tabs) { super(id, tabs); setOutputMarkupId(true); setVersioned(false); } @Override

Re: Validating in form returns always error but textfield has a value

2011-10-18 Thread manuelbarzi
at which point are you pretending to call validate, what logic fires it? see no code if defaultFormProcessing is true (default) on submitting components, then all validation and form updating is executed automatically. On Tue, Oct 18, 2011 at 8:52 AM, rawe ralph.wey...@dachser.com wrote: Here

Re: Validating in form returns always error but textfield has a value

2011-10-18 Thread manuelbarzi
See also Wicket API Doc of Form: ( http://wicket.apache.org/apidocs/1.4/org/apache/wicket/markup/html/form/Form.html Wicket API Doc ) /If you want you can call validate() to execute form validation, hasError() to find out whether validate() resulted in validation errors, and

Re: UrlRenderer [1.5]: Why is absolute of relative Url ending with a [dot]?

2011-10-18 Thread manuelbarzi
Component.urlFor - calls - RequestCycle.urlFor - calls - UrlRenderer.renderUrl - if relative url, calls - UrlRenderer.renderRelativeUrl - which may append / return the misterious . . On Tue, Oct 18, 2011 at 2:50 PM, Per Newgro per.new...@gmx.ch wrote: Hi, i try to add a sitemap for my app.

Re: Weblogic deployment

2011-10-18 Thread manuelbarzi
Application.initializeComponents() may you try running wl in non-blank-spaces path? (zip:C:/Documents[16 charater here])...) . On Tue, Oct 18, 2011 at 3:31 PM, Wolfgang Schreiner wschrei...@csc.com wrote: Hi all, I am having problems deploying my web application on Weblogic 10.3.2.

Re: UrlRenderer [1.5]: Why is absolute of relative Url ending with a [dot]?

2011-10-18 Thread manuelbarzi
Matej, Igor? . On Tue, Oct 18, 2011 at 3:57 PM, Per Newgro per.new...@gmx.ch wrote: Thanks for reply manuel, sorry for being not clear on this. While debugging i've found that already. But why is this . be set. That's not clear to me. Per Am 18.10.2011 15:47, schrieb manuelbarzi

Re: page expire / ajax error

2011-10-18 Thread manuelbarzi
it seems to be tomcat mixing/sharing user/session data/resources somewhere and reseting it on second start :? . On Tue, Oct 18, 2011 at 4:35 PM, Jonathan Locke jonathan.lo...@gmail.com wrote: I have two wicket applications running on the same box (my laptop, for example) with one on port 8880

Re: can i get the selected value from DropdownChoice not in the onSubmit method of a form

2011-10-17 Thread manuelbarzi
add ajax behavior, listen to onchange event, and then capture the new value. . On Mon, Oct 17, 2011 at 12:18 PM, TimmyDeng dengxiaoxiax...@gmail.com wrote: I need to use DropdownChoice in a ModelWindow, but if i get the selected value in the onSubmit method of a form, the ModelWindow will be

Re: can i get the selected value from DropdownChoice not in the onSubmit method of a form

2011-10-17 Thread manuelbarzi
please, note that wicket-users forum is plenty full of examples like this, so the forum, and so the official wicket-examples. a good suggestion is to deeply look there for an answer before posting. as suggested before, may you add onchangeajaxbehaviour to your dropdownchoice, as shown in the

Re: Validating in form returns always error but textfield has a value

2011-10-17 Thread manuelbarzi
is the form submitted each time a node is changed? if not, then it could be normal you read nulls, as the values are still on browser, but havent flown to server. On Mon, Oct 17, 2011 at 5:11 PM, rawe ralph.wey...@dachser.com wrote: I'm using a LinkTree and to each node a panel is referenced.

Re: Validating in form returns always error but textfield has a value

2011-10-17 Thread manuelbarzi
may you provide a code shot for review? - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: ajax form submit, loading gif and swap panels

2011-10-07 Thread manuelbarzi
may you try assembling wiquery to your web-app (http://code.google.com/p/wiquery/). it makes jquery integration trivial in wicket.. On Fri, Oct 7, 2011 at 1:22 PM, wholalotta ardaas...@gmail.com wrote: Any comment or documentation to learn how to call jquery function inside of this methot?

Re: Community tools

2011-10-07 Thread manuelbarzi
it sounds great, but why not fully concentrate on wicket. apache will adopt whatever magic-solution asa it'll be licence compliant, and affordable by resources and directives. for the moment this mailing list has been a very successful machine, and still has much to bring. outside, whatever

Re: Community tools

2011-10-07 Thread manuelbarzi
So what is the best way (official? permanent?) to link to a previous response? Link to a posting on Nabble or one of the other mailinglist-aggregators out there perhaps? :) and keep patience while somentity is re-implementing stacko, making it os, waiting it's fully established and tested,

Re: pretty strange behavior with TextArea containing remaining output html code inside

2011-09-29 Thread manuelbarzi
...@gmail.com wrote: file a jira issue -igor On Wed, Sep 28, 2011 at 9:52 AM, manuelbarzi manuelba...@gmail.com wrote: right. may wicket html validation complain in future version for this particular case. low priority issue... . On Wed, Sep 28, 2011 at 6:42 PM, Igor Vaynberg igor.vaynb

Re: pretty strange behavior with TextArea containing remaining output html code inside

2011-09-29 Thread manuelbarzi
: This is improved in 1.5.0. We expand some HTML elements from name/ to name/name You are recommended to upgrade. On Thu, Sep 29, 2011 at 9:44 AM, manuelbarzi manuelba...@gmail.com wrote: tested on wicket 1.5.0 and paradoxically a single-closed textarea tag does validate as legal too, like

Re: pretty strange behavior with TextArea containing remaining output html code inside

2011-09-29 Thread manuelbarzi
: Wicket doesn't act as (X)HTML validator. It never did. You may use https://github.com/dashorst/wicket-stuff-markup-validator for that On Thu, Sep 29, 2011 at 9:53 AM, manuelbarzi manuelba...@gmail.com wrote: sure, as you may have read, i already tested on wicket 1.5.0 and renders ok. but from

Re: filter feedback messages

2011-09-28 Thread manuelbarzi
how is your composite? page |-Form (with own FeedbackPanel) ||-Panel (with own FeedbackPanel) | |-Other stuff ? On Wed, Sep 28, 2011 at 11:33 AM, Miroslav F. mir...@seznam.cz wrote: hi folks, i have this problem: have panel: wicket:panel        ba

Re: filter feedback messages

2011-09-28 Thread manuelbarzi
only messages produced in PanelCart and ignore others messages? -Original Message- From: manuelbarzi [mailto:manuelba...@gmail.com] Sent: 28. September 2011 11:51 To: users@wicket.apache.org Subject: Re: filter feedback messages how is your composite? page    |-Form (with own

Re: filter feedback messages

2011-09-28 Thread manuelbarzi
(this))); in PanelCart.class, panel still show messages produced in form. -Original Message- From: manuelbarzi [mailto:manuelba...@gmail.com] Sent: 28. September 2011 12:02 To: users@wicket.apache.org Subject: Re: filter feedback messages have you tried ContainerFeedbackMessageFilter

Re: filter feedback messages

2011-09-28 Thread manuelbarzi
(new PanelCart(cart)); } -Original Message- From: manuelbarzi [mailto:manuelba...@gmail.com] Sent: 28. September 2011 12:22 To: users@wicket.apache.org Subject: Re: filter feedback messages what's the feedback message filter you've added to the form? 2011/9/28 Miroslav F. mir

pretty strange behavior with TextArea containing remaining output html code inside

2011-09-28 Thread manuelbarzi
this error happens on this simple composite (wicket 1.4.17): Page |-Panel |-Form |-TextField |-TextField |-TextArea |-TextField |-TextField |-Button |-Button when just rendering this simple page (no logic implemented yet),

Re: pretty strange behavior with TextArea containing remaining output html code inside

2011-09-28 Thread manuelbarzi
TextArea is one-self-closed tag .../. should TextArea two-opening-closing tags ../... work fine. On Wed, Sep 28, 2011 at 6:18 PM, manuelbarzi manuelba...@gmail.com wrote: this error happens on this simple composite (wicket 1.4.17): Page   |-Panel      |-Form         |-TextField

Re: pretty strange behavior with TextArea containing remaining output html code inside

2011-09-28 Thread manuelbarzi
should a single closed textarea tag be a problem? neither html editor nor wicket markup validation complains about it. . On Wed, Sep 28, 2011 at 6:26 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: sounds like a problem with your html... -igor On Wed, Sep 28, 2011 at 9:18 AM, manuelbarzi

Re: pretty strange behavior with TextArea containing remaining output html code inside

2011-09-28 Thread manuelbarzi
opening-closing textarea tag (textarea../textarea) is supported. On Wed, Sep 28, 2011 at 6:25 PM, manuelbarzi manuelba...@gmail.com wrote: TextArea is one-self-closed tag .../. should TextArea  two-opening-closing tags ../... work fine. On Wed, Sep 28, 2011 at 6:18 PM, manuelbarzi

Re: pretty strange behavior with TextArea containing remaining output html code inside

2011-09-28 Thread manuelbarzi
right. may wicket html validation complain in future version for this particular case. low priority issue... . On Wed, Sep 28, 2011 at 6:42 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: per html spec textarea must have a closing tag... -igor On Wed, Sep 28, 2011 at 9:25 AM, manuelbarzi

Re: creating a textarea with a radiobutton using Listview

2011-09-26 Thread manuelbarzi
that iterator you added has no much sense, as it represents only an item on the list, but not the list itself. moreover you don't need modifying components, but updating their models, as mentioned in mail before (may you study wicket models a bit more... see

Re: Servlet and Wicket

2011-09-26 Thread manuelbarzi
i would suggest you, hohaeri, to do the migration progressively, by keeping your servlet-application living with your new wicket-application, while translating one by one your pages from the first to the latter, til finally have all your application fully migrated. if you have correctly done SoC

Re: creating a textarea with a radiobutton using Listview

2011-09-23 Thread manuelbarzi
First I created one checkbox and one textfield for each line. And when the user selects the checkbox I was able to set the related boolean values succesfuly. But I needed to put a restriction. Only one checkbox can be selected to submit the form in the followıng structure. Textarea checkbox

Re: creating a textarea with a radiobutton using Listview

2011-09-22 Thread manuelbarzi
(new Radio(radioCheck, new Model(Boolean.FALSE), adminRadioGroup)); On Wed, Sep 21, 2011 at 9:36 PM, wholalotta ardaas...@gmail.com wrote: Hi manuelbarzi, Thanks for the usefull websites I reviewed all of them and I tried the following. I created a radiogroup but still i can select all

Re: creating a textarea with a radiobutton using Listview

2011-09-22 Thread manuelbarzi
i guess you are trying to use a Radio like a CheckBox (selected = true / false) right? if this is the case, then why don't you just use a CheckBox and css-style it like a Radio? Radio-s are commonly used to select between two or more values, and that's why RadioGroup provides the capability to

Re: creating a textarea with a radiobutton using Listview

2011-09-21 Thread manuelbarzi
may repeaters usage help you https://cwiki.apache.org/WICKET/listview-and-other-repeaters.html . On Wed, Sep 21, 2011 at 1:08 PM, wholalotta ardaas...@gmail.com wrote: Hi, I want to create a form which contains textareas and radiobuttons line by line like; Textarea Radiobutton Textarea

Re: creating a textarea with a radiobutton using Listview

2011-09-21 Thread manuelbarzi
see if this doc on ListView + Checkboxes may give you a hint https://cwiki.apache.org/WICKET/listview-with-checkboxes.html . On Wed, Sep 21, 2011 at 2:18 PM, wholalotta ardaas...@gmail.com wrote: Thanks but still couldnt figure out how will i set the boolean values according to the selected

Re: creating a textarea with a radiobutton using Listview

2011-09-21 Thread manuelbarzi
yet another example on RadioGroup with DataView repeater https://cwiki.apache.org/WICKET/using-radiogroups.html . On Wed, Sep 21, 2011 at 3:44 PM, manuelbarzi manuelba...@gmail.com wrote: see if this doc on ListView + Checkboxes may give you a hint https://cwiki.apache.org/WICKET/listview

Re: DI in wicket

2011-09-20 Thread manuelbarzi
see also org.apache.wicket.spring.common.web.ExampleApplication in wicket-examples On Mon, Sep 19, 2011 at 9:20 PM, Sven Meier s...@meiers.net wrote: see https://cwiki.apache.org/WICKET/spring.html On 09/19/2011 09:08 PM, sakthi vel wrote: Hi All, I would like to know how to use

Re: Wicket 1.5: request mapper to make all urls absolute

2011-09-19 Thread manuelbarzi
https://cwiki.apache.org/WICKET/how-to-do-things-in-wicket.html . On Mon, Sep 19, 2011 at 1:57 AM, Bas Gooren b...@iswd.nl wrote: After quite a lot of searching and testing, I've finally been able to get things working. In the end, I was able to solve my problem in the most logical place,

Re: Wicket 1.5: request mapper to make all urls absolute

2011-09-19 Thread manuelbarzi
://cwiki.apache.org/confluence/display/WICKET/Request+mapping Or https://cwiki.apache.org/**WICKET/request-mapping.htmlhttps://cwiki.apache.org/WICKET/request-mapping.htmlwhen it's updated. Thanks for the pointer. Op 19-9-2011 9:09, schreef manuelbarzi: https://cwiki.apache.org/**WICKET/how

Re: Display HTML in Label with validation

2011-09-16 Thread manuelbarzi
, 2011 at 5:31 PM, manuelbarzi manuelba...@gmail.com wrote: may HtmlDocumentValidator help you. . On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch daniel.st...@gmail.com wrote: Hi, How to display dynamic HTML content on page which can be invalid (because this HTML is entered

static validators feedback unrendered on page with multiple forms and feedback filtered

2011-09-15 Thread manuelbarzi
hi, got the following composite: page |-form1 |     |-field1 |     |     |-StringValidator.MaximumLengthValidator [1] |     |-feedbackPanel1(ComponentFeedbackMessageFilter(form1) [3]) |-form2       |-field2       |     |-StringValidator.MaximumLengthValidator [2]      

Re: GAE, DataView and performance

2011-09-15 Thread manuelbarzi
may you execute the query db in IDataProvider.iterator, instead of populateItem. see IDataProvider javadoc. . On Thu, Sep 15, 2011 at 3:16 PM, Chris Merrill ch...@webperformance.com wrote: I'm using Objectify for datastore access in GAE, though the problem would be the same if I was using the

Re: Panel Loop

2011-09-15 Thread manuelbarzi
may you need a RepeatingView. see javadoc. . On Thu, Sep 15, 2011 at 5:10 PM, Fred smiths...@hotmail.com wrote: Hello, I have a panel to which I want to add multiple items. I have put it into a loop and as long as I have only one panel I am good, with more than one it errorsI get why it

Re: Display HTML in Label with validation

2011-09-15 Thread manuelbarzi
may HtmlDocumentValidator help you. . On Thu, Sep 15, 2011 at 5:05 PM, Daniel Stoch daniel.st...@gmail.com wrote: Hi, How to display dynamic HTML content on page which can be invalid (because this HTML is entered by a user). I can use Label.setEscapeModelStrings(false), but with invalid

Re: Free wicket from component hierarchy hell

2010-11-09 Thread manuelbarzi
your proposal is to wicket, what auto-generating-java-servlet-code is to a JSP (~ what a tied-and-deciding-designer-code was to a programmer-code in the past) that is, simply going back to hell :) why don't you stay on JSP domain, instead, sir? On Tue, Nov 9, 2010 at 1:47 PM, Matthias Keller

Re: Free wicket from component hierarchy hell

2010-11-09 Thread manuelbarzi
may it be enough just create an independent simple html-code-processor-to-wicket-java-code-tool, that would auto-generate that tedious code you would like to avoid? a simple java-class-processor-tool may help for that... possible an eclipse-wicket-plugin-tool, if it doesn't already exists... On

Re: Free wicket from component hierarchy hell

2010-11-09 Thread manuelbarzi
Martin, isn't it all a matter of principles towards keeping a correct separation of concerns? one of the nice things of wicket is that java-code (programmer) and html-code (designer) are quite independent. only watching a wicket-java-file does a programmer deduce the structure and behaviour of

automatically delete|clean disk|file|page|store on server crash|restart

2010-01-14 Thread manuelbarzi
how can old pagestore files be automatically deleted when server restarts? in a crash, for example, in which old sessions left their pagestore files on disk

Re: Help with Wicket Adoption Numbers

2010-01-13 Thread manuelbarzi
struts is as c what wicket is as java (still beyond c++)

Re: Help with Wicket Adoption Numbers

2010-01-11 Thread manuelbarzi
may you take into account the new wicket-like framework, Apache Click, too, just passing the incubator now... as another alternative to compare with, but also to show the tendency - and then the present and future - of web presentation frameworks... ;) On Mon, Jan 11, 2010 at 1:12 PM, Per

DiskPageStore file increasing to max size by only refreshing a HomePage

2010-01-07 Thread manuelbarzi
Hi, - the scenario is this: jmeter stress-testing (10 simultaneous users with no ramp-up and an infinite-loop cycle) a wicket application (extends SpringWebApplication) by only refreshing the HomePage. - the result is: observing the disk, the pagemap file for each session (10 items), there is

Re: DiskPageStore file increasing to max size by only refreshing a HomePage

2010-01-07 Thread manuelbarzi
the url is this: http://localhost:9090/test/

Re: DiskPageStore file increasing to max size by only refreshing a HomePage

2010-01-07 Thread manuelbarzi
if this is the behaviour by default, then, how do you avoid a DoS attack? i mean, to put an example, if a simple app like this receives thousand of users just refreshing the home page, then the pagestore will be overloaded... may this become a disk I/O overhead and its other possible consequences.

Re: DiskPageStore file increasing to max size by only refreshing a HomePage

2010-01-07 Thread manuelbarzi
application. If you want to avoid a DoS attack (which isn't really always possible) you need a good firewall. -Matej On Thu, Jan 7, 2010 at 2:29 PM, manuelbarzi manuelba...@gmail.com wrote: if this is the behaviour by default, then, how do you avoid a DoS attack? i mean, to put an example

Re: DiskPageStore file increasing to max size by only refreshing a HomePage

2010-01-07 Thread manuelbarzi
that good be great! dos attack is very rude scenario? ok, a more realistic scenario would be - as happens here - an app that has a very huge amount of users during only one week per year (about 40k users connecting to this app for subscriptions and checking some personal information). let's say

Re: DiskPageStore file increasing to max size by only refreshing a HomePage

2010-01-07 Thread manuelbarzi
about unversioned, i have just done a quick test on wicket-examples helloworld, adding serialVersionUID (not informed in the examples) and the result is the same: pagestore file increasing to the infinite (max size of course :) stateless page is next, but limitations in this scenario should be

session.size - pagemaps.size = http-session.size?

2009-12-28 Thread manuelbarzi
is this rule approx true? as far as it's described in the javadoc: [1] org.apache.wicket.Session.getSizeInBytes() Size of this session, including all the pagemaps it contains [2] org.apache.wicket.PageMap.getSizeInBytes() Size of this page map in bytes, including a sum of the sizes of all the

Re: Wicket architecture diagram?

2009-05-16 Thread manuelbarzi
hi, i am preparing a wicket architecture document for a project and i need a preliminary diagram asap. what is the result, is the diagram presented here by Subbu already corrected (ended) and presented somewhere? it's very important for this document. thanks jWeekend wrote: Jeremy, Yes,

wicket features security plans for next version... already ended?

2009-05-15 Thread manuelbarzi
Hi, at wicket features security there is a mention about: There are plans for the next version of Wicket to add URL encryption to support highly secure web sites. is this already ended? please, let me know asap, i am preparing an architecture documentation to justify wicket at this point.

wicket features security plans for next version... already ended?

2009-05-15 Thread manuelbarzi
Hi, at wicket features security there is a mention about: There are plans for the next version of Wicket to add URL encryption to support highly secure web sites. is this already ended? please, let me know asap, i am preparing an architecture documentation to justify wicket at this point.

wicket features scalability, clustering plans for next version... already ended?

2009-05-15 Thread manuelbarzi
hi, again regarding wicket features scalability, clustering there is a mention about: The next version of Wicket will support client-side models for zero-state scalability. is this already released? please, let me know asap. thank you.