Questions tagged [portletbridge]

Portlet bridge acts as an translation engine between portal environment and Java web framework to allow portlet development in desired Java framework and not in portal technology itself.

The portlet bridge acts as the translation engine between the portlet environment and the targeted system. It expresses the portlet request context to the bridged environment, executes the request and transforms the response as appropriate for the portlet environment.

It provides an abstraction of the portlet environment for the bridged environment, and for developers working within the bridged environment. These developers are free to execute Faces views as portlets, without the need to understand the details of the portlet APIs and development model.

There are many implementations of portlet bridge like a JSF PortletBridge (JSR-301 and JSR-329), GWT PortletBridge, Wicket PortletBridge and others.

Source: StackOverflow question, "What does a portlet bridge do?"

11 questions
1
vote
1 answer

Why isn't Liferay Faces processing JSF portlet action events?

I am having issues with trying to use Liferay Faces along with any JSF components to fire action events. I've gone through the first part of Liferay's Developing JSF Portlets instruction page up until (but not including) the Internationalize JSF…
Pixelstix
  • 702
  • 6
  • 21
0
votes
0 answers

How to use jboss portlet bridge or liferay bridge?

I got a requirement where I need to display an other teams jsp page into my application (vue.js/jsp application) in a iframe without using company network. Their url only works in company network. Some team achieved it long back via jboss portlet…
Sachin
  • 41
  • 1
  • 3
0
votes
1 answer

What are getServletContextLocal() and getServletContextProvider()

In the tutorials I read I came across getServletContext() but what are these 2 for ? This is how the line looks: ServletContext sc = getServletContextProvider().getServletContextLocal(); How is this different from: ServletContext sc =…
Adrian
  • 19,440
  • 34
  • 112
  • 219
0
votes
1 answer

Getting post data JSR-286 portlet running on IBM websphere portal 8.0

I have one JSR-286 portlet running on IBM Websphere Portal 8.0 This portlet is published under the following friendly url: http://myServer/wps/portal/mySite/menu/my-portlet-friendly-url There is an external page, in another server (and domain),…
Alvaro
  • 25
  • 1
  • 8
0
votes
1 answer

Richfaces error page redirection with gatein, jboss 5.1.0 ga portlet bridge jars and my mistakes

i know there are a lot of similar questions out there about the same/similar topics but i could not apply any of the solutions to my problem. I want to redirect user to a custom error page whenever an exception caught while rendering the portlet…
user2024778
0
votes
2 answers

Redirect after p:remoteCommand not working

I'm having problem with redirecting user to homepage after some action. I have searched stackoverflow and found many solutions, especially from @BalusC, but neither of them worked for me. pageA - remoteCommand:
Marko P
  • 89
  • 1
  • 12
0
votes
1 answer

WAS Liberty Profile JSF2 portlet

How can I develop JSF 2.0 portlets for WebSphere Liberty Profile? It seems they forgot to provide a portlet bridge. I tried to use com.ibm.faces20.portlet.FacesPortlet from WAS full profile, but that doesn't work. Furthermore I tried to use a few…
fishbone
  • 3,140
  • 2
  • 37
  • 50
0
votes
1 answer

JSF 2.0 driven portlet in Websphere - how to implement commandLinks

I know how to create JSF 2.0 servlets and I know how to create portlets, but I have problems combining both technologies. My JSF portlet works well until I have to call methods of my backing beans via . When I click those links the…
fishbone
  • 3,140
  • 2
  • 37
  • 50
0
votes
1 answer

Liferay/Icefaces portlet doesn't allow to access in doView methods

I have a problem with the access at the doView() methods. I've made up a portlet using Liferay 6.3 as CMS, ICEFACES 3.3.0 and tomcat 7. I used a liferay-faces-bridge in order to use Icefaces framework in Liferay. For this reason i have setted up…
antopas
  • 23
  • 5
0
votes
1 answer

Liferay portlet issue with Richfaces 4.2 and PortletBridge 3.1

We have an application with numerous portlets for Liferay 6.0.6 using JSF1.2 with RichFaces 3.3.3.Final and PortletBridge 2.1.1 and everything was working fine. We decided to upgrade our stuff to JSF2 with RichFaces 4.2.3.Final and PortletBridge…
marczeeee
  • 181
  • 1
  • 13
-1
votes
1 answer

Portlet application/pdf is not a supported mime type error

I am facing this error - "application/pdf" is not a supported mime type. I am trying to save the content of p:editor as pdf to my local machine. Imports import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import…
Naxi
  • 1,504
  • 5
  • 33
  • 72