how to define a new asset domain

2016-05-09 Thread D.R.
Hi @all, i need a new asset domain to have access to the filesystem. In the doc http://tapestry.apache.org/assets.html they say you "may define a new AssetFactory and contribute it to the AssetSource service configuration" I have no idea how to deal with the two methods. Please help. What i

Re: Tapestry5.4 error page 'Failure reading parameter 'validate' of component ....'

2016-05-09 Thread Cezary Biernacki
Do you have any custom implementation of org.apache.tapestry5.ioc.Messages interface? If yes, check if its "contains()" works properly. Best regards, Cezary On Mon, May 9, 2016 at 6:41 PM, zak wrote: > We are upgrading from tapestry5.1.0 to tapestry5.4.0 > > Accessing a page which contains a s

Tapestry5.4 error page 'Failure reading parameter 'validate' of component ....'

2016-05-09 Thread zak
We are upgrading from tapestry5.1.0 to tapestry5.4.0 Accessing a page which contains a select list dropdown of stores fails. I am getting the following error. Failure reading parameter 'validate' of component utilities/TaxLookup:store: Unknown validator type '[[missing key: store-validate]]'. Con

Tapestry 5.4 error in rendering ..Failure reading parameter 'validate' of component..

2016-05-09 Thread sheikh hossain
Hi, Not sure where to send or post messages or this is the right forum to discuss about problems. We are upgrading our app from tapestry5.1.0 to tapestry5.4.0 Accessing a page which contains a select list dropdown of stores fails. I am getting the following error. Failure reading parameter 'vali

Re: What pattern to use for service disambiguation based on String input?

2016-05-09 Thread Chris Poulsen
If you create a MappedConfiguration you will end up with a configuration backed by a map of name->impl. In your service you inject the mapped configuration, check to see if the configuration contains a generator for your "string" and use the impl if that is the case There are many internal tapest

Re: What pattern to use for service disambiguation based on String input?

2016-05-09 Thread Rafael Bugajewski
> On 2016-07-05, at 09:48 AM, Chris Poulsen wrote: > > It is not really clear to me what you want to do? Are you talking about > picking the correct impl once (during initial application setup) or > selecting the impl. per request. Is the "input parameter" something that is > defined during regis