Let's break it down a bit using the previous examples. - We make the output of the action sequence available to portlets by creating the XML element
<org.pentaho.ui.portlet.PentahoHttpSession>PentahoPortletSession> . - We make the output of the action sequence available to servlets/jsps by creating the XML element
<org.pentaho.core.session.PentahoHttpSession> . - We make the action sequence run at system start time and make output available in global scope by adding the
scope="global" attribute to our element. - We make the action sequence run at session start time and make output available in session scope by adding the
scope="session" attribute to our element. - We identify the name and location of our action sequence by adding
samples/filters/setCompanyName.xaction as a child text node of our xml element.
|