RE: Open Session in View - Tapestry

2006-04-14 Thread Jean-Francois Poilpret
create separate domain objects for the web layer and persistence and copy from one to another, which I would like to avoid. At least that was the best I could come up with... Thanks! -- Mark R Jean-Francois Poilpret wrote: > Hello Mark, > > This "problem" is by design (for m

RE: HiveUtils/HiveLock howto

2006-04-13 Thread Jean-Francois Poilpret
information on the hivetranse homepage or in a hivetranse wiki? I'm quite sure many other people will be highly interested in it... Next week I will take a closer look at HiveUtils. ;) Sincerly, Andreas On 13. Apr 2006 - 22:30:54, Jean-Francois Poilpret wrote: | Andreas, | | I try to

RE: HiveUtils/HiveLock howto

2006-04-13 Thread Jean-Francois Poilpret
Andreas, I try to summarize the various utilities you can find under the HiveUtils module (this is not exhaustive, I just gather what I believe is interesting for a web application): - ObjectBuilder (+ related ObjectProvider and contributions): this is for me an essential part of HiveUtils, it do

RE: tapestry-hibernate integration problem

2006-04-13 Thread Jean-Francois Poilpret
Marcus, The problem you describe about a developer using spring/hibernate with declarative ta demarcation is more a problem of training of the developer rather than a bug in the framework: if developers just "assume" things about a framework without even checking the doc (or building a prototype i

RE: tapestry-hibernate integration problem

2006-04-13 Thread Jean-Francois Poilpret
Mark, As James suggested (for another project supporting Hibernate in HiveMind), what you can do (also in hivetranse!) is to create a filter that could call the hivetranse TransactionService to explicitely start/commit/rollback the transaction, in this case you don't need to use the hivetranse Tra

RE: Open Session in View - Tapestry

2006-04-13 Thread Jean-Francois Poilpret
Hello Mark, This "problem" is by design (for me it is not a bug, this is the way transaction demarcation is supposed to work in hivetranse, changing it would bring compatibility problems with existing applications, however, this could probably be done through some extra setting, I will think about

RE: HiveUtils/HiveLock howto

2006-04-12 Thread Jean-Francois Poilpret
Hi Andreas, Sorry for not providing (yet) any useful doc for HiveLock on the hivetranse web site. However, you may consider taking a look at: - the "lock.example" module that comes with the HiveMind Utilities source: it demonstrates the use of HiveLock sided with SecurityFilter (for authenticatio

RE: [Announce]: HiveMind Utilities 0.6.0 released.

2006-04-04 Thread Jean-Francois Poilpret
grade. Thanks for producing a helpful library. Cheers, Nick Faiz On 04/04/2006, at 9:45 AM, Jean-Francois Poilpret wrote: > Hello, > > I am glad to announce the new release of the HiveMind Utilities > project on > SourceForge. > > This release fixes several bugs and bring a f

[Announce]: HiveMind Utilities 0.6.0 released.

2006-04-03 Thread Jean-Francois Poilpret
Hello, I am glad to announce the new release of the HiveMind Utilities project on SourceForge. This release fixes several bugs and bring a few new features. Besides, it is based on a new build system, more flexible than the previous one. For more information, take a look at http://hivetranse.sou

RE: tapestry + ibatis + spring

2006-04-03 Thread Jean-Francois Poilpret
Hello, If you do not absolutely need spring, then you mind consider hivetranse (http://hivetranse.sourceforge.net) that provides iBATIS integration and is 100% pure HiveMind (no spring inside). Cheers Jean-Francois -Original Message- From: Dwi Ardi Irawan [mailto:[EMAIL PROTECT

RE: Security in Services best practices

2006-02-23 Thread Jean-Francois Poilpret
Hi Chris, HiveMind Utilities project (http://hivetranse.sourceforg.net) also includes the "hivelock" modules for security management, including an interceptor that will throw an exception if the current user is not authorized to call the required method. Cheers Jean-Francois -Origin

RE: [OT] Re: Best practice - Integration Hibernate/Tapestry

2006-02-20 Thread Jean-Francois Poilpret
Hi all, Just one point (I talk as the author of HiveMind Utilities) I want to emphasize about auto-proxying: this is not a feature that HiveUtils can bring by itself, it belongs to the container (ie HiveMind). When/if HiveMind provides it, then HiveMind Utilities will provide it;-) Personnally (b

RE: PROBLEM SOLVED | Re: Injecting registry services to POJOS

2005-12-06 Thread Jean-Francois Poilpret
em) i); } } return this; } } MyComponent.java--- public abstract class MyComponent extends BaseComponent { @InjectState("globalMenu") public abstract GlobalMenu getMenu(); } Jean-Francois Poilpret wrot

