How to convert to DIGEST mode

2006-11-22 Thread Christopher Dodunski
Hi, I was wondering how I switch from receiving multiple emails to one daily email. Thanks, Chris. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Perfomance Testing Tapestry App

2006-11-22 Thread Dennis Sinelnikov
Hey guys, I have some performance requirements and would like to gather input from the tapestry community on what is the right approach. For example, how do I properly simulate X number of users? I have some UIs that require user input. I guess I can tailor http requests. Any guidance/lin

tapestry-testng 1.0.0 SNAPSHOT source code

2006-11-22 Thread KEGan
Hi, Anyone knows where I can get the source code for tapestry-testng-1.0.0-20060919.184624-2.zip ?? This is the lastest release right ? I search in JavaForge, but no luck. BTW, anyone has reference to examples of using tapestry-testng. I know there are abundance of this is Tapestry internal unit

Re: Question about Tapestry 5.0

2006-11-22 Thread Howard Lewis Ship
Tapestry 5 performance has been really good, for the trival demo apps I've put together so far. Tapestry 4 could probably be optimized a bit more; for example, it uses a lot of StringBuffers which are pretty slow. The overhead of the DOM is not so great, and there will be a lot of room to optimi

Tapestry @ JavaForge Updates

2006-11-22 Thread Howard Lewis Ship
Well, I've had a busy morning. I've done a ton of work on the projects at Tapestry @ JavaForge . I've changed the version number of *everything* to *1.0.0-SNAPSHOT*. Documentation has been updated. Site navigation updated. Look and feel is now alig

Re: RE: MultiplePropertySelection - informal params - best practice

2006-11-22 Thread Sam Gendler
Hopefully these files will get you started. It is a MultipleSelect just as you want, with the MultiplePropertySelectionRenderer declared as an inner class within MultipleSelection component, giving it access to protected methods inherited from AbstractComponent. I do have to cast the component r

RE: Help with ognl...

2006-11-22 Thread Mark Stang
Robert, Good catch, I had "false" in there before, but it complained about trying to init a Boolean with a String and it couldn't convert it. I copied/pasted from an HTML template and picked up the extra "ognl". Once I removed that, it worked! Thanks! regards, Mark Mark J. Stang Senior Eng

Re: Re: Re: [newbie] Spring vs Hivemind

2006-11-22 Thread Sam Gendler
We use Spring 1.2, but long ago wrote our own subclass of ApplicationContext that will grab context override files from elsewhere (including the local filesystem rather than the classpath). It offers pretty much the exact functionality you are looking for. I'm sure it can be applied to spring 2.0

Re: Help with ognl...

2006-11-22 Thread Robert Zeigler
the binding type for default-value is already ognl. So ognl is chocking on the ognl: part. Try something like: default-value="false" :) Robert Mark Stang wrote: > I am trying to create a 3.x parameter: > > direction="in" default-value="ognl:@[EMAIL PROTECTED]"/> > > I was using a "boolean

Help with ognl...

2006-11-22 Thread Mark Stang
I am trying to create a 3.x parameter: I was using a "boolean", but there is a bug in 3.x where sometimes it doesn't pass the value in, so I switched to a Boolean, but can't seem to come up with a valid default value. Unable to parse expression 'ognl:@[EMAIL PROTECTED]'. binding:

Re: Using Hibernate as the persistence engine

2006-11-22 Thread Martin Strand
If you can get Kent Tong's book for Tapestry 4, it has an excellent example of simple Hibernate integration. Martin On Wed, 22 Nov 2006 18:47:45 +0100, Gareth <[EMAIL PROTECTED]> wrote: Hi, I've written a Tapestry front end, that talks to a series of in memory data objects that essentiall

Using Hibernate as the persistence engine

2006-11-22 Thread Gareth
Hi, I've written a Tapestry front end, that talks to a series of in memory data objects that essentially mock DB tables, but would now like to integrate this with a database via hibernate. I'm using Tapestry 4.1, and since this is a green field development, the latest version of Hibernate. I

tapestry-spring and SpringStrings.properties

2006-11-22 Thread Cyrille37
Hello, com.javaforge.tapestry.spring.SpringMessages could not find its properties file. I've put files : SpringStrings.properties and SpringStrings_fr.properties in folders : WEB-INF and WEB-INF/com/javaforge/tapestry/spring but it's not the right place... Caused by: java.util.MissingRe

Re: how to internationalise titles

2006-11-22 Thread Rodrigo Barberá
I'd use the @Any component: Cheers Rodrigo John Coleman wrote: Has anyone found out how to internationalise title attributes? eg: how about this: List of Agencies"> Looks terrible, not valid markup. - To unsubscri

Re: how to internationalise titles

2006-11-22 Thread Jesse Kuhnert
Do you mean something like?: On 11/22/06, John Coleman <[EMAIL PROTECTED]> wrote: Has anyone found out how to internationalise title attributes? eg: how about this: List of Agencies"> Looks terrible, not valid markup. ---

