Re: t5: when running tomcat behind Apache

2009-01-12 Thread Massimo Lusetti
On Mon, Jan 12, 2009 at 8:53 AM, Howard Lewis Ship hls...@gmail.com wrote: Should Tapestry assume it is running behind Apache and correctly operate on those special headers? By my point of view, not at all. There are plenty of installation where tomcat/jetty/whatever is running as a direct

Re: t5: when running tomcat behind Apache

2009-01-12 Thread Peter Stavrinides
Should Tapestry assume it is running behind Apache and correctly operate on those special headers? I agree with Massimo absolutely not. This configuration is far too implementation specific... IMHO there are other options you could explore, for instance checking if this header is being used or

Re: T5's Ajax/Zone implementation has substantial limitations

2009-01-12 Thread Peter Stavrinides
Is there a Jira for this to vote on? - Original Message - From: Chuck Kring cjkr...@pacbell.net To: Tapestry users users@tapestry.apache.org Sent: Thursday, 8 January, 2009 7:25:47 PM GMT +02:00 Athens, Beirut, Bucharest, Istanbul Subject: Re: T5's Ajax/Zone implementation has

Re: T5's Ajax/Zone implementation has substantial limitations

2009-01-12 Thread Borut Bolčina
Hi, 2009/1/7 Francois Armand farm...@linagora.com So, for now, what I REALLY need and want with priority #1 is a lot of documentation on how using AJAX with T5 the right way: general pifalls to avoid, what information are available (state of the server view of the DOM on XHR, etc), what are

Problem with cyclic including components

2009-01-12 Thread Radek Terber
Hi all. I'm new in tapestry 5 and I have a problem with component including. I have two components, each of them need to include the other (the example is here): First class: public class RoleList extends AbstractGridFragmentRole { @Component private SearchRole searchRole;

Re: t5: when running tomcat behind Apache

2009-01-12 Thread Olle Hallin
There are options in Tomcat that work in concert with Apache's mod_proxy. I have done this, but unfortunately I cannot remember the exact details... Olle 2009/1/12 Peter Stavrinides p.stavrini...@albourne.com Should Tapestry assume it is running behind Apache and correctly operate on

Re: t5: when running tomcat behind Apache

2009-01-12 Thread Peter Stavrinides
Since version 2.6 Apache mod_proxy has native support for the AJP protocol (proxy_ajp), which is the equivalent of mod_jk. It is switched on by configuring a single directive in Apache... AJP is enabled by default in newer versions of Tomcat through this directive: !-- Define an AJP 1.3

RE: Tapestry Upgrade problem

2009-01-12 Thread Mike Wasserman
We believe that we may have found a solution to this problem. We have placed the call to PageSpecificationResolver.resolve(IRequestCycle cycle, String prefixedName) in PageSource.makeObject(Object key) in a synchronized block. With this in place we are unable to recreate the no shell component

Re: Connection Problem

2009-01-12 Thread abangkis
Hi jonathan and angelo, thanks for the pointer. I'll try it this evening. On Mon, Jan 12, 2009 at 10:51 AM, Jonathan Barker jonathan.theit...@gmail.com wrote: I configure connection pooling on my app server, so I have no hands-on experience with c3p0. Certainly it looks like this would work

Re: [T4.1] OGNL performance problem (serialization)

2009-01-12 Thread Aaron Kaminsky
It looks like the issue you mentioned was fixed in OGNL 2.7.2. In production I am using OGNL 2.7.1 that comes with Tapestry 4.1.3, but I have reproduced the problem with OGNL 2.7.3 that comes with T4.1.6. So either there was a regression or I am running into a different problem? Thanks,

Re: [T4.1] OGNL performance problem (serialization)

2009-01-12 Thread Aaron Kaminsky
I did try, and can confirm that tapestry-prop does not work with T4.1.3 or 4.1.6. -Aaron Kevin Menard wrote: It's been a while, but I'm pretty sure that tapestry-prop does not work with T4.1 -- See how easy it can be to move beyond spreadsheets for budgeting, forecasting and

Re: is T4 dead ?

