I have built several Tapestry components and one of them doesn't work. When the Login link displayed on my home page is clicked, the following error shows up on the server console:
// beginning of error
Feb 15, 2005 2:59:47 PM org.apache.tapestry.BaseComponentTemplateLoader checkAllComponentsReferenced
SEVERE: Template for component Home does not reference embedded component: loginLink.
// end of error
The Login component is built the following way
In Home.html
Login
In Home.page
<component id="loginLink" type="PageLink">
<static-binding name="page" value="Login"></static-binding>
</component>