Integrating resources from UCM Content Server in ADF Web Applications using the Open WCM tags

There are several ways available to integrate content from UCM in Web Applications. The best known one is probably through the WebCenter Document Services (taskflows that can directly be embedded in ADF weg pages), using the Content Repository connection and Data Control. This approach requires a WebCenter License. Another ways is purely programmatic, through the RIDC API. This way is demonstrated by Andrejus in his article http://andrejusb.blogspot.com/2010/12/oracle-ucm-11g-remote-intradoc-client.html. The RIDC way requires a little more work to integrate into the web application. The RIDC API is also available through web services.

Another way that is based on the Open WCM tags makes it very to integrate content in web pages – an not just the content itself: also the functionality to edit the content from within the context of the run-time web pages.

This article describes how to use the Open WCM tags to embed resources that are maintained in the UCM Content Server in ADF Faces applications.

Image

Environment

The environment in which these steps are carries out consists of a server with WebLogic 11gR1 PS3 and UCM 11g R1 PS3 Content Server. SiteStudio is installed and enabled on the Content Server. Note: this entails a number of specific steps (outlined in http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14495/configucm.htm#CIAHGGHE).

JDeveloper 11gR1 PS3 is used, with the Site Studio, RIDC and WCM extensions added to the base installation.

Image

Note: these extensions are shipped as part of the UCM 11g product:

[Middleware_11gR1PS3_HOME]\Oracle_ECM1\ucm\Distribution\SiteStudioExternalApplications\jdev

Image

Image

Note: WebCenter extensions are not required!

Create and Configure Application with OpenWCM inside

Open JDeveloper. Create a new application, just a Generic Application.

Image

Name the application ContentRichApp.

Image

Create a project with the same name. Choose Site Studio Technology for the project:

Image

Also select ADF Faces as a Project Technology.

Click Finish to complete the wizard. You may want to inspect the files and folder structure that are created upon initialization of the project. An important file is wcm-config.xml that will hold some essential configuration around OpenWCM and SiteStudio Contributor.

Next, create a SiteStudio Connection to the UCM Content Server.

Image

Configure the connection:

Image

When the wizard is closed, right click the new connection and add it to the project:

Image

The next step is to configure the Site that provides the overall container for the content management aspects of this ADF application. Open the wcm-config.xml file:

Image

The Content Server Connection should be displayed:

Image

Click on the green plus icon to create a new site. I have named it ContentRichApp:

Image

Press the OK button.

Image

Next, we need to configure the security settings we need to contact the Content Server at run time. Open the weblogic.xml file:

Image

Then create a new Security Role Assignment for the Role WCMContributor. Assign it to a principle (a user) that matches a principle that exists in your content server. For example weblogic, the administrator of the WLS server running the Content Server.

Image

Developing the Web Page with embedded content

With all configuration done, it is time to create a page in our application. From the New Gallery, create a new JSF (jspx) page:

Image

Note: when we make use of SiteStudio templates, we would probably also Register our page as a Site File. More on that in a later article.

We have several WCM tags at our disposal (see http://download.oracle.com/docs/cd/E14571_01/doc.1111/e13650/ssxa_taglibs.htm#BABHHCEI).

Image

These tags can retrieve (meta)data on content resources as well as embed the resources themselves in our web page. The placeholder tag can be used to not only add the content inline but also provide ‘design time at run time’ facilities that allow inline editing of the content resources or replacement of resources. This allows content editors to edit the content of the application at run time, in the context of the application.

Let’s start with a brief snippet, that retrieves meta data on a content item whose content id was determined through the Content Server web interface. This meta-data is stored in the requestScope and subsequently referenced in the EL expression used for the source attribute of an ADF Faces image component.


<wcm:url type="resource" url="XPVMLOCAL16200000031" var="url"/>

<af:image source="/#{requestScope.url}" id="i1" />

Note the slash in the source attribute.

Integrating resources from UCM Content Server in ADF Web Applications using the Open WCM tags openwcm1

Note that the wcm namespace needs to be declared in the JSPX page:


xmlns:wcm="http://www.oracle.com/jsp/wcm"

This is step one – that brings content server resources into the ADF application. Without programming – and without having to bring WebCenter into the mix.

However, things can get much more interesting when the SiteStudio Contributor is leveraged as well. Through the contributor, resources can be manipulated and edited, inline from within the application. The placeholder tag provides a good way to enlist the contributor.

For example:


<af:panelBox id="pb3" text="News Flash" >
<wcm:placeholder actions="EPRISUTMN" name="News of the day"/>
</af:panelBox>

Initially, there is no News Flash content.

Image

However, when the page runs and is brought into contributor mode – using CTRL+Shift+F5 – the Site Studio Contributor opens and allows editing of the content items in the page:

Image

Login as weblogic or another user on the Content Server.

Image

The page reappears, in Site Studio Contribution mode. Every placeholder element with the appropriate actions configuration is available for editing.

In future articles we take a closer look at the contribution mode and what we can do in it. We will also see how content resources that are MS Office Documents can be displayed inline (very cool). Additional examples of the integration of content and wcm-tags in ADF Faces will be discussed.

Resources

Demo application ContentRichApp: ContentRichApp.zip.

Installing and Configuring Site Studio on Oracle Content Server (Fusion Middleware Installation Guide for Oracle Enterprise Content Management Suite 11g Release 1 (11.1.1))

http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14495/configucm.htm#CIAHGGHE

SiteStudio Tag Library – http://download.oracle.com/docs/cd/E14571_01/doc.1111/e13650/ssxa_taglibs.htm#BABHHCEI

Tutorial for Building SiteStudio Web Site – http://download.oracle.com/docs/cd/E14571_01/doc.1111/e13650/ssxa_creatingsites.htm#sthref489

5 Comments

  1. Luciano Cravero February 2, 2012
  2. Lucas Jellema December 11, 2011
  3. Adam Stortz December 8, 2011
  4. Emilio Esteve January 28, 2011
  5. SEO services January 28, 2011