Removing the "Cannot find a skin that matches family portal and version v1.1" message

Posted by Maiko Rocha on Oracle Blogs See other posts from Oracle Blogs or by Maiko Rocha
Published on Mon, 26 Mar 2012 12:26:12 -0500 Indexed on 2012/03/26 17:34 UTC
Read the original article Hit count: 622

Do you get annoyed by the following message on your weblogic log output?

<SkinFactoryImpl> <getSkin> Cannot find a skin that matches family portal and version v1.1. We will use the skin portal.desktop.

Yes? Well, me too :-). To get rid of it just open your portal application's trinidad-config.xml file and remove the <skin-version> element from it.

Before:

<?xml version="1.0" encoding="UTF-8"?>

<trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">

  <skin-family>#{preferenceBean.defaultTrinidadSkin}</skin-family>

<skin-version>v1.1</skin-version>

</trinidad-config>

After:

<?xml version="1.0" encoding="UTF-8"?>

<trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">

  <skin-family>#{preferenceBean.defaultTrinidadSkin}</skin-family>

</trinidad-config>


© Oracle Blogs or respective owner

Related posts about /WebCenter/WebCenter Portal