portlet

WSRP Portlets in Oracle WebCenter : Images referenced from CSS files aren't loaded

If a WSRP portlet displays a jsp page that references a css file which references an image, the image can't be loaded because the url in the css can't be found. The url in the css is a relative one: ../images/image.gif. Details of my problem I have developed a JSR168 portlet (Java Portlet Standard) and I want to deploy it in Oracle Web...

Exception when deploying a JSR 286 portlet into WebLogic+WebCenter 11g

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> <Error> <oracle.portlet.server.containerimpl.PortletApplicationImpl> <BEA-000000> <Error al procesar el archivo "/WEB-INF/portlet.xml" en la lÝnea 6 columna 68. org.xml.sax...

jquery portlet - parameter for each portlet?

I managed to get the jquery portlet working on my JSP with java backend, using this example as a starting point: http://jqueryui.com/demos/sortable/#portlets for each portlet, i need to add an additional icon on the portlet header, depending on whether the user has permission on that portlet. so its something like $(".portlet").addClas...

SAP Portal with thirdparty content

Anyone integrated SAP Portal with a third party web content management system (e.g., Vignette)? I don't have too much exposure to SAP Portal, but I know it provides a J2EE App Server and there are something called iViews which I would assume are some sort of fancy JSPs and Servlets etc. Any insight will be helpful. ...

Integrating Alfresco Flexspaces with JBOSS portal

We're working on a development of a JBoss portal. As part of the functionality, we need to integrate it with Alfresco, using a portlet. Both (portal and Alfresco) will connect to the same LDAP directory to get the users, to guarantee that the same users can access to both systems. Right now that part of the implementation is not complete...

JSF external linking

I was wondering if is it possible to external link - something like domain.tld/jsfview - to a specific jsf view/page. I don't want the start page of my jsf app, which would be triggered by <navigation-rule> <navigation-case> <from-outcome>start</from-outcome> <to-view-id>/jsf/index.xhtml</to-view-id> </navigation-case> </na...

Handle PortletException in JSR-168

Hi, How can I catch and handle the PortletException thrown by GenericPortlet.doView()? I'd like to show a custom error page or custom message in JBoss portal if this exception is thrown for some reason. ...

Java Portal engine for integration

I want to add a dashboard functionality to an existing java web application, this should be a portlet container, so it can host other mini applications or open social gadgets. What is the best solution for this? Integrating an existing full blown portlet container? ...

ASP.NET MVC, JQUERY Portlets and Personalization

Is there any sample/links/thoughts for implementing asp.net mvc application with jquery portlets and asp.net personalization provider? All thoughts/ideas/feedback are welcome ...

Portlet URL Generation From AJAX Servlet

I am trying to modify a portlet to load data for a table over AJAX because the WS calls take a ridiculous amount of time to complete. The table is basically an overview with one entry per table row and a link in each row to more detailed information on the entry. Here is how I am currently creating the URLs for each row in the table: ...

Liferay error page if at least one portlet is unavailable

I'm tryin to setup a custom error page in Liferay portal if at least one portlet fails The portal always forward to portlet_error.jsp and display a red zone in the portlet position. How can I set a redirect or a forward to a page that fills the complete page layout? Regards ...

How to correctly implement OpenSessionInView with Spring 3.0 and Hibernate 3 (in liferay portlets)?

Hello, I have some problems in implementing the OpenSessionInView pattern. From various resources on the web i configured my application in this way: 1) in my dispatcher-servlet.xml I have an interceptor that should get all my requests with a spring class OpenSessionInViewInterceptor: <bean id="urlMapping" class="org.springframework....

Is there a way to find out how many portlets are there in any page?

The problem is, say, i am having a page xyz. And in that page there are 20 portlets. How can i find out the names of all portlets placed on the page. Provided i am having the admin privilege. ...

Grails Liferay portlet not invoking action

I am trying to create a simple portlet for Liferay 5.2.2 using Grails 1.2.1 with the grails-portlets 0.7 and grails-portlets-liferay 0.2 plugins. I created and deployed a stock portlet (just updated title, description, etc...). It deploys correctly and the view renders correctly. However, when I submit the default form that is in view.g...

Is a single page web-app suitable for portlet

Hi everyone, i have a web application that is build as single page. Through one user session, it stores lots of DOM and JS objects on client side. So if browser refreshes my app, it starts from very beginning, except user sing-in, etc. And i am looking forward for a way to migrate this application to portlet. I have experience with por...

Is there built-in web analytics tool in Liferay?

Hi, I need to have the statistics of a web site and generate reports. I am using Liferay portal. Is there anything built-in for web analytics in Liferay? if yes, please help how to configure it? Thanks, Dhananjay ...

oracle WCI portlet navigation issue

Hi I am using Oracle WCI and I have a portlet that points to an asp.net page, this page has an Iframe that points to another .net page via a given url (different to that of the gateway url in the browser). My question is when the user presses submit on the .net page (in the iframe) how do I get the gateway page to refresh? At the mome...

Per instance Liferay portlet parameters

Hi! I have a portlet. Inside of this portlet I have Flex application that displays some stats using charts. Flex recognize what stats it needs to display, by a parameter provided in flashVars. I need to create one page for each kind of stats and so every page must contain before mentioned portlet. My problem is that I can't find a way t...

How many separate flash movies can be rendered on one HTML page before performance is noticebly smaller

Hi there, I'm currently developing a portal application that will require a number of Adobe flex elements. Each portlet could potentially be it's own flash movie. What I would like to know is how many of these portlets can be rendered in a browser on an average system before the number flash player starts using up too much memory and pe...

Problem with jsp:param/ c:param in a portlet

I'm just trying to include jsp pages with jsp:param in a portlet environment (using pluto) for example, <jsp:include page="test.jsp"> <jsp:param name="foo" value="bar"/> </jsp:include> and in test.jsp, <c:out value="${foo}"/> or <%= request.getParameter("foo") %> The output is always null and i've also tried using c tags, but g...