Re: [Wicket-user] wicket performance

2007-04-18 Thread Johan Compagner
those things could be mapped by wicket.js if needed for example focus can already be done through an ajax request target (focusComponent) johan On 4/18/07, Shailendra Pandey [EMAIL PROTECTED] wrote: Ok, I went through it i feel the dojo/prototype way of integration is going to lastThe

Re: [Wicket-user] Spring integration question

2007-04-18 Thread nlif
Very well. But, this means that not even the Application holds the services as members. Every call to getService() will go to the spring context, and create a new proxy, right? This seems sub-optimal. Is the Application object ever serialized? If it is not, and I make sure never to hold reference

Re: [Wicket-user] Spring integration question

2007-04-18 Thread Igor Vaynberg
the application is never serialized, so you are free to hold any references there you like. -igor On 4/17/07, nlif [EMAIL PROTECTED] wrote: Very well. But, this means that not even the Application holds the services as members. Every call to getService() will go to the spring context, and

[Wicket-user] Foldable panels

2007-04-18 Thread Stefan Kanev
Hello. I'm trying to achieve the following effect using Wicket 1.3. I want to have a component (let's dub it widget), that draws a thin border around its contents and makes it possible to fold and unfold it (pretty much like the Quick Contacts and Labels in GMail. In the perfect scenario, I would

Re: [Wicket-user] wicket performance

2007-04-18 Thread Alexey Maksimov
On Tue, 17 Apr 2007 14:29:09 -0700 Igor Vaynberg [EMAIL PROTECTED] wrote: Where can I get details of those benchmarks? see here http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/branches/wicket-1.x/wicket-benchmark/ it has a jmeter script that executes the benchmark. Thank

Re: [Wicket-user] wicket performance

2007-04-18 Thread Matej Knopp
Maybe one of them was ironic. -Matej On 4/18/07, Alexey Maksimov [EMAIL PROTECTED] wrote: On Tue, 17 Apr 2007 14:29:09 -0700 Igor Vaynberg [EMAIL PROTECTED] wrote: Where can I get details of those benchmarks? see here

Re: [Wicket-user] Issue with redirection to intro page after logout

2007-04-18 Thread Johan Compagner
What do you mean with a full link? including host and port? this is not the case. bookmarkable page links also generate ../.. so there is not a big difference there just look at : http://wicketstuff.org/wicket13/niceurl/the/homepage/path the ../ doesn't also matter to much because this url just

Re: [Wicket-user] wicket performance

2007-04-18 Thread Johan Compagner
yeah eelco is a funny guy. johan On 4/18/07, Matej Knopp [EMAIL PROTECTED] wrote: Maybe one of them was ironic. -Matej On 4/18/07, Alexey Maksimov [EMAIL PROTECTED] wrote: On Tue, 17 Apr 2007 14:29:09 -0700 Igor Vaynberg [EMAIL PROTECTED] wrote: Where can I get details of those

[Wicket-user] Is Wicket Scalability Issue all about More memory?

2007-04-18 Thread Ayodeji Aladejebi
There are often scalability talks about wicket and several users (thousands). The fact is that Wicket is a tempting framework to use for any project even websites and not neccesarily intranet applications. Now we all know that Wicket uses session heaviliy making it memory demanding. But my

Re: [Wicket-user] Foldable panels

2007-04-18 Thread Matej Knopp
Hi, this looks like something borders are for. -Matej On 4/18/07, Stefan Kanev [EMAIL PROTECTED] wrote: Hello. I'm trying to achieve the following effect using Wicket 1.3. I want to have a component (let's dub it widget), that draws a thin border around its contents and makes it possible to

Re: [Wicket-user] Is Wicket Scalability Issue all about More memory?

2007-04-18 Thread Johan Compagner
if you have your database caching worked out (if you cache db objects) then adding more memory is also easy by placing more servers and use sticky sessions that are round robin assigned to servers you also then have fail over for free the biggest bottleneck will be the database and the right