2009-01-12 Thread Ken in nashua
T4 comes rendering apart if you try to integrate your own css into the dom via the @Script interface I find it ethically irresponsible that so many jira's exist on T4 and the who-cares response in the user group for the most part Still waiting to find something that you can actually do

Re: [T4.1] OGNL performance problem (serialization)

2009-01-12 Thread Andreas Andreou
tapestry-prop had a 1.0.0 version that is compatible with 4.1.3 and on - not sure if there's any public repo that hosts it... if i dont find one, i can deploy it to tacos repo soon On Mon, Jan 12, 2009 at 5:38 PM, Aaron Kaminsky aar...@adaptiveplanning.com wrote: I did try, and can confirm that

tapestry limitations

2009-01-12 Thread Joachim Van der Auwera
Dear tapestry users, I have been using tapestry5 for quite a long time now, and am very happy about the framework. It really makes web development a lot easier. However, there are a couple of cases where tapestry doesn't help. In each of these cases it seems like I have to jump trhough hoops

Re: is T4 dead ?

2009-01-12 Thread Christian Edward Gruber
Ethically irresponsible? They're doing this for free, you realize. We haven't paid them a darned thing, so I think the ethics need to be about a community coming together, rather than accusations of lack of support. Additionally, the source is there for you to address JIRAs, and if

Tapestry for non believers

2009-01-12 Thread Sid Ferreira
http://www.infoq.com/articles/tapestry5-intro Does anyone did it without any error? Great tutorial, but, the file offered in the beginning is different than the one used. There's no file to the templates. The ajax, wich so far I did everything right, didn't worked and I had to kinda copy the

dynamic components in page

2009-01-12 Thread Radek Terber
Hi Is there possibility to render components in T5 page dynamically (in dependency on return value of any method in page´s class for example, or so) ? Methods onEvent... return pages whose are rendered dynamically too - each method can return many pages. I thing it would be possible allow

Re: Tapestry for non believers

2009-01-12 Thread Igor Drobiazko
The tutorial is written with Tapestry 5.0.13 snapshots. Most probably you are using the final release of Tapestry. Because a lot of things changed between 5.0.13 and 5.0.18 the sources of the tutorial are a little bit outdated. I'll upgrade the tutorial in the next days to the latest version. By

Re: dynamic components in page

2009-01-12 Thread Andy Pahne
Radek Terber schrieb: Hi Is there possibility to render components in T5 page dynamically (in dependency on return value of any method in page´s class for example, or so) ? Methods onEvent... return pages whose are rendered dynamically too - each method can return many pages. I thing it would

Re: dynamic components in page

2009-01-12 Thread Thiago H. de Paula Figueiredo
Em Mon, 12 Jan 2009 16:38:37 -0300, Radek Terber lst@post.cz escreveu: Hi Hi! Is there possibility to render components in T5 page dynamically (in dependency on return value of any method in page´s class for example, or so) ? Methods onEvent... return pages whose are rendered

Re: dynamic components in page

2009-01-12 Thread Daniel Jue
Hi, Your wording is a little vague. You probably want to use the Block component. For pages from onEvent, they can be anything, and you can return Strings or MyPage.class to get to the new page. For components, you have to list them in the source of your page class and/or page template. When

PageTester and form validation

2009-01-12 Thread akochnev
I have a page with a couple of required fields (set up in the template w/ t:validate=required), as well as some custom validation in the page itself (e.g. in the validate event handler that calls registrationForm.recordError(...)). Despite the fact that there are missing values in the map (for

T5: need to update pom when uprading to 5.0.18?

2009-01-12 Thread Angelo Chen
Hi, lately I'm getting following errors, any idea why? thanks. Angelo [INFO]task-segment: [clean] [INFO] [INFO] artifact org.apache.maven.plugins:maven-clean-plugin: checking for updates from tapestry-snapshots

zone enhancements?

2009-01-12 Thread Fernando Padilla
We are starting to use zones a lot more and they are a great and simple concept. I was wondering if anyone had any comments or had put any legwork towards these simple enhancements. 1) updatingEffects along the lines of the showEffect and updateEffect currently supported, except that this