We are evaluating using JSR-286 portlets for our next project. Users will be able to build an web app with our hosted service. Each user will get a webiste on our portlet server. One of our scenarios is:
- The user places our "table portlet" one page, he chooses the id free
- The user places one of our "detail portlet"s on another page
- When some one clicks on a "detail buton" on the "table portlet" he should be navigated to the "detail portlet"
Is there some way to get the urls of the "detail portlet"s in the "table portlet". Something like List<URL> PortletUtil.getPortletURLs(String portletType)
?
We don't want the user has to configure a target URL in the "table portlet", to avoid broken links if the detail page URL is changed.
We have not decided yet which portlet server to use (if at all), so server specific solutions are ok.