[Wicket-user] ReloadingWicketFilter and Spring with annotation

2007-04-18 Thread Decebal Suiu
I try to use in my application a TestFilter (extends ReloadingWicketFilter) and spring annotations and I received this exception: java.lang.IllegalArgumentException: interface test.wicket.service.UserService is not visible from class loader. TestFilter contains only a static block with this line:

[Wicket-user] unsuscribe

2007-04-18 Thread waqas shahwar
please unsuscribe me from mailing list.I don't want email from wicket _ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/

Re: [Wicket-user] Is Wicket Scalability Issue all about More memory?

2007-04-18 Thread Matej Knopp
First, the 16000 sessions for a server is a highly theoretical. I can't imagine single machine that would be able to handle 16000 concurrent request (while of course doing some meaningfull processing, like updating database...) With Wicket 1.3, stating that memory is the scalability blocker is

Re: [Wicket-user] ReloadingWicketFilter and Spring with annotation

2007-04-18 Thread Jean-Baptiste Quenot
* Decebal Suiu: I try to use in my application a TestFilter (extends ReloadingWicketFilter) and spring annotations and I received this exception: java.lang.IllegalArgumentException: interface test.wicket.service.UserService is not visible from class loader. TestFilter contains only a static

Re: [Wicket-user] ReloadingWicketFilter and Spring with annotation

2007-04-18 Thread Decebal Suiu
--- Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Decebal Suiu: I try to use in my application a TestFilter (extends ReloadingWicketFilter) and spring annotations and I received this exception: java.lang.IllegalArgumentException: interface test.wicket.service.UserService is not

Re: [Wicket-user] wicket performance

2007-04-18 Thread Alexey Maksimov
On Tue, 17 Apr 2007 14:28:49 -0700 Eelco Hillenius [EMAIL PROTECTED] wrote: Thank you, this is the by far the most friendly answer. The others are just making fun of me... I'm quite new to wicket and I like the concept. However I'm going to build an application that serves many clients at

Re: [Wicket-user] ReloadingWicketFilter and Spring with annotation

2007-04-18 Thread Jean-Baptiste Quenot
Yes of course, the reloading filter is not meant to work with your data layer. Please read the Javadoc for ReloadingWicketFilter carefully, and more precisely the paragraph about Spring. Use the patterns to exclude the data layer from the reloading feature, it is only supposed to

Re: [Wicket-user] ReloadingWicketFilter and Spring with annotation

2007-04-18 Thread Decebal Suiu
--- Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Decebal Suiu: I try to use in my application a TestFilter (extends ReloadingWicketFilter) and spring annotations and I received this exception: java.lang.IllegalArgumentException: interface test.wicket.service.UserService is not

Re: [Wicket-user] wicket performance

2007-04-18 Thread Francis Amanfo
On 4/18/07, Alexey Maksimov [EMAIL PROTECTED] wrote: Thanks again, Alexey. P.S. Is wicket community is friendly to newbies is a myth, I wonder? No, not a myth- they're a very friendly community. I think the way you formulated your question called for those jokes. You could have posed it a

Re: [Wicket-user] ReloadingWicketFilter and Spring with annotation

2007-04-18 Thread Decebal Suiu
--- Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: Yes of course, the reloading filter is not meant to work with your data layer. Please read the Javadoc for ReloadingWicketFilter carefully, and more precisely the paragraph about Spring. Use the patterns to exclude the data

Re: [Wicket-user] unsuscribe

2007-04-18 Thread Vincent Demay
waqas shahwar a écrit : please unsuscribe me from mailing list.I don't want email from wicket go on https://lists.sourceforge.net/lists/listinfo/wicket-user and do it yourself _ Express yourself instantly with MSN Messenger!

Re: [Wicket-user] Listview listitem onchange

