Re: Monitoring/statistics

2010-10-11 Thread Anton Gavazuk
Why dont reuse already existing projects? http://code.google.com/p/javasimon 2010/10/11 Alessio Gambi > Hi, > Please think also about some way to obtain (meta) statistics about Tapestry > itself. Something that can be used to track how many people are actually > using tapestry as platform for th

Re: T5: best practice for a multiple module app

2008-02-05 Thread Anton Gavazuk
Hi, I don't see any "complexity of EJBs (in EJB 2)" in case if you are using just JMS/Session beans - Entity beans are really awful 2008/2/5, Renat Zubairov <[EMAIL PROTECTED]>: > Hi Angelo, > > I was just thinking how can you organize your application in case you would > use the EJBs: > > You wil

Re: T5: best practice for a multiple module app

2008-02-04 Thread Anton Gavazuk
It makes Hibernate working as Jboss MBean service, this service is responsible for working with Hibernate sessions. This way leaves you only with JBoss, without any alternative. 2008/2/4, Jonathan Barker <[EMAIL PROTECTED]>: > Angelo, > > Take a look at JBoss .har files. I've never tried it but i

Re: T5: newbie question about tap5 & ejb

2007-10-06 Thread Anton Gavazuk
I think it is something related to EJB3 realization in Geronimo, you should check your JNDI tree and try to get the interface by using InitialContext = new InitialContext instead of @EJB annotattion, because exception means something is going wrong during initialization InitialContext. 2007/10/7

Re: T5: newbie question about tap5 & ejb

2007-10-06 Thread Anton Gavazuk
I thing it is something related to EJB3 configuration, you should check your JNDI tree and try to get the interface by using InitialContext = new InitialContext instead of @EJB annotattion, because exception means something is going wrong during initialization InitialContext. 2007/10/7, Pavel Vo

Re: Comparison

2007-09-27 Thread Anton Gavazuk
es. ASOs are generally stored in the HttpSession. > > A client ASO would be all that, but would be stored on the client (inside > hidden form fields or query parameters). This has some costs: serializing > the objects, and the question of security. > > > On 9/27/07,

Re: Comparison

2007-09-27 Thread Anton Gavazuk
Sorry for interruption :) - what is Client-side ASO? 2007/9/27, Howard Lewis Ship <[EMAIL PROTECTED]>: > > Client-side page persistence is in there, I'l have to check if it is > documented. Client-side ASOs are not there yet (and there is not yet a > JIRA > issue to implement them). > > On 9/27/

Re: T5:Tiles?

2007-08-22 Thread Anton Gavazuk
Hi Angelo, I had the same question and as I understood - you have to write your own custom component see http://tapestry.apache.org/tapestry5/tapestry-core/guide/templates.html and now I try to implement this - if you are interested - we can communicate about the topic and create some kind of howto

Re: [T5] how to make page templates (like Tiles)

2007-08-19 Thread Anton Gavazuk
Hi Jun, Do you have an example or link to example :)? I have looked through mail list and found only messages related to layout component about CSS. 2007/8/19, Jun Tsai <[EMAIL PROTECTED]>: > > 2007/8/19, Anton Gavazuk <[EMAIL PROTECTED]>: > > > > Hello all, >

[T5] how to make page templates (like Tiles)

2007-08-19 Thread Anton Gavazuk
Hello all, How to implement page templates using tapestry 5 - like a page definitions in Tiles?