Skip to main content

Webcenter Portal


Associated Certifications : Oracle WebCenter Portal 11g Certified Implementation Specialist

Below are the exam topics and preparation material links which will help you to clear exam.

Exam Topics :

Oracle E20 Concepts :
Describe Portal Concepts
Describe Portlet Interoperability
Describe Content Management and Team Collaboration
Differentiate Internet and Enterprise Portals
Describe Composite Applications
Describe Personalization and Customization

Oracle Jdeveloper and ADF :
Explain JSF, ADF Faces Rich Client, ADF Business Components
Create a Page Template and Layout
Build a ADF Task Flow using Business Components
Configure Partial Page Refresh

Oracle WebCenter Framework :
Identify WebCenter Suite Components
Describe Framework, Composer and Services
Explain WebCenter Architecture and role of MDS
Integrate a Portlet within WebCenter
Build and Deploy a Portlet
Implement Interporlter communication

Oracle Composer :
Describe Composer, Resource Catalog and Catalog Filters
Set up Runtime Editing with Customization Components
Publish Multiple Resource Catalogs
Create the Catalog Resources using a Filter
Customize Metadata with MDS
Describe Page Service
Create Pages and Taskflows at Runtime
Render Pages with ADF Faces Components
Customize Look and Feel at Runtime
Customize at Design Time - Add Styles and Create new Skins

WebCenter Services :
Configure Wiki, Blogs, Discussions, Tags
Configure and use Events, Links and List Service
Configure and use WorkList
Configure PeopleConnection Service 
Configure and Use Mail and Calendar
Configure and use Search

Integrating Content :
Configure and Customize Document Library
Use Content Repository Based Data Controls (JCR)
Use CIS APIs 
Configure and use Content Presenter

WebCenter Spaces :
Describe WebCenter Spaces
Explain difference between Framework and Spaces
Create a Group Space Template
Customize Space Chrome and Skins
Describe Group Space Security Model
Customize Taskflows in Spaces
Explain the different aspects of Group Space Administration

Installation and Configuration :
Describe WebCenter Install Process
Use the Performance and Diagnostics tools
Configure a custom application with WebCenter Services
Export/Import WebCenter Applications


To clear this exam first step is get the dumps. But you can not totally rely on dumps.You should be prepared for all types of question. So go through the documentation once.

I prepared the following material while preparing for this exam.Go through the following Link which will help you to clear the exam.If anyone need the dumps just reply to this post or send me a mail.









  

Comments

Popular posts from this blog

Passivation and Activation in ADF (Application Module )

1. For performance reasons, ADF keeps a pool of application modules in memory. It tries to give each session the same application module as the session used during the last request; however, this might not be possible during peak load of your application. 2. In this case, ADF saves the application modules state in a database table so the application module can be used by another session. This is called passivation . 3. When the first session needs the application module again, its state is retrieved from the database process known as activation . 4. If you have made an error in your code and depend on some variable that is not persisted correctly when your application module state is stored, you will experience mysterious errors under high load.   Enable/Disable Application Module Pooling : Right-click on your application module, choose Configurations.By default, each application module has two configurations. Ensure that the one ending in …Local is selected and then click

Get modified rows from Entitiy Cache

To get the modified rows from entity cache we have getEntityState() method at EntityImpl class. Refer to my previous blog  Accessing EO impl methods from VO impl  where i am overriding the getEntityState() in EOimpl and calling it in VOImpl. We can use methods written or overridden in VOImpl class to AMImpl class. There are different states associated with an entity object. STATUS_UNMODIFIED STATUS_MODIFIED STATUS_NEW STATUS_DELETED STATUS_DEAD We have to check the state or row in our AmImpl class by using the VOImpl method and through this we can distinguish the rows present at vo. Add below code in AMImpl class along with my previous post. public void geCachedRowsCount(){         JobsVOImpl jobsVo = (JobsVOImpl)this.getJobsVO();         RowSetIterator iter = jobsVo.createRowSetIterator(null);             while(iter.hasNext()){             Row row = iter.next();             byte state = jobsVo.getEntityState(row);             System.out.println("Job_id -&

The file store "WLS_DIAGNOSTICS" could not be opened

WLS_DIAGNOSTIC ERROR weblogic.store.PersistentStoreException: [Store:280073]The file store "WLS_DIAGNOSTICS" could not be opened because it contained a file with the invalid version 1. A file of version 2 was expected. When you get this error while running your application on internal weblogic server delete the following file WLS_DIAGNOSTICS000000.DAT search the file in following path C:\jdev_work\system11.1.1.5.37.60.13\DefaultDomain this file is in DefaultDomain folder of your jdev. and delete the WLS_DIAGNOSTICS000000.DAT file . and run your applicatuon