2007-04-18 Thread wicketmarsh
I fully agree that I need to do it on client side, can somebody tell me how to access wicket id compoent (in my case it is addresscomponent which is not html element ) inside javascript. thanks, pradip igor.vaynberg wrote: however/whatever he wants to do it needs to be done on the client.

Re: [Wicket-user] Problem with TinyMCE on a panel

2007-04-18 Thread Iulian Costan
done, username: syca /iulian On 4/17/07, Igor Vaynberg [EMAIL PROTECTED] wrote: lulian could you please sign up for wicketstuff.org/jira so i can set you as the lead for wicket contrib tinymce thanks -igor On 4/11/07, Iulian Costan [EMAIL PROTECTED] wrote: hi, there is an already

[Wicket-user] Using two panels in complementary manner.

2007-04-18 Thread vivek verma
Hi All, I am using two panels in a form, in complementary manner. First panel, UserNamePanel is having the inputs, firstName, middlename, lastName, and two submit buttons and isRequired validators for these fields. Second panel, UserPasswordPanel is having the inputs, loginPassword,

Re: [Wicket-user] [datetime] DateConverter

2007-04-18 Thread ChuckDeal
Eelco Hillenius wrote: Thanks. I'll take a look when I can find some time. Eelco I just merged down from svn from just prior to the package rename and I can see that quite a few changes were made. I am fixing those problems now and I can submit a patch for those changes. I still have

Re: [Wicket-user] allow vanilla html alternatives to wicket namespaced tags (Was: Multi page inheritance)

2007-04-18 Thread Johan Compagner
i do hope that it will be: div wicket:extend=true?.../div On 4/14/07, Thomas Singer [EMAIL PROTECTED] wrote: My IMarkupFilter implementation converts, e.g. div wicket:id=:extend.../div to wicket:extend.../wicket:extend. No need to add parameters at the closing div tag. Tom Jean-Baptiste

[Wicket-user] Wicket2.0

2007-04-18 Thread atul
Hi a.Is there a timeline by which we will have 2.0?...I just wanted to speculate for myself how much code change would it be ...the later 2.0 comes the more we will have to change as we are developing our web app at a fast pace... b.What are the advantages of using wicket2.0??I read

Re: [Wicket-user] Wicket2.0

2007-04-18 Thread Eelco Hillenius
a.Is there a timeline by which we will have 2.0?...I just wanted to speculate for myself how much code change would it be ...the later 2.0 comes the more we will have to change as we are developing our web app at a fast pace... You don't have to keep up with the latest release though.

[Wicket-user] Where to place images

2007-04-18 Thread nlif
Hi, I understand that it is the recommendation to place html files in the src folder, along with the corresponding java files. However, what about images? Should I place them with the html and java files as well? I can actually think of good reasons for placing all images in a central place.

Re: [Wicket-user] [datetime] DateConverter

2007-04-18 Thread Eelco Hillenius
Cheers, I saw it. Still no time I'm afraid. Eelco On 4/18/07, ChuckDeal [EMAIL PROTECTED] wrote: Eelco Hillenius wrote: Thanks. I'll take a look when I can find some time. Eelco I just merged down from svn from just prior to the package rename and I can see that quite a few

Re: [Wicket-user] Foldable panels

2007-04-18 Thread Igor Vaynberg
yes, when it is collapsed call border.setrenderbody(false), or whatever that method is called -igor On 4/18/07, Matej Knopp [EMAIL PROTECTED] wrote: Hi, this looks like something borders are for. -Matej On 4/18/07, Stefan Kanev [EMAIL PROTECTED] wrote: Hello. I'm trying to achieve the

Re: [Wicket-user] wicket performance

2007-04-18 Thread Eelco Hillenius
Ok. Now I've read about detachable models and terracotta things become much clearer to me. The question about how many concurrent requests one server with wicket can serve, still stands. I've read about 500 concurrent requests with 64M heap for wicket 1.3 in parallel thread. Any other

Re: [Wicket-user] wicket performance

