YOUR FEEDBACK
Adobe Flex 2 - Answering Tough Questions About Enterprise Development
A Correct Person wrote: Denis Roebrt commented on the 21 Aug 2006 "Tough Que...
SOA World Conference
Virtualization Conference
$50 Savings Expire May 23, 2008... – Register Today!

2007 West
GOLD SPONSORS:
Active Endpoints
Your SOA Needs BPEL for Orchestration
BEA
Virtualized SOA: Adaptive Infrastructure for Demanding Applications
Nexaweb
Overcoming Bandwidth Challenges with Nexaweb
TIBCO
What is Service Virtualization?
SILVER SPONSORS:
WSO2
Using Web Services Technologies and FOSS Solutions
Click For 2007 East
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts

SYS-CON.TV
TOP THREE LINKS YOU MUST CLICK ON


Understanding the Event Framework

Digg This!

In last month's article, I provided an in-depth description of the Advisor Framework that is embedded in WebLogic Portal. This month, I'll focus on describing the components, capabilities, and extensions of the Event Framework. Next month I'll look at the Portal Framework

The Event Framework is the run-time engine and framework in WebLogic Portal that provides the capability to enable Web sites to react intelligently to user interaction, to capture business relevant interaction information, and to add customized business event agents. Incorporated into the framework are the EventHandlers, EventListeners, EventService, Events, and custom JSP tags.

Business Scenarios
The main purpose in using the Event Framework is to provide business value through the intelligent use of captured user interaction information. Some of the benefits of user interaction information include initiating business-defined campaigns as the user traverses the Web site, and analyzing user interaction behavior. Each is meant to help the business understand its users and to increase the potential of online revenue.

Event Framework
The Event Framework is a configurable framework that implements J2EE design patterns, and allows the easy incorporation of custom components via XML configuration files. The main components in the Event Framework architecture are the EventService EJB, EventHandler types, EventListener types, asynchronous delivery mechanism, Event types, and JSP tag library (see Figure 1).

At a high level, the event JSP tags or a servlet life cycle event would invoke the EventService with an Event notification; the EventService would then dispatch the Event to the EventHandler; the EventHandler would request the registered EventListeners to handle the Event; the EventListeners would perform some business processing and may request additional help from the EventProcessors; and finally, the EventProcessors may perform additional processing, including calling services and frameworks that are part of WebLogic Portal (see Figure 2).

EventService
The EventService is a Stateless Session EJB that implements the "Session Facade" J2EE design pattern. The main responsibility for the EventService is to encapsulate the business processing required to implement the behavior requested by an event JSP tag call or a servlet lifecycle event. As shown in Figure 2, the EventService receives the Event from the Event JSP Tag, and requests the synchronous and asynchronous EventHandlers to dispatch the Event to the registered synchronous and asynchronous Event Listeners. No return value is returned during and after the dispatching of each event type, so exceptions will need to be thrown and caught in order to handle any business processing errors.

Standard Events
Events are Java classes that implement the "State" J2EE design pattern. The main responsibility for the Event object is to encapsulate the event information that is specific to each event type. The different types of Events that are part of WebLogic Portal include Session, User Registration, Product, Content, Cart, Buy, Rules, and Campaign Events (see Figure 3). At a minimum, each of the provided events contain information that describe the name of the application that generated the event, the time of the event, the type of the event, the Session ID, the User ID, and any other Event type-specific information.

Standard EventHandlers
EventHandlers are Java classes that implement the "Subject" participant of the "Observer" J2EE design pattern. The main responsibilities for the EventHandlers (synchronous and asynchronous) are to manage the registration of all the EventListeners and to dispatch Events to each registered EventListener. The EventHandler class manages events that are to be delivered synchronously to a registered EventListener, while the AsynchronousEventHandler manages events that are to be delivered asynchronously to a registered asynchronous EventListener.

Standard EventListeners
EventListeners are Java classes that implement the "Observer" participant of the "Observer" J2EE design pattern. The main responsibility for the EventListeners is to execute the appropriate business processing for any events that they are responsible for handling. EventListeners can either be synchronous or asynchronous. Synchronous EventListeners are registered with synchronous EventHandlers, while asynchronous EventListeners are registered with asynchronous EventHandlers. The different types of event listeners that come with the product include the BehaviorTrackingListener, DebugEventListener, CampaignEventListener, AsynchronousCampaignEventListener, and SessionEventListener (see Figure 4).

