So I think I found the code that handles the PortletConfig: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-portlet/src/java/org/apache/tapestry/portlet/PortletApplicationSpecificationInitializer.java?view=markup
public void initialize(PortletConfig portletConfig) { String name = portletConfig.getPortletName(); Resource resource = findApplicationSpecification(name); IApplicationSpecification specification = resource == null ? constructStandinSpecification(name) : _parser.parseApplicationSpecification(resource); _globals.storeSpecification(specification); } So I do I get the specification back out of the globals service? @InjectObject("global:specification") perhaps? Thanks, Ezra Epstein --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]