Hi, i am trying to secure multiple pages by contributing to the MetaDataLocator as explained here: http://tapestry.apache.org/tapestry5.1/guide/secure.html but the app always uses the default value.
Checking the source code of MetaDataLocatorImpl it seems that the value would always use the default value. String value = valueLocator.valueForKey(key); //this is always null if (value == null) { value = symbolSource.valueForSymbol(key); //Here the default value (false) it's obtained } else { value = symbolSource.expandSymbols(value); } Am i missing something during the configuration? Thanks for your help --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org