I am new to Portlet Application development, I am having one doubt regarding PortletContext object. If multiple portlets are configured in single portlet application then How many PortletContext objects are created per PortletApllication. i.e…
Is there any diffference between these two:
This is w.r.t going from ActionPhase to RenderPhase.
1
PortletURL manageUrl = response.createRenderURL();
manageUrl.setParameter("action", "search");
2
ActionResponse.setRenderParameter("action",…
I got the impression from reading articles on jsr286 eventing that the eventing feature enables portlets to communicate with one another if they belong to different .war files.
I just want to confirm that even if 2 portlets belong to same war file,…
I have developed a web application using sprint portlets JSR 286 which displays data in the table format in web browser.
Below given is the code used to call the controller from JSP file.
`
function…
I have written portlet, before it work excellent, but now it begin to throw exception
16:20:04,592 ERROR [PortletRequestDispatcherImpl:137] javax.servlet.ServletException: PWC1243: Filter execution threw an exception
javax.servlet.ServletException:…
I'm building several Portlets to deploy on a WebSphere Portal Server, and each Portlet is deployed in it's own WAR. Now, I'm needing to track every Portlet a user visits while it's logged on the Portal. I was trying to get the Session Identifier…
I need WebSphere Portal to clear Render Parameters on page change. What's happening now -and it's a Navigational State feature of the product- is that the render parameters that I used in some URL's are being encoded in the URL, so even after I…
Is it possible to get the Portal base URL (like http://www.thisismyportal.com) from a Portlet using Portlet 2.0 API?
Right now I'm planning to manually build it concatenating PorletRequest.getServerName(), PortletRequest.getServerPort() and…
I have a JSF Portlet in a Portal page. I need to display a error page whenever an exception is thrown by any of the page bean methods. How can I do that?
I tried the below configuration in web.xml and it works for a servlet but not for a…
Hey Hi,
I am new to liferay. I am trying to migrate portlets developed in websphere 6.1(JSR 286) to liferay 6.1. For time being I have developed a portal(PA_test.war) displaying some text, which I deployed on liferay.
.war file was chosen to-"Upload…
I have the following java code. I am using XQJ to write a test XQuery program using XQJ api. I have downloaded JSR-000225 XQuery API for Java 1.0 Final Release, and added xqjapi.jar to my classpath.
The java code is as simple as the following…
Hi i have a simple requirement but really confused to implement that.
I have a portletvview.jsp and there's a link in that page. On click of that link i should open a pop-up page, which is my second jsp.
How to implement this in JSR-286 Basic…