how to internationalise titles

2006-11-22 Thread John Coleman
Has anyone found out how to internationalise title attributes? eg: how about this: List of Agencies"> Looks terrible, not valid markup. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

Re: myApp.application and xml

2006-11-22 Thread Peter Beshai
When you've added .application under the content type XML, yuo can then right-click the app.application file and select 'XML Editor' from the contextual menu. You may then have to select the Source tab (if it defaults to the Design tab). After doing this, double clicking should default to the X

Re: myApp.application and xml

2006-11-22 Thread Cyrille37
Gareth a écrit : There is a Tapestry WIKI page indicating the solution to this problem. http://wiki.apache.org/tapestry http://wiki.apache.org/tapestry/HowToSetupEclipseWtp Thanks a lot for the link. Very usefull. But the .application seems to be already know by Eclipse because when double

Re: myApp.application and xml

2006-11-22 Thread andyhot
http://wiki.apache.org/tapestry/HowToSetupEclipseWtp Cyrille37 wrote: > Hello, > Sorry to be so verbose, but Java WebApp subject is full of little > important things... > Here is one of them: opening in Eclipse the Tapestry application > configuration file, like WEB-INF/myApp.application. > > If I

Re: myApp.application and xml

2006-11-22 Thread Gareth
There is a Tapestry WIKI page indicating the solution to this problem. http://wiki.apache.org/tapestry http://wiki.apache.org/tapestry/HowToSetupEclipseWtp Regards Gareth - Original Message From: Cyrille37 <[EMAIL PROTECTED]> To: users@tapestry.apache.org Sent: Wednesday, 22 November

myApp.application and xml

2006-11-22 Thread Cyrille37
Hello, Sorry to be so verbose, but Java WebApp subject is full of little important things... Here is one of them: opening in Eclipse the Tapestry application configuration file, like WEB-INF/myApp.application. If I double click on it, Eclipse try to run an application. The only way I've found

Re: binary for tapestry-spring

2006-11-22 Thread Massimo Lusetti
And the archives... On 11/22/06, James Carman <[EMAIL PROTECTED]> wrote: Use anonymous/anon. -- Massimo http://meridio.blogspot.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTE

Re: binary for tapestry-spring

2006-11-22 Thread Cyrille37
James Carman a écrit : Use anonymous/anon. Great. Thanks! cyrille. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: binary for tapestry-spring

2006-11-22 Thread James Carman
Use anonymous/anon. On 11/22/06, Cyrille37 <[EMAIL PROTECTED]> wrote: Hello, It is always the little newbie... Where can I found a binary version (.jar) of tapestry-spring ? I have tried to checkout from http://svn.javaforge.com/svn/tapestry/tapestry-spring/trunk but the server ask for usernam

binary for tapestry-spring

2006-11-22 Thread Cyrille37
Hello, It is always the little newbie... Where can I found a binary version (.jar) of tapestry-spring ? I have tried to checkout from http://svn.javaforge.com/svn/tapestry/tapestry-spring/trunk but the server ask for username and password... Thanks cyrille ---

Re: button values

2006-11-22 Thread Peter Beshai
I'm not sure why that wouldn't work, but if you're just using an @Insert, you can use a shortcut: -- Peter Beshai - Using Tapestry 4.1.1 Pure Mathematics Student University of Waterloo From: John Coleman <[EMAIL PROTECTED]> Reply-To: "Tapestry users" To: users@tapestry.apache.org Sub

Re: button values

2006-11-22 Thread John Coleman
any ideas why this would not work and I have to use ognl:messages. instead? TIA John - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: nested foreach problem

2006-11-22 Thread Ron Piterman
To follow the error message, you probably declared an abstract property getter (or declared a Dear groups > > Sorry for last incomplete email. > > I have some problem when using nested foreach problem. > I have a list of products. It works fine when display > one by one using foreach. > > >

Re: button values

2006-11-22 Thread Ron Piterman
yes it is much better (faster) , and you can use it on each binding (formal and informal parameters). Cheers, Ron John Coleman wrote: > D&J Gredler gmail.com> writes: > I used the label attribute to supply i.e. label="ognl:messages.getMessage...". > > Can I use messages: anywhere,and drop ognl,

Re: button values

2006-11-22 Thread John Coleman
D&J Gredler gmail.com> writes: I used the label attribute to supply i.e. label="ognl:messages.getMessage...". Can I use messages: anywhere,and drop ognl, is that better? We use Tapestry 4.0 I think. regards, John - To unsubsc

Re: [newbie] Tapestry-Spring

2006-11-22 Thread Daniel Tabuenca
That's correct. I use @Connfigurable to inject spring objects into tapestry pages. The downside is the need to include an xml bean configuraion in spring for each page I want to inject to, although I've been using the spring-annotation project to define the beans using annotations rather than xml.

Re: [newbie] Tapestry-Spring

2006-11-22 Thread Cyrille37
Daniel Tabuenca a écrit : I think what you read there is not necessarily true. If you are using Spring 2.0 and bean scopes or target sources then spring will give you a proxy and automatically manage the lifecycle for you. Also keep in mind that you can easily use spring itself to inject the bean

Re: [newbie] Tapestry-Spring

2006-11-22 Thread Daniel Tabuenca
I think what you read there is not necessarily true. If you are using Spring 2.0 and bean scopes or target sources then spring will give you a proxy and automatically manage the lifecycle for you. Also keep in mind that you can easily use spring itself to inject the beans into a tapestry page by u

[newbie] Tapestry-Spring

2006-11-22 Thread Cyrille37
Hello, I'm steel walking on the web to learn more about WebApplication with Tapestry and other frameworks integration before starting to draw the architecture of my future project... It's not so simple ;-) Today I'm looking for Tapestry4 and Spring2. On the site of Tapestry-Spring (http://h

