Oracle9iAS Portal Developer Kit
How to Build a URL-Based Portlet that Uses XML Filtering

PDK Release 2 (9.0.2 and later)


In the article How to Build a URL-Based Portlet, you learned how to create a portlet that displayed the content of a URL-based application.  The example used in that article was Google.com.  With the PDK, you can also easily create URL-based portlets that filter and manipulate URL content before displaying it.  Two types of filters are available:

This article describes how to build a URL-based portlet that uses XML filtering.  To make things easier, it uses the existing Google.com portlet framework and simply replaces the provider.xml file with an appropriate XML provider definition for creating an XML based portlet.  It uses a sample XML file which is contained in the article below.  It shows how you can transform this XML content into HTML and then render that content inside the portlet.

ASSUMPTIONS

  1. You have successfully installed the PDK framework by following the article Installing the PDK Framework and Samples.
  2. You understand the steps required to display a URL-based portlet on a portal page.  Refer to the article Installing the URL-Based PDK Samples.

THE SAMPLE XML/XSL FILES

Before building your XML based portlet, you will need an XML feed or XML file.  Below is a sample file you can use.  Copy the text and then save it as sample.xml.

You will also need an XSL file which your portlet will use to display the XML content.  You may use the sample XSL file below.  It should be saved as sample.xsl. 

Note: In your XSL file, you must specify the version in the <xsl:stylesheet> tag; for example <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

CREATING AN XML PROVIDER DEFINITION

Using a text editor, create an XML file for your portlet provider. Use the stylesheet tag to apply the stylesheet you just created. You may use the sample xml file below (you must change the httpProxyHost and httpProxyPort values to point to your own proxy server and port). Please refer to the article Understanding provider.xml for URL-Based Portlets for an explanation of the required XML tags and their functions.

After you have created the file, save it on your file system as "provider.xml".

<?xml version = '1.0' encoding = 'UTF-8'?>
<?providerDefinition version="3.1"?>
   <provider class="oracle.portal.provider.v2.http.URLProviderDefinition">
   <providerInstanceClass>oracle.portal.provider.v2.http.URLProviderInstance</providerInstanceClass>
   <session>true</session>
   <proxyInfo class="oracle.portal.provider.v2.ProxyInformation">
      <httpProxyHost>www-proxy.us.oracle.com</httpProxyHost>
      <httpProxyPort>80</httpProxyPort>
   </proxyInfo>
   <portlet class="oracle.portal.provider.v2.http.URLPortletDefinition">
      <id>1</id>
      <name>XML Portlet</name>
      <title>XML Portlet</title>
      <description>Display XML in a portlet.</description>
      <timeout>100</timeout>
      <timeoutMessage>Timed out waiting for XML Portlet.</timeoutMessage>
      <acceptContentType>text/html</acceptContentType>
      <showEdit>false</showEdit>
      <showEditToPublic>false</showEditToPublic>
      <showEditDefault>false</showEditDefault>
      <showPreview>false</showPreview>
      <showDetails>false</showDetails>
      <hasHelp>false</hasHelp>
      <hasAbout>false</hasAbout>
      <renderer class="oracle.portal.provider.v2.render.RenderManager">
         <contentType>text/html</contentType>
         <showPage class="oracle.portal.provider.v2.render.http.URLRenderer">
            <contentType>text/html</contentType>
            <charSet>ISO-8859-1</charSet>
            <pageUrl>http://myserver.com/xml/sample.xml</pageUrl>
            <filter class="oracle.portal.provider.v2.render.XmlFilter">
               <stylesheet>http://myserver.com/xml/sample.xsl</stylesheet>
               <urlContentType>text/xml</urlContentType>
            </filter>
         </showPage>
      </renderer>
   </portlet>
</provider>

DEPLOYING YOUR PROVIDER ON OC4J

To configure and deploy your provider on OC4J, please see the section called "Deploying Your Provider on OC4J" in the article, How to Build a URL-Based Portlet.

At this point, you are ready to register your provider and then add your new portlet to a page. Please follow the appropriate steps for doing this as described in the Installing the URL-Based Portlet Samples article.

Now that you have successfully created URL-based portlet that uses XML filtering, please look for other portlet development articles that describe how to add extra features to your portlet, including single sign-on to external URL-based applications, HTML filtering and more.

Here are some reference articles to help you better understand the architecture and technical details of URL-based portlets:


Revision History: