Wrong PPR-Response, when using <jsp:text> to render an XML PI
-------------------------------------------------------------
Key: TRINIDAD-1143
URL: https://issues.apache.org/jira/browse/TRINIDAD-1143
Project: MyFaces Trinidad
Issue Type: Bug
Affects Versions: 1.2.8-core
Reporter: Matthias Weßendorf
The PPR response write get's confused, when there is a XML PI in the JSPX page,
like:
<?xml version='1.0' encoding='utf-8'?>
<jsp:root ............>
...
<jsp:text><![CDATA[<?xml version="1.0" encoding="utf-8" ?>]]></jsp:text>
<f:view>
...
<tr:inputText id="text" autoSubmit="true"
value="#{sessionScope['bogus']}" />
<tr:outputText partialTriggers="text" value="#{sessionScope['bogus']}"
/>
....
</jsp:root>
when submitting a ppr postback, the response contains two XML PIs.
One from the JSPX (that guy, rendered by the <jsp:text>)
one from the ppr response writer.
these two XML PIs cause some trouble.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.