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...
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...
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...
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.
...
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...
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...
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.
...
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?
...
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
...
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:
...
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
...
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....
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.
...
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...
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...
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
...
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...
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...
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...
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...