RE: Injecting registry services to POJOS

2005-12-05 Thread Jean-Francois Poilpret
. Here is what I have done: and it does't work because it complains that the object in invoke-factory can't be null. Do you know what will be the right way to reference it? Thanks. Raul. Jean-Francois Poilpret wrote: > Hi Raul, > > ObjectBuilder bui

RE: Injecting registry services to POJOS

2005-12-04 Thread Jean-Francois Poilpret
ch, both in your email and in http://hivetranse.sourceforge.net/quickstart.html#start.objectbuilder you refer to: ObjectBuilder builder =... GlobalMenu globaleMenu = builder.create("globalMenu", myArg); What is "..." supposed to be? :( Thanks Raul. Jean-Francois Poilpret wrote: > Hi Raul, >

RE: Injecting registry services to POJOS

2005-12-04 Thread Jean-Francois Poilpret
ages or components. Anyway, I'll try your solution, Is there a newsgroup for Hivemind utilities? Thanks, Raul. Jean-Francois Poilpret wrote: > Hi Raul, > > I do not know Tapestry, but I know HiveUtils (I wrote it;-)), the > contribution you describe below seems OK to me (at first si

RE: Injecting registry services to POJOS

2005-12-03 Thread Jean-Francois Poilpret
Hi Raul, I do not know Tapestry, but I know HiveUtils (I wrote it;-)), the contribution you describe below seems OK to me (at first sight). However it depends exactly on what you want to achieve. In particular is your POJO a singleton in your application, or do you need to inject a new instance e

RE: Spring + Hibernate + Tapestry + Hivemind [if required]

2005-11-16 Thread Jean-Francois Poilpret
Hi, The HiveMind Utilities project on SourceForge (http://hivetranse.sourceforge.net) also provides support for things like Hibernate and Transactions and it is implemented exclusively on HiveMind (no Spring inside). Cheers Jean-Francois -Original Message- From: Leonardo Quija

RE: trivial example required - Tapestry 4 hivemind service for cayenne

2005-11-10 Thread Jean-Francois Poilpret
Hi, No , not really so. HiveTranse is indeed compatible with HiveMind 1.1 (since version 0.5.0) but it does not provide support (yet?) for Cayenne. However, in the HiveMind WIKI I saw some posted code that shows Cayenne integration, it would be worth a look, I believe. Cheers Jean-Franc

RE: Tapestry/Hivemind & Integration framework thoughts

2005-11-02 Thread Jean-Francois Poilpret
Hi Andrew, Regarding your question about reuse of Tapestry validation, unfortunately I don't know. Regarding the "reuse" of services through a web channel and a web services channel, yes what you think is probably a good idea. What you could also do is take a look at hiveremoting module of HiveMi

RE: HiveMind Utilities 0.5.0 supports HiveMind 1.1

2005-11-01 Thread Jean-Francois Poilpret
5 PM To: Tapestry users Subject: Re: HiveMind Utilities 0.5.0 supports HiveMind 1.1 Very nice! I noticed that support for Hibernate "long sessions" is planned for 0.7.0. When, do you think, will this be released? /Ted On 11/1/05, Jean-Francois Poilpret <[EMAIL PROTECTED]> wrote: &g

HiveMind Utilities 0.5.0 supports HiveMind 1.1

2005-11-01 Thread Jean-Francois Poilpret
Dear Tapestry users, I am proud to announce the release of HiveMind Utilities 0.5.0 on SourceForge. This is the first version to officially support HiveMind 1.1, hence Tapestry 4. The original announcement follows at the end of this mail. HiveMind Utilities is a set of modules for the HiveMind li