Webcenter portal 12c released. An in-depth view of Webcenter portal 12c.

Oracle releases first FMW 12c platform which also includes ORACLE WEBCENTER 12.2.1. Oracle webcenter portal changed a lot in this release. Some of the interesting features includes :

– New User Experience
responsive12c111

admin

– Responsive UI
Two OOTB Responsive Page Templates – Mosaic and Unicorn

– Rigorous stress and performance testing allowed to achieve an average response time of
-Portal composer view is completely changed. Options of draft is available.
composer

– Multiple OOTB page style.
pagestyle

– Component wiring – Wiring between consumer and producer taskflow or pass value as parameter to component or Pass values to page components using values in page URLs. This is one of most likeable features in this version.

– Rapid application integration :

rad

OOTB Integration – integration between WCP and Oracle products is available OOTB (Oracle BPM, OBIEE or IDM – now, Oracle Mobile Cloud Service (MCS) or Catalog Service – in 12c.

– Wizard-driven tools for data integration via support for REST and SQL data sources, earlier we only had sql data source. Now we can perform crud operations through REST.
sqldatasource

sqll

– OOTB and custom visualization templates
– View/Update operations support
– Visualization can participate in components wiring
– Catalog of REST APIs from OSB

– Content manager in Webcenter Portal

Previous document explorer taskflow is not present in 12c. We have new content manager. After this you don’t need separate UI for webcenter content.

– ECM in the Portal – WC Content model of managing content, DAM
– Replacement to 11g Document Library taskflows
– Access to workflows, enterprise libraries, metadata and more
– WC Content tools – Mobile Apps, DIS, WebDAV
– Pin view to a particular configuration
– Portal events and parameters
– Works only with Framework folders
– Browse, View and Find documents similar to WebCenter Content UI
– You can leverage IRM, DAM inside portal directly.
– Add metadata for each document.
– easy merging of video using embed code for videos.
– Better development of content presenter directly in jdeveloper.

document

metadata

shared asset
– Portal life cycle

-Create portal server connection to production systems and Choose a server connection and deploy a portal to it.
Deployment happens on the UI with 4 clicks. Changes to a portal is propagated in a similar fashion. Shared Assets as well as (ADF) shared Libraries are transferred to the target server. Really cool.
– All the assets associated with a portal—including global assets—are deployed or the changes are propagated
– Shared libraries—including the linked shared libraries—are optionally deployed along with a portal
– Changes since the last deployment is clearly displayed prior to propagation
– Portal managers can deploy portals in a self-service manner.
– All portal deployments are audited. That means you can verify all the deployments.
– The details can be viewed after a deployment completes.

deply

– Round trip Asset development for portal.
– Same as before. Can create following assets
Layouts
Page Styles
Page Templates
Skins
Visualization Templates(New)
Content Presenter Templates

Summary –

New technologies and standards support:
ADF 12c stack uptake (JSF2 / Jersey 2 / Oracle REST standard / Alta look & feel)
Produce and Consume REST APIs (ADF REST DC with JSON Descriptors)
Responsive UI OOTB (Twitter Bootstrap, jQuery)
Native HTML5 tag support (camera, geospatial, phone)

–REST API for portal lifecycle & deployment to a remote Server (e.g. T2P)

–Easily configure role based security (simplification of roles)

Overall its quite a new and changed version in comparison with 11g. With addition of bootstap and Rest support, it make the webcenter portal really powerful. You can download portal here.
Webcenter portal release notes

Happy Learning Webcenter Portal 12c with Vinay. Stay tuned for more posts on webcenter portal 12c.

Running webcenter related wlst command from wlst.cmd or wlst.sh

Requirement- If you execute webcenter related admin commands (like export or importWebCenterApplication) in windows environment by using this -JDev\oracle_common\common\bin\wlst.cmd

and you run into name not found error.

That means its not able to find this command, because it doesn’t have the right jars.

Solution –
Modify the setwlstenv.cmd file and add %COMMON_COMPONENTS_HOME%/oracle_common/common/wlst/lib/webcenter-admin-commands.jar

%COMMON_COMPONENTS_HOME%= Jdev Home

After adding this simply run webcenter related commands.

Happy wlst with vinay in techartifact.

Change configuration file with webcenter portal.

For editing web.xml old solution will work for 11.1.1.7 but for 11.1.1.8 you can use this solution.You should use WebCenter Portal Server Extension.

< In this case you must create a new application using the new JDeveloper template: WebCenter Portal Server Extension. a href=”https://www.techartifact.com/blogs/wp-content/uploads/2015/08/1.png”>1

This template will create two projects (that can be named during the creation).

PortalExtension: To add custom code, task flows and beans to WebCenter Spaces.
PortalSharedLibrary: Similar to the former WebCenterSpacesExtensionLibrary; however, deployments are now done using JDeveloper Deployment tools and the versioning is managed by manually modifying MANIFEST.MF
Taking a look into PortalSharedLibrary it contains only a MANIFEST.MF file used for versioning of deployments.

​​2

Where are weblogic.xml and web.xml descriptor?

These files should be generated manually.

To create a weblogic.xml create it as New WebLogic Deployment Descriptor.

3

4


In case of web.xml create it as New Java EE Deployment Descriptor:

5

1


By default, web.xml and weblogic.xml will be part of the deployment. It shouldn’t be configured at the deployment profile.

Now deploy as shared lib in WC_Spaces. It will overwrite extens.spaces.webapp shared lib then restart server. Changes will reflect

Thanks. Happy Coding with Vinay.