JSR 168 is the Java Portlet 1.0 specification.
Questions tagged [jsr168]
34 questions
8
votes
4 answers
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 that the JSR process includes implementing a Test…

pjesi
- 3,931
- 3
- 20
- 16
6
votes
2 answers
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 spec is not a useful answer. I've searched the web…

Gus
- 6,719
- 6
- 37
- 58
5
votes
2 answers
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 168,JSR 286.
I know that as per programming interface…

Rutvij Shah
- 113
- 4
- 10
3
votes
1 answer
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 will be used for CRUD operations. For the sake of…

Boden
- 4,149
- 9
- 43
- 56
3
votes
6 answers
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 = PortalUtil.getOriginalServletRequest(PortalUtil.getHttpServletRequest(renderRequest));
articleId =…

Mayur Patel
- 189
- 1
- 6
- 18
3
votes
2 answers
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 portal's ability to display portlets. The two Sun…

pydanny
- 7,954
- 6
- 34
- 42
2
votes
2 answers
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 has some HOWTO info about how to build JSR-168…
Juan
2
votes
2 answers
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 maintenance point of view. Any personal experience…

anonmys
- 419
- 1
- 8
- 18
2
votes
2 answers
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

Sven
- 913
- 8
- 16
2
votes
2 answers
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.
Now I created a page, and I want to create 2…

jeph perro
- 6,242
- 26
- 90
- 124
2
votes
1 answer
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…

sergionni
- 13,290
- 42
- 132
- 189
2
votes
1 answer
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 development faster and more comfortable, so being able…

miek
- 3,446
- 2
- 29
- 31
2
votes
1 answer
AJAX consumption of weblogic portlet using DISC framework
I have made an JSR 168 portlet as follows:
public class GetTest extends GenericPortlet {
@Override
public void doView(RenderRequest request, RenderResponse response)
throws PortletException, IOException {
…

Harry Joy
- 58,650
- 30
- 162
- 207
1
vote
1 answer
How to conditionally change the initial JSP for a JSR-168 portlet?
I have a JSR-168 portlet application running on WebSphere Portal 6.0.
In the application's portlet.xml file, a specific portlet is defined as follows:
Individual Portlet
…

Scott Leis
- 2,810
- 6
- 28
- 42
1
vote
1 answer
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 not require the user to login since they already…

Carlos
- 1,696
- 1
- 14
- 21