I am passing some parameter from external application to portal and hitting login portlet.
I want to access that parameter on theme jsp ( default.jsp ) because based on the parameter value i need to show appropriate banner on portal.
I am able to access that parameter in my Login Portlet, but as per my knowledge
whenever a portal page renders first of all theme renders ( default.jsp ) then skin renders ( control.jsp ) and then portlets on the page starts rendering.
please correct me if i am wrong above.
Now since theme's default.jsp renders first, so i want that parameter on theme jsp so that i can show appropriate banner to the user.
I am using URLGenerataionAPI to generate url from my servlet and hitting my login page and portlet. Passing parameters through in MAP.
can any one tell me on how to retrieve this parameter on theme's jsp ?
Many thanks...
**
i am trying to find a way to retrieve a parameter ( passed from non-portal external app )in theme jsp.
many thanks..
You can find more details about this service and how to configure it in below article.
http://www.ibm.com/developerworks/websphere/library/techarticles/0602_hepper/0602_hepper.html
sailaja
see, i am using URLGenerataionAPI to generate url from my servlet and hitting my login page and portlet. Passing parameters through MAP.
i tried retrieving those parameter from request ( request.getParameterMap() )object in theme jsp, but i am getting null...
thanks..
**