[richfaces-issues] [JBoss JIRA] (RF-13552) EPVC includes <extension> twice in <partial-response> when JRebel is used

Lukáš Fryč (JIRA) issues at jboss.org
Wed Feb 19 17:21:47 EST 2014


    [ https://issues.jboss.org/browse/RF-13552?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946189#comment-12946189 ] 

Lukáš Fryč commented on RF-13552:
---------------------------------

Might be just issue with 5.5.1-SNAPSHOT, let me try newest nightly (latest stable is 5.5).
                
> EPVC includes <extension> twice in <partial-response> when JRebel is used
> -------------------------------------------------------------------------
>
>                 Key: RF-13552
>                 URL: https://issues.jboss.org/browse/RF-13552
>             Project: RichFaces
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: component
>    Affects Versions: 4.3.5, 5.0.0.Alpha4
>         Environment: WildFly 8.0.0.Final
> JRebel 5.5.1-SNAPSHOT (201401071651)
>            Reporter: Lukáš Fryč
>
> {code}
> <partial-response>
> <changes>
> <extension id="org.richfaces.extension"><complete>alert('oncomplete')</complete><render>messages</render></extension>
> <extension id="org.richfaces.extension"><complete>alert('oncomplete')</complete><render>messages</render></extension>
> </changes>
> </partial-response>
> {code}
> ---
> The reason is that EPVCFactory is called twice:
> * first, it gets PVCFactory as a constructor,
> * but second, it gets EPVCFactory
> So at the end, we have EPVC wrapped in EPVC which wraps PVC:
> {code}
> EPVC(EPVC(PVC))
> {code}
> The workaround is detecting this behavior in the EPVCFactory
> https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/org/richfaces/context/ExtendedPartialViewContextFactoryImpl.java#L42
> and do not wrap EPVC when context provided from parentFactory is EPVC and return that context directly.
> ---
> Additionally we should coordinate with JRebel to resolve this issue there.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira



More information about the richfaces-issues mailing list