Tagged Questions

JSR 168 is the Java Portlet 1.0 specification.

learn more… | top users | synonyms

3
votes
2answers
232 views

Are there any cpython libraries that work with jsr168 and/or jsr286?

On a Java portal you can have portlets that include data provided by other applications. We want to replace our existing Java portal with a Django application, which means duplicating the Java ...
3
votes
4answers
498 views

How to implement a JSR Specification

I'm considering implementing one or two JSR APIs. I have not yet read the entire specification (the plan is to read them as I code the implementation) but I am very familiar with them. I have read ...
2
votes
2answers
495 views

Writing Portlets for Liferay CMS/Portal

I am new to portlets and have a question about how they work in CMS portals ( we are evaluating Liferay as a CMS ). Let's say, for example, I would like to create a portlet to display all the books ...
2
votes
1answer
1k views

Creating render urls to link between pages in a community in Liferay

I've set up a Liferay community, along with a number of pages each defining there own set of portlets, themes and layouts. I want to be able to create links between these pages. For example given that ...
2
votes
1answer
941 views

Liferay portlets on Grails, strengths + weaknesses?

I'm interested in the possibility of developing Liferay portlets on Grails, using the Grails Portlets plugin. I reckon introducing a portlet framework (such as the Spring Portlet API) will make ...
2
votes
2answers
880 views

Use GWT+Eclipse to develop and deploy JSR-168 portlets

I have a GWT app that I want to build as a Portlet. I have already done that with Liferay but the portlet generated (.war file) cannot be deployed into Apache Pluto. I would like to know if anybody ...
2
votes
1answer
2k views

Simple portlet jsp page flow question

I'm new to Java portlets, and am trying to get a handle on how these things work at a fairly basic level. I'm confused now about how to have multiple "views" in my portlet. Let's say my portlet ...
1
vote
2answers
53 views

What makes a portlet JSR-286 compliant?

Does anyone have a link to a concise summary of what makes a portlet "JSR-286 compliant" vs being only "JSR-168 compliant". I've got a copy of the spec and that's anything but concise so linking the ...
1
vote
2answers
407 views

Spring Portlets with Liferay server or Websphere Portlet Factory?

Any recommendation to to go with Spring Portlets with Liferay server or Websphere Portlet Factory? I am assuming Websphere portlet factory solution expedites portlet development BUT NOT sure from ...
1
vote
3answers
3k views

How to get parameters from URL in Liferay portlet?

I'm using jsp of out-of-box portlet like feed.jspf in Liferay 6: String articleId =null; HttpServletRequest httpReq = ...
1
vote
2answers
152 views

Which JSR 168 compatible Java web frameworks are there?

There are many Java web application frameworks available but what are my alternatives when developing JSR 168 portlets? I found a couple: Struts Spring
1
vote
2answers
893 views

Can Liferay portlets get parameters?

I am having trouble understanding the concept of portlets in a CMS. Let's say I write a weather portlet to display current temperature. I build it, package it in a war, deploy the war in Liferay. ...
1
vote
1answer
418 views

Quick and easy client for testing WSRP?

I am writing a JSR-168 Portlet to be exposed as a service via WSRP on the WebSphere Portal Server... is there a good tool I could use to test the WSRP service on my desktop? I'm looking for something ...
1
vote
1answer
352 views

CSS best practice for portlets

I need to redone existing project CSSs' - more than 5 files, which describes all our porlets UI to standard CSS file,called portlet-spec-1.0.css So, I've found one specification for this: ...
1
vote
1answer
331 views

spring ioc and JSR168 Portlets

Is it possible to do dependency injection using spring into a jsr168 Portlet?
1
vote
2answers
2k views

Liferay Portal : How different from Websphere Portal

I have worked with Websphere Portal 6.0,6.1 and developed portal applications usign JSR 168,JSR 286 Portlets. Now I am moving to project where I will be working with Liferay portal server and JSR ...
0
votes
0answers
47 views

Force Refresh of Portlet after Action

I have a Portlet created using Spring Portlet 3.0.x running inside of JBoss Portal Server 2.7.2. In my Portlet I have both an ActionMapping and a RenderMapping. Once my Action is completed, the ...
0
votes
0answers
38 views

Portlet client-side service

I try to create portlet, which act as "web-service", only on client. In other words: Portlet wait, until somebody send to him several parameters (over http in exmple), and then perform some actions. ...
0
votes
1answer
146 views

SSO Between Websphere Portal and .NET Application

What's the best way to configure SSO between a WebSphere Portal Portlet and a .NET application? We are using WebSphere Portal 6.1.5 and the portlet should just redirect to the .NET application, but ...
0
votes
0answers
70 views

Remote User Information in JBoss Portlet

I am trying to do some logging in a JBoss Portal Server; I would like to log the IP Address (and possibly the Remote Host Information) of the user accessing any of my portlets. I looked at JSR 286 ...
0
votes
1answer
183 views

Portlets or Sharepoint Web parts OR Pageflakes

We have a new requirement driven by user interface team to go with portal solution for our user interface with portlets just like iGoogle. Our enterprise architecture team is recommending Portal ...
0
votes
1answer
449 views

passing URL parameter using command Button in jsf portal using Jsr 168

I am not able to recieve parameter from the URl when I am calling another portlet using Command Button in Jsf in JSR 168. Actually I am calling the method of my manageBean from the Command Button ...
0
votes
2answers
573 views

why jsf is better than struts?

someone said to me that jsf is better to share information within context, but struts 1.1 can't. In JSR168, if we need to develop a portlet, share information in context is critical. so jsf is better ...
0
votes
1answer
985 views

Using php web site as a portlet in JSR 168/268 portlet container [in Oracle BEA Weblogic server]

I have an existing PHP website which use considerable amount of jquery and ajax. Now our client need to integrate it as an portlet in a Oracle BEA Weblogic server and their prefered specification is ...
0
votes
2answers
481 views

JSR168 portlet request cuts param value after # symbol

One of parameters for action link looks like: itemUrl=feedLink.html#xtor=RSS-3208 when I execute next code in backend in processAction(): String itemUrl = (String) request.getParameter("itemUrl"); ...
0
votes
1answer
240 views

How to make a JSR-168 portlet with a chart?

I'm trying to make a JSR-168 portlet with a chart. Studying about it i can run some portlets in NetBeans with portlet-container but i have to make some charts to run too. Can some one help with a ...
0
votes
2answers
383 views

JSR168 Portlet Strange Page Expiring Problem

I'm having a strange problem and no luck debugging. I was tasked with writing a JSR168 compliant portlet to search a database. When you open the portlet, you're given 6 search boxes for different ...