Portlets exclude list
To configure the WSRP producer you have to add the WSRPConfiguration component to your container's
configuration.xml file.
Since version 1.2 you can freely configure what portlets you don't want to be distributed via the WSRP producer. There's now an exclude-list for that purpose. Portlet names must be listed in the form of:
portlet-app-name/portlet-name like shown below:
For WSRP1 plugin:
<component>
<type>org.exoplatform.services.wsrp.producer.impl.WSRPConfiguration</type>
<init-params>
<values-param>
<name>exclude-list</name>
<value>portlets/BridgePortlet</value>
</values-param>
<properties-param>
[..]
</properties-param>
</init-params>
</component>
For WSRP2 plugin:
<component>
<type>org.exoplatform.services.wsrp2.producer.impl.WSRPConfiguration</type>
<init-params>
<values-param>
<name>exclude-list</name>
<value>portlets/BridgePortlet</value>
</values-param>
<properties-param>
[..]
</properties-param>
</init-params>
</component>