2007-04-18 Thread Eelco Hillenius
The others are just making fun of me... They make fun of me all the time as well. :) Eelco - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your

[Wicket-user] Internal error cloning object

2007-04-18 Thread galbu
Hello world I'm a beginner and I have a problem with my first Wicket Application: I get from a database a list of objects Ordine and I have a ViewOrdini page that correctly show me the list; now I want check an Ordine from that list and generate a ViewDettaglioOrdini page that must show me all

Re: [Wicket-user] wicket performance

2007-04-18 Thread Igor Vaynberg
On 4/18/07, Alexey Maksimov [EMAIL PROTECTED] wrote: On Tue, 17 Apr 2007 14:28:49 -0700 Eelco Hillenius [EMAIL PROTECTED] wrote: Thank you, this is the by far the most friendly answer. The others are just making fun of me... i thought you were making fun of us, and i quote Maybe I missed

Re: [Wicket-user] Is Wicket Scalability Issue all about More memory?

2007-04-18 Thread Eelco Hillenius
In my company , we built a really nice employment exchange with wicket and we cant wait to launch it. But we need to know that assuming one sticks to the best design practice of wicket (using detachable models everywhere and stateless pages where necessary), is it so much memory and processors

Re: [Wicket-user] Where to place images

2007-04-18 Thread atul
I suppose you can place a src=absolutePathToUrImagesUnderWeb-root and have the actual resource attached to image component by using a relative path and following constructors-- Image(java.lang.String id, ResourceReference resourceReference) Or Image(java.lang.String id, new Model(path)) ..But

Re: [Wicket-user] allow vanilla html alternatives to wicket namespaced tags (Was: Multi page inheritance)

2007-04-18 Thread Thomas Singer
i do hope that it will be: div wicket:extend=true?.../div No, I meant div wicket:id=:extend. It was the whole purpose to just have one non-HTML attribute. well, i removed the functionality from core. do you want it back in there? Do you mean Johan or me? If the latter one, no I prefer my

[Wicket-user] VelocityPanel Example

2007-04-18 Thread fattymelt
I know there are posts suggesting links to the wicket-contrib-examples cdApp example, but it does not use the VelocityPanel as far as I can tell. Does anyone know if there is an actual example of the VelocityPanel package up somewhere? -- View this message in context:

Re: [Wicket-user] VelocityPanel Example, anywhere?

2007-04-18 Thread Eelco Hillenius
There is a separate example for VelocityPanel in wicket-contrib-examples Eelco On 4/18/07, fattymelt [EMAIL PROTECTED] wrote: I know there are posts suggesting links to the wicket-contrib-examples cdApp example, but it does not use the VelocityPanel as far as I can tell. Does anyone know if

[Wicket-user] NTLM Authentication

2007-04-18 Thread Zenrique Steckelberg
Hi all, I work in a windows mostly environment, thus decided to use NTLM authentication so I wouldn't need to store and check users passwords. On each WebRequest and WebResponse I check if the user is identified or not, and if not I go through NTLM's request/response procedure in order to get

Re: [Wicket-user] VelocityPanel Example, anywhere?

2007-04-18 Thread Eelco Hillenius
https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.x/wicket-contrib-examples (https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.x/wicket-contrib-examples/src/java/wicket/contrib/examples/velocity) For Wicket 1.2, it is a separate

Re: [Wicket-user] Wicket2.0

2007-04-18 Thread Johan Compagner
and to make sure that you don't start using the wrong code: what we call NOW 2.0 what is still the trunk in svn is discontinued so that shouldn't be used anymore On 4/18/07, Eelco Hillenius [EMAIL PROTECTED] wrote: a.Is there a timeline by which we will have 2.0?...I just wanted to

Re: [Wicket-user] allow vanilla html alternatives to wicket namespaced tags (Was: Multi page inheritance)

