I use OT Portal as a preview server on WEM 8.1
In portal's jsp page i put parameters to session (SessionUtils.setNamespacedAttribute(.....))
Next, i put a contentpuplisher portlet to the jsp page:
<vgn-portal:renderPortlet portletFriendlyID = "UcanBUY" >
<vgn-portal:onRenderSuccess>
<vgn-portal:insertPortletContent/>
</vgn-portal:onRenderSuccess>
<vgn-portal:onRenderFailure >
</vgn-portal:onRenderFailure >
</vgn-portal:renderPortlet >
Next, on the preview portal server i put to the contentpuplisher portlet a ContentList component.
Next, the component is associated with a region layout:
<%@ taglib uri="/WEB-INF/vgnExtTemplating.tld" prefix="templating" %>
............
<templating:initComponent var="component"/>
<templating:initRequestContext var="rc"/>
............
<h2>${component.title}</h2>
......
<%
Enumeration<String> names = session.getAttributeNames();
.....................
%>
Here is the region layout return empty list of sesiion's attributeNames.
How can i get params within the region layouts (document view, etc) from Portal?
Could anybody help us?
It's very urgent for us.