Custom Events and EventListeners
Because the Event Framework was designed to be extendable, hooks are provided for customers who wish to add their own custom Event and EventListener classes. For example, a custom event can be created to determine how often a quote tab is selected on a trading portal. Capturing this information would provide value, as the business can decide to improve the "stickiness" factor of their Web site by combining frequently used functionality onto one page or grouping commonly used functionality together.

To write a custom Event, a developer would have to extend the Event class (see Figure 3); add an event type attribute; add event attributes to be passed along to the event listener; and provide a constructor that takes in the event attributes in the argument, passes the event type to the Event class, and adds the Event attributes to the attribute list. The Event class that is being extended provides helper methods to retrieve the event's timestamp and type, and provides setter and getter methods for the event's custom attributes.

To write a custom EventListener, a developer would have to implement the EventListener interface (see Figure 4), provide a default constructor, implement the getTypes and handleEvent methods, and provide a list of Events that the EventListener is expected to react to. The Event Framework also provides the ability to dynamically determine, during the deployment and runtime stages, the events an event listener should respond to. This dynamic linkage between the many different types of Events and EventListeners provides the ability to adapt the application, via configuration changes, to meet the changing needs of the business.

After compiling the custom Event and EventListener classes, the developer should make sure to place the resulting files in the enterprise application classpath. This will insure that the custom Events and EventListeners are made available to all the Web applications in the enterprise application. More information about creating and registering custom Events and EventListeners can be found on the BEA Systems online documentation site for BEA WebLogic Portal (http://edocs.bea.com/wlp/docs70/dev/evnttrak.htm#998994).

JSP Tags
The Event Framework works in conjunction with events that are initiated during the manipulation of the Web site by the end-user. To help with the development of JSP pages that make use of the Event Framework, BEA has included custom JSP tags that instantiate Events and invoke the Event Framework. These JSP tags can be used to track user behavior, and to start promotions and campaigns.

<tr:clickContentEvent>
The <tr:clickContentEvent> JSP tag will generate a ClickContentEvent when the user clicks on an ad impression. This tag will return a URL query string that contains event parameters, which can be used to form a complete URL. This would mean that there is a two-step process when adding an ad click event JSP tag to a JSP page.

As shown below, the first step to adding an ad click event would be to execute the JSP tag in order to create the URL query string.

<%@ taglibs URI=" tracking.tld" prefix="tr" %>
.
.
.

<tr:clickContentEvent id="urlQuery"
documentId="<%=documentId %>"
documentType="<%=documentType %>"
userId="<%=request.getRemoteUser() %>"
/>

The second step would be to add the URL query string to the hyperlink that would execute the event. The example below adds the URL query string to the hyperlink.

<% finalURL = "www.bea.com/specials" + "&" + urlQuery; %>
<A HREF="<%= finalURL %>">

The "id" tag attribute contains the URL query string that is returned by the custom JSP tag and is used during the construction of the final URL string.

<tr:displayContentEvent>
The <tr:displayContentEvent> JSP tag will generate a DisplayContentEvent event when an ad impression is displayed to the end-user. As shown below, the developer would simply include the custom JSP tag when displaying the content to the end-user.

<%@ taglibs URI=" tracking.tld" prefix="tr" %>
<%@ taglibs URI=" es.tld" prefix="es" %>

.
.
.
<es:forEachInArray id="nextRow"
array="<%=ads %>"
type="com.bea.p13n.content.Content">
.
.
.
<tr:displayContentEvent
documentId="<%=documentId %>"
documentType="<%=documentType %>"
/>
.
.
.
</es:forEachInArray>

<tr:clickProductEvent>
The <tr:clickProductEvent> JSP tag will generate a ClickProductEvent event when the user clicks on a product impression. This tag will return a URL query string that contains event parameters, which can be used to form a complete URL. As with the <tr:clickContentEvent> custom JSP tag, the <tr:clickProductEvent> tag also employs a two-step process when adding a product click event JSP tag to a JSP page.

As shown below, the first step to adding a product click event would be to execute the JSP tag in order to create the URL query string.

<%@ taglibs URI=" productTracking.tld" prefix="trp" %>
.
.
.

<trp:clickProductEvent id="urlQuery"
documentId="<%=productId %>"
sku="<%=productSKU %>"
userId="<%=request.getRemoteUser()%>"
/>

The second step would be to add the URL query string to the hyperlink that would execute the event. The example below does just that:

<% finalURL = "www.bea.com/productDetails/" + "&" + urlQuery; %>

<A HREF="<%= finalURL %>">

The "id" tag attribute contains the URL query string that is returned by the custom JSP tag and is used during the construction of the final URL string.

<tr:displayProductEvent>
The <tr:displayProductEvent> JSP tag will generate a DisplayProductEvent event when a product impression is displayed to the end-user. As shown below, the developer would simply include the custom JSP tag when displaying the content to the end-user.

<%@ taglibs URI=" productTracking.tld" prefix="trp" %>
<%@ taglibs URI=" es.tld" prefix="es" %>

.
.
.
<es:forEachInArray id="nextRow"
array="<%=ads %>"
type="com.bea.p13n.content.Content">
.
.
.
<trp:displayProductEvent
documentId="<%=productId %>"
documentType="<%=documentType %>"
sku="<%=productSKU %>"
/>
.
.
.
</es:forEachInArray>

Conclusion
The Event Framework enables the creation of applications that track customer behavior and dynamically execute business campaigns. The out-of-the-box Event Framework components include event JSP tags, a runtime engine, and an extendible interface that allows the easy inclusion of custom Event and EventListener components.

The business value gained from capturing user interaction information ranges from enabling the system to intelligently react to customer interaction in order to increase the potential of a sale to providing valuable information that can be used to identify how to increase a portal site's usability and user satisfaction. The Event Framework contained in BEA WebLogic Portal provides the capabilities that enable businesses to achieve greater value from their portal implementations.

About Dwight Mamanteo
Dwight Mamanteo is a technical manager with the Global Alliances Technical Services organization at BEA Systems. He has been with BEA since 1999 and his current job responsibilities include providing technical enablement support to BEA's strategic SI and ISV partners. He has been involved with object-oriented programming, design and architecture since 1993.

BEA WEBLOGIC LATEST STORIES
3rd International Virtualization Conference & Expo: Themes & Topics
From Application Virtualization to Xen, a round-up of the virtualization themes & topics being discussed in NYC June 23-24, 2008 by the world-class speaker faculty at the 3rd International Virtualization Conference & Expo being held by SYS-CON Events in The Roosevelt Hotel, in midtown
Microsoft To Keynote 4th International Virtualization Conference & Expo
Mike Neil is general manager for virtualization strategy in the Windows Server Division at Microsoft. Mike is focused on the delivery of the Windows virtualization technology, including Windows Server 2008 Hyper-V, Microsoft Hyper-V Server and Virtual PC 2007. Mike also directs the tec
Virtualization Meets DaaS - Desktop-as-a-Service
After a $1.5 million angel round, Desktone, which was started in 2006 by Eric Pulier, who also started SOA Software, US Interactive and IVT, picked up $17 million in first-round funding about a year ago from Highland Capital Partners, SoftBank Capital, Citrix Systems and the China-base
Engelbart's Usability Dilemma: Efficiency vs Ease-of-Use
The mouse was the original idea of Doug Engelbart who was the head of the Augmentation Research Center (ARC) at Stanford Research Institute. Engelbart's philosophy is best embodied, in my opinion, in the design of another device that he invented, the five-finger keyboard - with keys li
Web 2.0 Is Fundamentally About Empowering People
'Unlocking content to be remixed into new business value' is the driver of Web 2.0 in the enterprise, says Rod Smith, IBM VP of Emerging Internet Technologies, in this Exclusive Q&A with Jeremy Geelan on the occasion of IBM's release of a new technology created by IBM researchers, code
Why Do 'Cool Kids' Choose Ruby or PHP to Build Websites Instead of Java?
Here is a question that I have been pondering on and off for quite a while: Why do 'cool kids' choose Ruby or PHP to build websites instead of Java? I have to admit that I do not have an answer. Why do I even care? Because I am a Java developer. Like many Java developers, I get along w
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON FEATURED WHITEPAPERS

MOST READ THIS WEEK
ADS BY GOOGLE
BREAKING NEWS FROM THE WIRES
AmberPoint Extends SOA Governance to Apache ServiceMix, BEA AquaLogic Service Bus 3.0, BEA WebLogic Integration, Cisco ACE XML Gateway, JBoss Enterprise Application Platform and Oracle Fusion
AmberPoint announced today that it has extended the reach of its runtime SOA governance