Re: Re: [newbie] Spring vs Hivemind

2006-11-22 Thread Daniel Tabuenca
No, I believe this is the main positive hivemind has. It would be nice if spring had a hivemind-like configuration system. One thing that I've been trying lately is the spring-annotation project found here: https://spring-annotation.dev.java.net/ It basically lets you fully configure your beans us

Re: Trouble updating component after async. directlink : clientId's generated in For-loops

2006-11-22 Thread Kim Thrysøe
Thank you for the response. That is exactly what I wanted. But ... something is still odd. I get too and mixed up updates back to in the ajax-response requests. Is this a bug or expected behaviour? _Click on first row :_ Tapestry / DojoAjaxResponseBuilder sends * (actually containing both fi

RE: Re: [newbie] Spring vs Hivemind

2006-11-22 Thread Marcus.Schulte
Thanks for the pointer! That's looking quite cool. My only complaint is that you obviously have to remember to put " " inside each bean with a non-standard scope. If this was available a year ago, I'd have considered Spring - though I still like the HiveMind XML notation better. Sorry for asking i

nested foreach problem

2006-11-22 Thread wong wayne
Dear groups Sorry for last incomplete email. I have some problem when using nested foreach problem. I have a list of products. It works fine when display one by one using foreach. But when I try to group two of product into pair for display, problem appear and error resulted

Re: Re: [newbie] Spring vs Hivemind

2006-11-22 Thread Daniel Tabuenca
Spring 2.0 has singleton/prototype/request/session/global session/ and custom scopes. It should be noted that spring's prototype scope is different from hivemind in that an object is created every time a referencing dependency is set or when one requests it directly via a getBean("beanName"). In t

nested foreach problem

2006-11-22 Thread wong wayne
Dear groups I have some problem when using nested foreach problem. I have a list of products. It works fine when display one by one using foreach. Sponsored Link Mortgage rates

RE: Re: [newbie] Spring vs Hivemind

2006-11-22 Thread Marcus.Schulte
No, Spring has only prototype and singleton Beans afaik. HiveMind has threaded/pooled service-models which can easily be extended (Honeycomb does this to implement session-per-conversation based on a "stateful" service-model). > -Original Message- > From: Daniel Tabuenca [mailto:[EMAIL PR

RE: Re: Tapernate Access multiple database

2006-11-22 Thread Marcus.Schulte
Hm, couldn't resist to drop a few remarks on that (inline): > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Sam Gendler > Sent: Wednesday, November 22, 2006 2:24 AM > To: Tapestry users > Subject: Re: Re: Tapernate Access multiple database > > Ac

Re: Re: [newbie] Spring vs Hivemind

2006-11-22 Thread Daniel Tabuenca
While we're on the subject, am I correct in my assessment that the only feature that hivemind has that spring does not is the whole configuration point /contribution system? It's been a while since I've really used hivemind so I may be wrong. On 11/22/06, Kalle Korhonen <[EMAIL PROTECTED]> wrote:

Re: Re: [newbie] Spring vs Hivemind

2006-11-22 Thread Kalle Korhonen
I think Sam put it pretty well. Cyrille, you should also read the other thread "Tapernate access multiple database" that touches the Hivemind/Spring subject. I often think the primary use scenarios of commons-logging and log4j are analogous to Hivemind and Spring. If you are building a library or

RE: [newbie] get Tapernate and/or Honeycomb JAR files

2006-11-22 Thread Marcus.Schulte
You can find all the modules on javaforge. Eg. For Honeycomb: http://www.javaforge.com/proj/doc.do?doc_id=16753 Tapernate will be similar, I think. hth, Marcus > -Original Message- > From: Cyrille37 [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 21, 2006 3:39 PM > To: Tapestry us

Re: Ajax, For-Loops and PropertySelections

2006-11-22 Thread Patrick Klein
Hi, once more Sorry, completely forgot the real problem... The downstep with the solution we use now is that it is pretty static, which would've been avoided using a for loop It looks like the following: html-template: [...] updateComponents="ognl:updateComponents"> Te