Re: get @RequestParameters on submit

2013-10-14 Thread Lenny Primak
Od you can use tapestry-exceptionpage. It's great at handling things such as this: http://docs.codehaus.org/display/TYNAMO/tapestry-exceptionpage+guide On Oct 14, 2013, at 3:06 AM, Dmitry Gusev wrote: > Probably this can help with exceptions handling? > > http://tapestry.apache.org/component

Re: get @RequestParameters on submit

2013-10-14 Thread George Christman
Thanks man, exactly what I needed. On Mon, Oct 14, 2013 at 3:06 AM, Dmitry Gusev wrote: > Probably this can help with exceptions handling? > > > http://tapestry.apache.org/component-events.html#ComponentEvents-InterceptingEventExceptions > > > On Mon, Oct 14, 2013 at 10:48 AM, George Christman >

Re: get @RequestParameters on submit

2013-10-14 Thread Dmitry Gusev
Probably this can help with exceptions handling? http://tapestry.apache.org/component-events.html#ComponentEvents-InterceptingEventExceptions On Mon, Oct 14, 2013 at 10:48 AM, George Christman wrote: > Thanks Taha this resolved my issue, however I now seem to have no way to > handle illegalArgu

Re: get @RequestParameters on submit

2013-10-13 Thread George Christman
Thanks Taha this resolved my issue, however I now seem to have no way to handle illegalArgumentExceptions. Is there away to catch illegalArgumentExceptions in onActivate and redirect the user away from the page when they occure? This would happen as a result of URL tampering. Thanks. On Fri, Oc

Re: get @RequestParameters on submit

2013-10-10 Thread Taha Hafeez Siddiqi
Hi George, I am not sure what you mean by "on submit from onActivate" but may be you are looking for http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/annotations/ActivationRequestParameter.html regards Taha On 11-Oct-2013, at 10:27 AM, George Christman wrote: > Hello, I'm won

get @RequestParameters on submit

2013-10-10 Thread George Christman
Hello, I'm wondering if there is a way to read the @RequestParameters on submit from onActivate? example public Class onActivate(@RequestParameter(value = "category", allowBlank = true) final String categoryParam, If not, is there another way to get the value without using @Persist? -- George C