2007-04-18 Thread Johan Compagner
it doesn't have to be in core, i don't care about some wicket:extend tags johan On 4/18/07, Igor Vaynberg [EMAIL PROTECTED] wrote: well, i removed the functionality from core. do you want it back in there? yes that simple /div is possible, i was just being lazy -igor On 4/18/07, Johan

[Wicket-user] VelocityPanel Error

2007-04-18 Thread fattymelt
I'm running the velocity panel example and getting this error. Anyone familiar with this? java.lang.NoSuchMethodError: wicket.contrib.markup.html.velocity.VelocityPanel.replaceComponentTagBody(Lwicket/markup/MarkupStream;Lwicket/markup/ComponentTag;Ljava/lang/String;)V at

Re: [Wicket-user] VelocityPanel Error

2007-04-18 Thread Eelco Hillenius
Yeah. Sorry, we did a big package rename last week, and haven't updated the wicket-stuff projects yet. I'll give it a look later today. Eelco On 4/18/07, fattymelt [EMAIL PROTECTED] wrote: I'm running the velocity panel example and getting this error. Anyone familiar with this?

Re: [Wicket-user] VelocityPanel Error

2007-04-18 Thread fattymelt
USER ERROR! I must have had an old build. I build from the latest and things are working fine. sorry. fattymelt wrote: I'm running the velocity panel example and getting this error. Anyone familiar with this? java.lang.NoSuchMethodError:

[Wicket-user] DataTable alternating tr background colors

2007-04-18 Thread craigdd
What is the best way to add alternating back ground colors, or CSS styles to trs when using the DataTable extension object? -- View this message in context: http://www.nabble.com/DataTable-alternating-tr-background-colors-tf3604301.html#a10069961 Sent from the Wicket - User mailing list archive

Re: [Wicket-user] DataTable alternating tr background colors

2007-04-18 Thread Igor Vaynberg
class mydatatable extends datatable { protected Item newRowItem(String id, int index, IModel model) { return new OddEvenItem(id, index, model); } } tr.even { background-color:yellow; } tr.odd { background-color:white; } -igor On 4/18/07, craigdd [EMAIL PROTECTED] wrote:

[Wicket-user] (no subject)

2007-04-18 Thread 莫高习
nigel [EMAIL PROTECTED] [EMAIL PROTECTED] - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to

[Wicket-user] Wicket and embeddable Ajax components

2007-04-18 Thread David Leangen
Hello! We are currently happily using Wicket to develop our web applications. Wicket rules! However, now we are required to make embeddable Ajax components, you know, like Google Maps that anybody can embed in their own html. Can anybody suggest an approach that would allow us to keep as

[Wicket-user] announcing wicketstuff minis project

2007-04-18 Thread Igor Vaynberg
hello all, i have just setup a new wicket stuff project called minis. it is basically an umbrella for user contributions that are too small to warrant their own project. we have mumbled about doing this for a while, so here it is. if you have something small you want to share that you think will

Re: [Wicket-user] announcing wicketstuff minis project

2007-04-18 Thread Igor Vaynberg
and before you ask https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-minis -igor On 4/18/07, Igor Vaynberg [EMAIL PROTECTED] wrote: hello all, i have just setup a new wicket stuff project called minis. it is basically an umbrella for user contributions that are

Re: [Wicket-user] announcing wicketstuff minis project

2007-04-18 Thread Eelco Hillenius
Very cool initiative. Thanks Igor! I hope there will be many contributions. Eelco On 4/18/07, Igor Vaynberg [EMAIL PROTECTED] wrote: hello all, i have just setup a new wicket stuff project called minis. it is basically an umbrella for user contributions that are too small to warrant their own

Re: [Wicket-user] NTLM Authentication

2007-04-18 Thread Peter Thomas
Hi, Maybe it is a better idea to do this only once as part of an AuthorizationStrategy set up in your Application class? Then after creating a session everything works like normal until logout. Example of a real life AuthorizationStrategy can be found here, in this particular example there is