The following XSP snippet will cause an ArrayIndexOutOfBoundsException in
Cocoon 2.0.3 because the start of the outer element is never emitted to the
SAX stream.

XSP Snippet:


<xsp:page ....>

 <page>
  <xsp:logic>
    if (!request.isUserInRole("root"))
    {
      <xsp:attribute name="security-error">Not authorized</xsp:attribute>
    }
    else
    {
  </xsp:logic

    <!-- Build the page if authorized -->
    <content />

  <xsp:logic>
    }
  </xsp:logic>
 </page>

</xsp:page>




Generated Java code:

if (!request.isUserInRole("root"))
{
  xspAttr.addAttribute("", "security-error", "security-error", "CDATA", "Not
authorized");
}
else
{
  this.contentHandler.startElement("", "page", "page", xspAttr);
  xspAttr.clear();

}

this.contentHandler.endElement("", "page", "page");



E.g. the start code for <page> isn't emitted. And I can't find a workaround:
neither emitting characters or another element inside the 'if' makes it
emit.

Per


---------------------------------------------------------------------
Please check that your question  has not already been answered in the
FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>

To unsubscribe, e-mail:     <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>

Reply via email to