Book Image

Oracle WebCenter 11g PS3 Administration Cookbook

By : Yannick Ongena
Book Image

Oracle WebCenter 11g PS3 Administration Cookbook

By: Yannick Ongena

Overview of this book

<p>Oracle WebCenter Suite 11g is the modern user experience platform for the enterprise and the Web. Oracle WebCenter Suite 11g delivers social and collaborative services to help optimize connections between people, information, and applications. WebCenter has changed a lot with its last release. This book will guide you through all the important and new features for managing and administering WebCenter with advanced recipes.</p> <p><i>Oracle WebCenter 11g PS3 Administration Cookbook</i> is a practical guide that provides over 90 advanced recipes with step-by-step instructions covering important aspects of managing and administering Oracle WebCenter.</p> <p>The book starts by creating an enterprise portal with WebCenter and enhancing it with the new features from the latest 11g version. It then teaches you to build complex navigation models and page hierarchies in detail. It then dives into building Wikis and integrating content with document services. Finally it covers the important administrative concepts of WebCenter Spaces, security, and managing WebCenter applications.</p>
Table of Contents (21 chapters)
Oracle WebCenter 11 PS3 Administration Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Registering a portlet producer at design time


Before you can consume portlets in your application, you first need to register the producer to your application.

There are two types of producers in WebCenter. First, there is a WSRP producer. This producer is based upon the WSRP standard (Web Service for Remote Portlets). The standard describes how to expose portlets to a consuming application by calling web services over HTTP(S) using the SOAP protocol. There are two versions of the WSRP standard. The first one is a basic one that maps to the JSR168 standard. The second and newly created standard is mapping of the JSR286 standard which allows inter-portlet communication using both parameters and events. Oracle WebCenter supports both WSRP1.0 and WSRP2.0.

A second type of producers is the legacy type producers from Oracle Portal. This is called a PDK portlet producer. PDK is the Oracle Portlet Development Kit for Oracle Portal. The PDK allows the creation of portlets using java. These portlets...