JMeter Load Test example

2013-01-18 Thread sthomps
Thought I would give back a little to the community for all your help. As JMeter is not the easiest tool to use, here's a very simple load-test for testing an Ajax submit on a form. load-test.jmx http://tapestry.1045711.n5.nabble.com/file/n5719384/load-test.jmx -- View this message in

Re: Nested Form Support

2013-01-17 Thread sthomps
I don't have an existing public site I can point to - all my examples are internal. In essence it's fairly simple - componentize a form that can act on it's own on a page or be nested within a parent form on page. Again not a huge deal but something that Wicket developers would need to be aware

5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread sthomps
Trying to get forms working with 5.4. Here's my Page Here's my markup Here's the stacktrace -- View this message in context: http://tapestry.1045711.n5.nabble.com/5-4-alpha-2-Render-queue-error-in-BeginRender-tp5719363.html Sent from the Tapestry - User mailing list archive at

Re: 5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread sthomps
I took the layout out - still fails. It's just when I add the form component that I get the exception. Can your respond to this question - http://tapestry.1045711.n5.nabble.com/5-4-alpha-2-quickstart-td5719244.html My build process might have gotten mucked up. -- View this message in

Re: 5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread sthomps
The problem is we have a custom client side component library that includes jquery. It was not playing nice with the default prototype support in 5.3 so with the 5.4 changes, I wanted to explore this route. If no one has an idea on the stacktrace, I'll go back to 5.3 and try this out

Re: Nested Form Support

2013-01-17 Thread sthomps
Thiago, Your assumption is correct. I'm not saying right or wrong either way on how Tapestry handles this - it's just different from how Wicket handles it and something I have to be aware of. Thanks -- View this message in context:

Re: 5.4-alpha-2 Render queue error in BeginRender

2013-01-17 Thread sthomps
Got it working. Somehow the tapestry dependencies weren't built quite right so I removed the .jars from the maven repo and started fresh. -- View this message in context: http://tapestry.1045711.n5.nabble.com/5-4-alpha-2-Render-queue-error-in-BeginRender-tp5719363p5719373.html Sent from

Re: Nested Form Support

2013-01-16 Thread sthomps
An Address component could be one. This appears to be what I would need. http://jumpstart.doublenegative.com.au/jumpstart/examples/component/subformvalidation1 Can these sub-forms contain other components that will submit only that sub-forms information or does it submit the entire form and

Nested Form Support

2013-01-15 Thread sthomps
I wanted to confirm that there is not nested form support in Tapestry 5? I'm currently evaluating Tapestry coming from Wicket and I use nested forms quite often. It's nice to be able to componentize a form, include it as needed among other forms/pages, and have a validation chain from parent to

Re: Nested Form Support

2013-01-15 Thread sthomps
No form fragments don't appear to be what I would need. I'm still finding my way around Tapestry so I'll try and explain a bit better in how I use Wicket with nested forms. I would like to have a parent form that on submit will validate all the nested forms contained within including it's own

Re: Nested Form Support

2013-01-15 Thread sthomps
While I agree that there is not technically a true nested form in HTML, it's the best term I have to describe it :) What I'm trying to do in my evaluation is see where the sticking points will be as developers, if the framework is chosen, will run into. This is one of them. It sounds like what

5.4-alpha-2 quickstart

2013-01-10 Thread sthomps
Is there any type of quickstart available for this release? I'm currently having to manually install the built jars from the .git repo and the quickstart from 5.3 doesn't compile. @Inject @Symbol are not found in the ioc jar. -- View this message in context:

Re: 5.4-alpha-2 quickstart

2013-01-10 Thread sthomps
And as soon as I reply, I find the classes in the annotations jar - packaging ioc. threw me off on these two. Question still stands though on instructions to get these alphas up and running quickly. Thanks -- View this message in context:

Session Expiration - Ajax

2013-01-09 Thread sthomps
I'm currently evaluating component based frameworks, as we are currently using Wicket, and one of the problems we encounter is Ajax interactions after the http session has expired. If a user clicks on a component that is Ajax enabled - the framework throws a PageExpiration exception. For most