Questions tagged [jsr168]

JSR 168 is the Java Portlet 1.0 specification.

JSR 168

34 questions
1
vote
2 answers

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 required for a particular course. You don't have…
jeph perro
  • 6,242
  • 26
  • 90
  • 124
1
vote
1 answer

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 I am at the top level page (lets call this…
Steve Bennett
  • 387
  • 3
  • 13
1
vote
1 answer

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 that would be considerably less hassle than…
Spike Williams
  • 35,795
  • 13
  • 48
  • 60
1
vote
1 answer

spring ioc and JSR168 Portlets

Is it possible to do dependency injection using spring into a jsr168 Portlet?
cdugga
  • 3,849
  • 17
  • 81
  • 127
1
vote
1 answer

Editing response content on doView()

I have a simple JSR 286 Portlet that displays a user manual (pure HTML code, not JSP). Actually, my doView method, just contains this : public class UserManualPortlet extends GenericPortlet { @Override protected void doView(RenderRequest…
Jean-Michel Garcia
  • 2,359
  • 2
  • 23
  • 44
1
vote
0 answers

Using Portlet Unit with JSR 168 Specification Portlets

We are moving to a testing based development approach. We are looking towards PortletUnit as our unit testing aid for testing the Portlets. I have included all the Portlet Unit jars into the project Created a test case and added a testing method…
Rishabh Ohri
  • 1,280
  • 4
  • 16
  • 28
0
votes
0 answers

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. It is real or not?
Chiffa
  • 136
  • 2
0
votes
1 answer

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 technology (JSR 168) and personally but I think it is…
anonmys
  • 419
  • 1
  • 8
  • 18
0
votes
1 answer

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

I am not able to receive 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 where I am generating the URL, and calling…
Abhishek
  • 1
  • 2
0
votes
1 answer

Portlet JSR 168

I have a portlet with JSR 168 specification which used to run inside UPortal (some old portal based framework for java). However, I need to take this portlet off the portal and make it as an standalone app. Now my question is if there is any way to…
Bytekoder
  • 192
  • 1
  • 7
  • 23
0
votes
1 answer

Getting ClassCastException while running faces portlet in Websphere portal server

I am getting following exception while running JSF based portlet in websphere portal environment, version 6.1. ---- Begin backtrace for Nested Throwables javax.portlet.PortletException: java.lang.ClassCastException:…
Sudhir
  • 523
  • 2
  • 6
  • 15
0
votes
1 answer

Creating themes in Liferay

I want to make changes in look n feel of liferay, for that i have created themes using this link http://www.liferay.com/documentation/liferay-portal/6.1/development/-/ai/creating-a-the-4 Everything worked fine. I saw mesaage BUILD SUCCESSFULL at…
Sonal S.
  • 1,444
  • 1
  • 15
  • 31
0
votes
1 answer

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 uses a considerable amount of jQuery and ajax. Our client needs to integrate it as an portlet in a Oracle BEA Weblogic server and their preferred specification is JSR168. I'm completely new to Java portlets and…
Manjula
  • 4,961
  • 3
  • 28
  • 41
0
votes
1 answer

Redirect from Portlets

I have this: I try to redirect from portlet Historial to portlet Reclamos i'm doing this: String pageUnique= "prueba.page.SRSC.Reclamos" ; String portletUnique= "prueba.portlet.SRSC.IngresoSolicitudReclamos" ; @SuppressWarnings("rawtypes") String…
EddyR
  • 159
  • 1
  • 1
  • 7
0
votes
2 answers

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"); ,that I get next value: feedLink.html e.g. request…
sergionni
  • 13,290
  • 42
  • 132
  • 189