Andy Pemberton Rotating Header Image

Posts Tagged ‘portal’

The Perfect Portlet Markup

I thought I’d throw together a quick precursor to another post I plan on finishing in the next few days. This post is about portlets - or, how to structure the HTML markup for a JSR168/JSR286 portlet, to be more specific.
I’ve worked on theming portal user interfaces for a few years now, primarily on [...]

New Book: JBoss Portal Server Development - Sample Chapter Download

var dzone_style=”2″;
Packt Publishing recently published a book on JBoss Portal; the book, titled JBoss Portal Server Development, is written by Ramanujam Rao - a JavaEE architect who currently works for Nationwide. Packt sent me a copy and asked that I write a review of the book, which I plan on doing in the next [...]

Spring Portlet MVC Implicit Model

var dzone_style=”2″;Do you use Spring Portlet MVC? Have you ever noticed the ImplicitModel request parameter in your URL? It looks something like:

org.springframework.web.portlet.mvc.ImplicitModel=true

Well, it’s a Spring Portlet MVC 2.5 feature and I was scratching my head trying to figure out what it does. It’s set by Spring under the covers, so I dug into their source [...]

In response to JSR-286: The Edge of Irrelevance

var dzone_style=”2″;I have to admit, I can totally relate to Eric Spiegelberg’s article, JSR-286: The Edge of Irrelevance.

It’s a great article; in case you don’t have time to check it out, Eric’s main thesis is that:
the portal architecture lacks enough technical advantages and distinguishing features to warrant an increase in acceptance.

Annotation-based Spring Portlet MVC Lifecycle

var dzone_style=”2″;Jared Richardson spoke at a Richmond Java Users Group meeting I attended last week; his topic was about investing in yourself and your career - what he called career 2.0. At one point during the presentation, he noted that “if you can’t draw something, you don’t understand it”, which motivated me to finish a [...]

Securing AJAX Servlets in JBoss Portal

Before the Portlet 2 specification (JSR286), the recommended method for adding AJAX functionality to a JSR168 portlet was to deploy an additional servlet to the portal server (either inside the same WAR as your portlet(s) or in a stand-alone WAR) to handle asynchronous requests. Requests to these servlets are then handled by the servlet container [...]

Compress your JBoss Portal Theme with pack:tag

The goal of this article is to show you how to use pack:tag to optimize the performance of your JBoss Portal theme. I’ve used this approach on a production JBoss Portal 2.6 implementation and tested the approach out in version 2.7.
JBoss Portal has a feature-rich theme framework where CSS and javascript resources are included in [...]

Nested LDAP Groups in JBoss Portal with Active Directory

While JBoss Portal supports Active Directory for authentication and authorization, as of versions 2.6.X and the 2.7 CR, the product does not support nested groups for a given user when the LDAP server itself does not provide recursive capabilities. Unfortunately, Microsoft Active Directory does not support recursive queries for nested groups.
In this article, I’ll describe [...]