Fórumok

How to read portlet init parameters

thumbnail
Vijaya Kumar Mukthala, módosítva 11 év-val korábban

How to read portlet init parameters

New Member Bejegyzések: 16 Csatlakozás dátuma: 2012.09.13. Legújabb bejegyzések
Hi All,

I have defined the some init params in portlet.xml i would like to read init params based on the param name in the JSF managed bean.

I am orking on JSF portlet with liferay 6.1

Please find below i the sample code i defined init params in portlet.xml

<init-param>
<name>hpam-cilist-service-soap-action</name>
<value>http://tempuri.org/AmGmoGetList</value>
</init-param>
<init-param>
<name>hpam-cilist-input-file-name</name>
<value>GSP_List_Main_CI.xml</value>
</init-param>

these init params i want to read in JSF managed bean init() method.

Could you please help me how can i read these values.

Thank and Regads
Vijay
thumbnail
David H Nebinger, módosítva 11 év-val korábban

RE: How to read portlet init parameters

Liferay Legend Bejegyzések: 14916 Csatlakozás dátuma: 2006.09.02. Legújabb bejegyzések
Init params are available via the PortletContext. PortletContext is available via FacesContext using the getExternalContext() method.
thumbnail
Vijaya Kumar Mukthala, módosítva 11 év-val korábban

RE: How to read portlet init parameters

New Member Bejegyzések: 16 Csatlakozás dátuma: 2012.09.13. Legújabb bejegyzések
Hello,


I am using the following code for reading the portlet init-param from the portlet.xml

final FacesContext facesContext = FacesContext.getCurrentInstance();
if (facesContext != null) {
ExternalContext externalContext = facesContext.getExternalContext();
PortletContext portletContext = (PortletContext) externalContext.getContext();
LOGGER.info("Fetching the portlet init params {0}");

soapAction = portletContext.getInitParameter(Constants.CI_DETAIL_SOAP_ACTION);
inputFileName = portletContext.getInitParameter(Constants.CI_DETAIL_INPUT_FILE_NAME);
}


but i am not getting the param values.

Could u please help me about this.

Thanks in advance.