We've been given a requirement that our new project be JSR 286 compliant so that it can eventually be hosted in SharePoint. But in the same breath we were told that we're not being asked to write a portlet. Just be compliant with the standard. We…
I am using JSR 286 portlets and using serveResource() method to achieve AJAX call. Implementation works fine in my localhost server. But it does not work once deployed on application server. Below given is the architecture.
Below given is the code…
I'm trying to deploy a JSR 286 portlet in websphere portal.
Deployment goes fine but when I try to access a resource url directly I get the following:
Error 403: Direct portlet access prevented by WebSphere Portal
I'm very new to portlets and…
I need to redirect with some parameter from JSR286(IBM) portlet to JSF 2.0 portlet.
I am having the page unique id and friendly url too.
I have tried response.sendRedirect() and requestDispatcher.forward() but no success till now.
Please provide…
In JSR286, we can go from one portlet to another by:
1) Simple navigation
2) Using IPC(Inter Portlet Communication)
I have two portlets A and B. Both are having corresponding Portlet.java file(which handle life cycle of portlet). When we go from A…
Can any one please guide me that how can we render the custom web page view in the portlet?
For example, I have a input text box in my where user can enter the target URL and on click of the submit button the portlet content should display the…
i am tasked to develop an "action portlet" that contains the actions (e.g. h:commandLink) for all other portlets on the same page. Now these actions should only be available if the corresponding portlet is actually present on the same page.
Is it…
In IBM Websphere Portal 8.5, how can I get retrieve query string parameters from the URL, inside a JSR286 portlet ?
It seems that the HTTPServletRequest is not passed through to the PortletRequest. Do I need to use the configuration in the…
I want to create a JSR 286 Portlet named VisitCounter to install on websphere Portal 8.0. VisitCounter counts the number of user online.
public void doView(RenderRequest request, RenderResponse response) throws PortletException, IOException {
…
I get the following exception when deploying a JSR 286 portlet into Oracle WebLogic Server 11g (to deploy it later in Oracle WebCenter 11g):
<19-ene-2010 13H32' CET> …
i am new to portlet and I have a visit.jsp page with an href tag as follows:
Visit ....
Basically my requirement is that i just have to call a method called methodVisit in a VisitController.java when i click on the…
I am working on a JSR-286 portlet application that uses JSF 1.2. I am working on moving my JSF managed beans to Spring beans, and I noticed what appears to a difference between how Spring is treating request scope from how JSF is treating request…
Is there any interface or class provided by the JSR286 specification to store configuration parameters for a portlet?
The PortletPreferences interface allows me to store preferences but these are user-specific as far as I know. I also read you could…
I have a JSR 286 portlet running in a Websphere Portal Server 8.0. There, I do a file upload and after show the results of processing. Initially my managed bean responsible to process this file has a Request Scope (@RequestScoped). When I Click in…