ICEFaces + Liferay : firstApp.war と secondApp.war ファイルの 2 つの war ファイルを作成し、liferay にデプロイしました。firstApp.war アプリケーションのページで送信ボタンをクリックすると、firstAppBacking Bean が public-render-parameter に値を設定して、IPC のような secondApp.war アプリケーションでその値を取得できるようにする必要があります。firstAppText で値を設定する方法を教えてください。
<portlet-app ....>
<portlet>
<portlet-name>firstApp</portlet-name>
<display-name>First App</display-name>
<portlet-class>com.icesoft.faces.webapp.http.portlet.MainPortlet</portlet-class>
<init-param>
<name>com.icesoft.faces.VIEW</name>
<value>/jsp/firstApp.iface</value>
</init-param>
....
**<supported-public-render-parameter>firstAppText</supported-public-render-parameter>**
</portlet>
<public-render-parameter>
<identifier>firstAppText</identifier>
<qname xmlns:x="http://www.liferay.com/public-render-parameters">x:firstAppText</qname>
</public-render-parameter>