+

Search Tips   |   Advanced Search


Configure portlet filtering

A portlet filter enables the administrator of a portal to intercept and modify the output of a portlet before it is aggregated to the entire portal page. Thus it is possible to support different languages and markups other than those for which the portlet was originally designed. Portlet filters are also used for adding additional information to the portlet output (for example, a copyright statement), deleting unimportant or restricted content, and for parsing destructive JavaScript.

To use portlet filters, portlet filtering must be enabled for the portal, the portlet filters must be defined and activated in a properties file, and the filters must be assigned to the portlet.


Enable portlet filtering

The usage of portlet filters is enabled by the legacy.portlet.enable.filtering property in the Portlet Container Service, as described in Set service configuration properties. To enable portlet filtering for the portal, set this property value to true:

legacy.portlet.enable.filtering = true

Default is true.


Registering portlet filters

Before a filter can be used (assigned to a portlet), it must be registered in the PortletFilterService. The following example shows the declaration of a filter:

1: # Example: 
2: filter.SampleFilter.class = com.example.SampleFilter 
3: filter.SampleFilter.configValue = some configuration value 
4: filter.SampleFilter.transcodeMarkup.1 = html->wml 
5: # methods to be filtered 
6: filter.SampleFilter.method.1 = service 
7: filter.SampleFilter.method.2 = doTitle

In the example above the portlet filter SampleFilter is defined as follows:

The information in lines 6 and 7 is used to call the filter only for the specified methods to improve the performance. The possible methods for the filter are the following: login, beginPage, service, endPage, doTitle, ActionEvent, MessageEvent, and WindowEvent.

If the filter is to be called for every method, it does not need to define any method in the properties file.


Assigning filters to a portlet

Once a portlet filter has been registered, it can be assigned to a portlet.

You can assign multiple portlet filters to a portlet by defining the portlet setting FilterChain and delivering as a value a list of filters separated by comma or semicolon.

To add this setting to the relevant portlet during run time, use Modify Parameters in the Manage Portlets portlet.

The request will pass to the filters in the list from the left to the right and then proceed to the portlet. The portlet response will then traverse back through all filters from right to left.

Example:

FilterChain = MyTranscodingFilter, MyAdStripper

In this filter chain example, the filters do the following:

The following processing steps are taken:

Multiple filters, which are capable of transcoding from one markup to another, are not allowed in a single filter chain.


Reference: Portlet filter life cycle

All filters have the following stages:

Init

The filter will be initialized. To get information about the specific filter settings and portal information, the FilterConfig is given to the init method of the filter. After the call of the init method, the filter will switch to the use mode.

Use

Filter requests are handled by the doFilter method.

Destroy

The filter is taken out of service and the doFilter method will not be called again. Thus system resources can be given back.


Reference: Supported filter targets

Calls to the portlet that do not have a request attached are not available to the portlet filter.

The following calls to the portlet are available to the filter:

The following calls to the portlet are not available to the filter:


Reference: Programming tips

To quickly enable the usage of portlet filters, WebSphere Portal provides a predefined set of wrapping objects. These can be used to modify the standard behavior of the wrapped components. Wrappers are defined for the following objects:

Object Predefined wrapper
PortletRequest PortletRequestWrapper
PortletResponse PortletResponseWrapper
Client ClientWrapper

A transcoding filter for markups (for example, from HTML to WML ) will need to use all of these wrappers to emulate the HTML environment that an HTML portlet assumes.


Request flow of portlet filters

On server startup, all portlet filters that are registered in the PortletFilterService are initialized and are made available for filter registration. As soon as a portlet is dispatched, the portlet container gets the needed filters from the filter registration and calls these filters successively in the specified order. The portlet request and portlet response is forwarded through this chain of portlet filters before the portlet is rendered. Afterwards, the portlet container passes the request and response back through the chain of filters in the reverse order.

If a filter is to manipulate the output of a portlet, it must exchange the actual writer in the portlet response with one that stores data for later changes. This can be implemented using the wrapper classes delivered with the portal. After the portlet is called and the response is returned, the filter can then manipulate the output of the portlet and write the resulting output to the original writer.


Parent topic:

Configure portal behavior