0

We have an Oracle ADF Faces 11.1.1.5 application which integrates Oracle SiteStudio regions through Oracle's OpenWCM tags (e.g. <wcm:placeholder>). As far as these tags are JSP tags (but not JSF components) they must be put inside <f:verbatim> tag in JSF pages:

...
<f:verbatim>
  <wcm:placeholder name="content"/>
</f:verbatim>
...

Unfortunately, we realized that <f:verbatim>'s body is evaluated/executed at each request (even at postback requests and at PPR requests that have nothing to do with this section of the page) and this causes regeneration of the corresponding SiteStudio region unnecessarily, which is a huge overhead.

Could anybody explain when <f:verbatim>'s body is evaluated/executed? How could we workaround this problem?

  • Why "must" they be placed inside ``? Are you using JSF 1.0/1.1 and upgrading to 1.2 or newer isn't an option? – BalusC Oct 08 '11 at 13:49
  • If we do not place the OpenWCM tags inside , the SiteStudio region is not rendered at all. Oracle ADF Faces 11g use JSF 1.2, so the problem is not related to JSF 1.0/1.1. – Dimitar Dimitrov Oct 08 '11 at 14:05

0 Answers0