Hi All

We have managed to resolve the URL issue using the LinkCreationHubinterface.
Instead of build method, we need to have a decorator method for
LinkCreationHub. I have observed that LinkCreationHub is created by
TapestryModule, hence we just need to have a decorator method to add our
listener to existing listener.

public LinkCreationHub decorateLinkCreationHub(LinkCreationHub hub)
{
LinkCreationListener listener = new MyLinkCreationListenerImpl();
hub.addListener(listener);
return hub;
}

This fix has ensured that all page, component event links are appended with
a dynamic paramter in url. Thanks to all who have provided their valuable
suggestion. Special thanks to Thiago for giving the hint about
LinkCreationListener.

Thanks
Sundar

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Tapestry-5-cache-issue-when-accessed-via-proxy-tp3388994p4250743.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to