From issues at jboss.org Sun Feb 2 10:38:28 2014 From: issues at jboss.org (Alexandre Heroux (JIRA)) Date: Sun, 2 Feb 2014 10:38:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12654) PartialViewRender skips check for whether column is rendered before checking if children can be rendered In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940667#comment-12940667 ] Alexandre Heroux commented on RF-12654: --------------------------------------- Rewrite the class ExtendedPartialViewContextImpl to skip unrendered and change two methods private void visitActivatorAtExecute() { ExecuteComponentCallback callback = new ExecuteComponentCallback( getFacesContext(), behaviorEvent); if (visitActivatorComponent( activatorComponentId, callback, new HashSet(Arrays.asList(VisitHint.SKIP_UNRENDERED)))) { setupExecuteCallbackData(callback); if (!executeIds.contains(ALL)) { addImplicitExecuteIds(executeIds); } } else { // TODO - log or exception? // TODO - process default execute value } } and private void visitActivatorAtRender(Collection ids) { if (!isRenderAll()) { RenderComponentCallback callback = new RenderComponentCallback( getFacesContext(), behaviorEvent); if (visitActivatorComponent( activatorComponentId, callback, new HashSet(Arrays .asList(VisitHint.SKIP_UNRENDERED)))) { setupRenderCallbackData(callback); } else { // TODO - the same as for "execute" } // take collection value stored during execute if (componentRenderIds != null) { ids.addAll(componentRenderIds); } if (!Boolean.TRUE.equals(renderAll) && !ids.contains(ALL)) { addImplicitRenderIds(ids, limitRender); appendOnbeforedomupdate(onbeforedomupdate); appendOncomplete(oncomplete); setResponseData(responseData); } } } > PartialViewRender skips check for whether column is rendered before checking if children can be rendered > -------------------------------------------------------------------------------------------------------- > > Key: RF-12654 > URL: https://issues.jboss.org/browse/RF-12654 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.0.M2 > Environment: JBoss 7.1.1.Final > Reporter: Ken H > Labels: lazy-loaded > Fix For: 5-Tracking > > > When using rendered on a component within a rich:column of a rich:dataTable, the EL on the component is executed even if the column is not rendered. > The expected behavior (per my loose understanding of the JSF spec) would suggest that the traversal should have short-circuited before checking the unrendered column's children. > This behavior exists at least as far back as 4.1.0.Final. > Given this minimal example: > {code} > > > > > > execute="@this" render="@form" /> > > > {code} > Clicking the Test button would result in a stack trace similar to the following: > {code} > /index.xhtml @33,96 rendered="#{foo.propertyDoesNotExist != null}": The class 'org.richfaces.tests.Foo' does not have the property 'propertyDoesNotExist'. > at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:111) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.component.ComponentStateHelper.eval(ComponentStateHelper.java:194) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:413) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.isVisitable(UIComponent.java:1669) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1602) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.UIDataAdaptor$DataVisitorForVisitTree.process(UIDataAdaptor.java:199) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.ajax4jsf.model.SequenceDataModel.walk(SequenceDataModel.java:65) [richfaces-core-api-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataAdaptor.walk(UIDataAdaptor.java:796) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataAdaptor.visitDataChildren(UIDataAdaptor.java:1269) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataTableBase.visitDataChildren(UIDataTableBase.java:395) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.java:1347) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.visitActivatorComponent(ExtendedPartialViewContextImpl.java:440) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.context.ExtendedPartialViewContextImpl.visitActivatorAtExecute(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.context.ExtendedPartialViewContextImpl.getExecuteIds(ExtendedPartialViewContextImpl.java:98) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.context.ExtendedPartialViewContextImpl.isExecuteAll(ExtendedPartialViewContextImpl.java:148) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:929) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyRequestValuesPhase.java:78) [jsf-impl-2.1.7-jbossorg-2.jar:] > {code} -- 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 From issues at jboss.org Sun Feb 2 14:32:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Sun, 2 Feb 2014 14:32:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13525) Remove GAE sample from Archetypes In-Reply-To: References: Message-ID: Luk?? Fry? created RF-13525: ------------------------------- Summary: Remove GAE sample from Archetypes Key: RF-13525 URL: https://issues.jboss.org/browse/RF-13525 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: archetype Affects Versions: 5.0.0.Alpha3 Reporter: Luk?? Fry? I suggest to remove GAE archetype since it is unmaintained. -- 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 From issues at jboss.org Mon Feb 3 03:16:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 3 Feb 2014 03:16:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13432) Upgrade framework build to JSF 2.2 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13432?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940687#comment-12940687 ] Luk?? Fry? commented on RF-13432: --------------------------------- We don't maintain any wildfly classifier in our demos (e.g. Showcase). Moreover application servers should be backward compatible and support configurations for previous specification versions. > Upgrade framework build to JSF 2.2 > ---------------------------------- > > Key: RF-13432 > URL: https://issues.jboss.org/browse/RF-13432 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Mon Feb 3 03:58:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 3 Feb 2014 03:58:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13526) Update Drone to 1.2.3 and Graphene to 2.0.1 In-Reply-To: References: Message-ID: Luk?? Fry? created RF-13526: ------------------------------- Summary: Update Drone to 1.2.3 and Graphene to 2.0.1 Key: RF-13526 URL: https://issues.jboss.org/browse/RF-13526 Project: RichFaces Issue Type: Component Upgrade Security Level: Public (Everyone can see) Components: tests - functional Reporter: Luk?? Fry? Assignee: Luk?? Fry? -- 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 From issues at jboss.org Mon Feb 3 03:58:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 3 Feb 2014 03:58:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13526) Update Drone to 1.2.3 and Graphene to 2.0.1 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13526?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13526. ----------------------------- Resolution: Done > Update Drone to 1.2.3 and Graphene to 2.0.1 > ------------------------------------------- > > Key: RF-13526 > URL: https://issues.jboss.org/browse/RF-13526 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: tests - functional > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > -- 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 From issues at jboss.org Mon Feb 3 04:18:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 04:18:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13432) Upgrade framework build to JSF 2.2 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13432?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska closed RF-13432. ---------------------------- Verified. Closing. > Upgrade framework build to JSF 2.2 > ---------------------------------- > > Key: RF-13432 > URL: https://issues.jboss.org/browse/RF-13432 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Mon Feb 3 07:20:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 07:20:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13454) Upgrade integration tests use of WildFly to 8.0.0.CR1 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13454?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska closed RF-13454. ---------------------------- Verified. Closing. > Upgrade integration tests use of WildFly to 8.0.0.CR1 > ----------------------------------------------------- > > Key: RF-13454 > URL: https://issues.jboss.org/browse/RF-13454 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Mon Feb 3 07:58:28 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 3 Feb 2014 07:58:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13527) File upload: ajax-rendered panel not updated after uploading file In-Reply-To: References: Message-ID: Pavol Pitonak created RF-13527: ---------------------------------- Summary: File upload: ajax-rendered panel not updated after uploading file Key: RF-13527 URL: https://issues.jboss.org/browse/RF-13527 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input, regression Affects Versions: 5.0.0.Alpha3 Environment: RichFaces 5.0.0-SNAPSHOT, 5.0.0.Alpha3 Metamer 5.0.0-SNAPSHOT Mojarra 2.1.19-jbossorg-1 EAP 6.2 Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux Chrome 32.0.1700.102 @ Linux x86_64 Reporter: Pavol Pitonak # deploy Metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml # notice time in top-right corner above phases list # upload a small file result: * expected: content of outputPanel with ajaxRendered=true should be updated * actual: there is the same time in the panel * it's a regression, it is updated correctly in 5.0.0.Alpha2 -- 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 From issues at jboss.org Mon Feb 3 08:48:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 3 Feb 2014 08:48:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940771#comment-12940771 ] Luk?? Fry? commented on RF-13251: --------------------------------- could you please provide the sample code you reproduced the issue with? Without it we can't proceed with a fix. > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk?? Fry? > Priority: Minor > Labels: waiting_on_user > > Currently the FocusManager in Richfaces only works on 'simple' UI components like h:inputText or h:selectOneMenu but not on more complex components like rich:autocomplete. > It would be good if FocusManager could support complex components or 'real' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to select the entity and add it to a list. After each ajax submit the focus gets lost and the user has to manually set the focus back to the autocomplete input field. -- 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 From issues at jboss.org Mon Feb 3 08:48:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 3 Feb 2014 08:48:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940771#comment-12940771 ] Luk?? Fry? edited comment on RF-13251 at 2/3/14 8:47 AM: --------------------------------------------------------- Immo, could you please provide the sample code you reproduced the issue with? Without it we can't proceed with a fix. was (Author: lfryc): could you please provide the sample code you reproduced the issue with? Without it we can't proceed with a fix. > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk?? Fry? > Priority: Minor > Labels: waiting_on_user > > Currently the FocusManager in Richfaces only works on 'simple' UI components like h:inputText or h:selectOneMenu but not on more complex components like rich:autocomplete. > It would be good if FocusManager could support complex components or 'real' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to select the entity and add it to a list. After each ajax submit the focus gets lost and the user has to manually set the focus back to the autocomplete input field. -- 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 From issues at jboss.org Mon Feb 3 08:50:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 3 Feb 2014 08:50:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12865) Correct deferred partial response ending by leveraging PVC wrapper chain In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940773#comment-12940773 ] Luk?? Fry? commented on RF-12865: --------------------------------- The proper fix for DIRECT/WRAPPED modes leverages wrapping of both {{PartialViewContext}} and {{(Partial)VisitContext}} and is addressed in RF-13505. Mojarra's fix is needed here, see the upgrade issue. > Correct deferred partial response ending by leveraging PVC wrapper chain > ------------------------------------------------------------------------ > > Key: RF-12865 > URL: https://issues.jboss.org/browse/RF-12865 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: third-party > Affects Versions: 4.3.1 > Environment: weblogic 10.3.4, Myfaces 2.1.10, Richfaces 4.3.1, OmniFaces1.3 > Reporter: blam lam > Assignee: Luk?? Fry? > Labels: jsf, needs-qe > Fix For: 5.0.0.Alpha3 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > After submit from a a4j:commandButton, it fail to re-render / update other component on the page. > This problem only appear in MyFaces. It does not happens in Mojarra. -- 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 From issues at jboss.org Mon Feb 3 08:50:30 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 3 Feb 2014 08:50:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12865) Correct deferred partial response ending by leveraging PVC wrapper chain In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12865?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940773#comment-12940773 ] Luk?? Fry? edited comment on RF-12865 at 2/3/14 8:49 AM: --------------------------------------------------------- The proper fix for DIRECT/WRAPPED modes leverages wrapping of both {{PartialViewContext}} and {{(Partial)VisitContext}} and is addressed in RF-13505. Mojarra's fix is needed here, see the associated issue. was (Author: lfryc): The proper fix for DIRECT/WRAPPED modes leverages wrapping of both {{PartialViewContext}} and {{(Partial)VisitContext}} and is addressed in RF-13505. Mojarra's fix is needed here, see the upgrade issue. > Correct deferred partial response ending by leveraging PVC wrapper chain > ------------------------------------------------------------------------ > > Key: RF-12865 > URL: https://issues.jboss.org/browse/RF-12865 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: third-party > Affects Versions: 4.3.1 > Environment: weblogic 10.3.4, Myfaces 2.1.10, Richfaces 4.3.1, OmniFaces1.3 > Reporter: blam lam > Assignee: Luk?? Fry? > Labels: jsf, needs-qe > Fix For: 5.0.0.Alpha3 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > After submit from a a4j:commandButton, it fail to re-render / update other component on the page. > This problem only appear in MyFaces. It does not happens in Mojarra. -- 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 From issues at jboss.org Mon Feb 3 09:04:29 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 3 Feb 2014 09:04:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13528) Slider and spinner don't work inside tables In-Reply-To: References: Message-ID: Pavol Pitonak created RF-13528: ---------------------------------- Summary: Slider and spinner don't work inside tables Key: RF-13528 URL: https://issues.jboss.org/browse/RF-13528 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input, regression Affects Versions: 5.0.0.Alpha2, 5.0.0.Alpha3 Environment: RichFaces 5.0.0.Alpha2, 5.0.0.Alpha3 Metamer 5.0.0.20131203-Alpha2 JBoss Application Server: Weld Integration 7.3.0.Final-redhat-14 JBoss AS 7.3.0.Final-redhat-14 Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux Chrome 32.0.1700.102 @ Linux x86_64 Reporter: Pavol Pitonak # deploy Metamer and open http://localhost:8080/metamer/faces/components/richInputNumberSlider/simple.xhtml?templates=richList # change value on slider result: * the output below the slider doesn't change * last version known to work in 5.0.0.Alpha1 * it works fine when you use f:ajax instead of r:ajax, see http://localhost:8080/metamer/faces/components/richInputNumberSlider/fAjax.xhtml?templates=richList -- 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 From issues at jboss.org Mon Feb 3 09:16:30 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 09:16:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13278) Add support for a 'header' meta-component to the rich:tabPanel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13278?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska closed RF-13278. ---------------------------- Verified. Closing. > Add support for a 'header' meta-component to the rich:tabPanel > -------------------------------------------------------------- > > Key: RF-13278 > URL: https://issues.jboss.org/browse/RF-13278 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: component-panels-layout-themes > Affects Versions: 4.3.4 > Environment: java 7, > tomcat 7, JBoss AS, > mojarra, myfaces > chrome, firefox > Reporter: Alexey Shakov > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha3 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > I use ajax to update the header label of rich:tab. That is why label is placed in a header-facet. Since RF 4.3.4 this does not work: > {code:xml} > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > xmlns:c="http://java.sun.com/jsp/jstl/core" xmlns:rich="http://richfaces.org/rich" xmlns:a4j="http://richfaces.org/a4j" > xmlns:f="http://java.sun.com/jsf/core" xml:lang="en" lang="en"> > > > > > > > > > > > > > > > > > > > > {code} > testBean is a simple session-scoped HashMap. -- 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 From issues at jboss.org Mon Feb 3 09:30:29 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 09:30:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13317) ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13317?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940794#comment-12940794 ] Juraj H?ska commented on RF-13317: ---------------------------------- Verified for 5.0.0.Alpha3. Could you please add fix version to 4.3.6 if you still want this to backport ? > ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() > ----------------------------------------------------------------------------------------------- > > Key: RF-13317 > URL: https://issues.jboss.org/browse/RF-13317 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: Wildfly-8.0.0.Beta1, jsf-impl-2.2.3-jbossorg-1 > Reporter: Matti Bickel > Assignee: Luk?? Fry? > Priority: Critical > Labels: jsf22 > Fix For: 5.0.0.Alpha3 > > > I'm using several {{}} fields in a {{}}, but have noticed the issue with several other AJAX requests: > When the response comes back, the data is fine but I get a JSF error saying > bq. During update: javax.faces.ViewState not found > Following that, no componentData is available to the Autocomplete component and no suggestions get displayed. > For reference the [javadoc for ResponseStateManager.VIEW_STATE_PARAM|https://javaserverfaces.java.net/nonav/docs/2.2/javadocs/javax/faces/render/ResponseStateManager.html#VIEW_STATE_PARAM] says: > {quote} > Implementations must use this constant field value as the name of the client parameter in which to save the state between requests. The id attribute must be a concatenation of the return from UIComponent.getContainerClientId(javax.faces.context.FacesContext), the return from UINamingContainer.getSeparatorChar(javax.faces.context.FacesContext), this constant field value, the separator char, and a number that is guaranteed to be unique with respect to all the other instances of this kind of client parameter in the view. > {quote} -- 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 From issues at jboss.org Mon Feb 3 10:14:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 10:14:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13379) Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet (during framework resource optimization) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13379?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska closed RF-13379. ---------------------------- Verified. Closing. > Build on Travis fails due to NoClassDefFoundEx.: javax/servlet/Servlet (during framework resource optimization) > --------------------------------------------------------------------------------------------------------------- > > Key: RF-13379 > URL: https://issues.jboss.org/browse/RF-13379 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: resource handling > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > > https://travis-ci.org/richfaces/richfaces/builds/14381706 > {code} > [INFO] <<< exec-maven-plugin:1.2.1:java (static-resources) @ richfaces <<< > [INFO] > [INFO] --- exec-maven-plugin:1.2.1:java (static-resources) @ richfaces --- > SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". > SLF4J: Defaulting to no-operation (NOP) logger implementation > SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. > Nov 24, 2013 8:04:06 AM org.richfaces.resource.optimizer.ResourceGenerator execute > SEVERE: null > java.util.concurrent.ExecutionException: java.lang.NoClassDefFoundError: javax/servlet/Servlet > at java.util.concurrent.FutureTask.report(FutureTask.java:122) > at java.util.concurrent.FutureTask.get(FutureTask.java:188) > at org.richfaces.resource.optimizer.ResourceGenerator.execute(ResourceGenerator.java:437) > at org.richfaces.resource.optimizer.GenerateResourcesMain.main(GenerateResourcesMain.java:39) > at sun.reflect.NativethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativethodAccessorImpl.invoke(NativethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:297) > at java.lang.Thread.run(Thread.java:744) > Caused by: java.lang.NoClassDefFoundError: javax/servlet/Servlet > at java.lang.ClassLoader.defineClass1(Native Method) > at java.lang.ClassLoader.defineClass(ClassLoader.java:800) > at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) > at java.net.URLClassLoader.defineClass(URLClassLoader.java:449) > at java.net.URLClassLoader.access$100(URLClassLoader.java:71) > at java.net.URLClassLoader$1.run(URLClassLoader.java:361) > at java.net.URLClassLoader$1.run(URLClassLoader.java:355) > at java.security.AccessController.doPrivileged(Native Method) > at java.net.URLClassLoader.findClass(URLClassLoader.java:354) > at java.lang.ClassLoader.loadClass(ClassLoader.java:425) > at java.lang.ClassLoader.loadClass(ClassLoader.java:358) > at org.richfaces.resource.ResourceFactoryImpl.creatappedResource(ResourceFactoryImpl.java:356) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:343) > {code} -- 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 From issues at jboss.org Mon Feb 3 10:14:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 10:14:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12865) Correct deferred partial response ending by leveraging PVC wrapper chain In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12865?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska closed RF-12865. ---------------------------- Created [this|https://github.com/richfaces/richfaces/commit/4274494214bb13bd32f7fee02db435918b70063b] fun test. Verified also manually with tomee 1.5. Closing. > Correct deferred partial response ending by leveraging PVC wrapper chain > ------------------------------------------------------------------------ > > Key: RF-12865 > URL: https://issues.jboss.org/browse/RF-12865 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: third-party > Affects Versions: 4.3.1 > Environment: weblogic 10.3.4, Myfaces 2.1.10, Richfaces 4.3.1, OmniFaces1.3 > Reporter: blam lam > Assignee: Luk?? Fry? > Labels: jsf, needs-qe > Fix For: 5.0.0.Alpha3 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > After submit from a a4j:commandButton, it fail to re-render / update other component on the page. > This problem only appear in MyFaces. It does not happens in Mojarra. -- 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 From issues at jboss.org Mon Feb 3 10:36:31 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 10:36:31 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13529) Taking Screenshot after failed test is broken when using remoteReusable browser session In-Reply-To: References: Message-ID: Juraj H?ska created RF-13529: -------------------------------- Summary: Taking Screenshot after failed test is broken when using remoteReusable browser session Key: RF-13529 URL: https://issues.jboss.org/browse/RF-13529 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: tests - functional Affects Versions: 5.0.0.Alpha3 Reporter: Juraj H?ska When running a fun test with {{-Dreusable=true}} (remoteReusable browser session), and test fails, screenshot is not taken and following exception is logged: {code} js_function_with_param(org.richfaces.ui.ajax.ITTestJsFunction) Time elapsed: 11.171 sec <<< ERROR! java.lang.RuntimeException: unexpected invocation exception during invocation of org.openqa.selenium.TakesScreenshot#getScreenshotAs(), on target 'ReusableRemoteWebDriver: firefox on LINUX (dd4c3a27-487e-4d07-a097-dfe29c9ad83f)': org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:135) at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$23f31e28.getScreenshotAs() at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) {code} The fact that screenshot is not taken is not that serious with reusable session. More frustrating is the logged error, which pollutes the log. The problem is that RemoteWebDriver needs to be augmented to take screenshot from it. Note that this taking screenshot functionality can be replaced by [screenshot extension|https://github.com/smiklosovic/arquillian-unified-recorder]. (once it is released and stable). -- 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 From issues at jboss.org Mon Feb 3 10:36:31 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 10:36:31 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13529) Taking Screenshot after failed test is broken when using remoteReusable browser session In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13529?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13529: ----------------------------- Priority: Minor (was: Major) > Taking Screenshot after failed test is broken when using remoteReusable browser session > --------------------------------------------------------------------------------------- > > Key: RF-13529 > URL: https://issues.jboss.org/browse/RF-13529 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Juraj H?ska > Priority: Minor > > When running a fun test with {{-Dreusable=true}} (remoteReusable browser session), and test fails, screenshot is not taken and following exception is logged: > {code} > js_function_with_param(org.richfaces.ui.ajax.ITTestJsFunction) Time elapsed: 11.171 sec <<< ERROR! > java.lang.RuntimeException: unexpected invocation exception during invocation of org.openqa.selenium.TakesScreenshot#getScreenshotAs(), on target 'ReusableRemoteWebDriver: firefox on LINUX (dd4c3a27-487e-4d07-a097-dfe29c9ad83f)': org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:135) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$23f31e28.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > {code} > The fact that screenshot is not taken is not that serious with reusable session. More frustrating is the logged error, which pollutes the log. > The problem is that RemoteWebDriver needs to be augmented to take screenshot from it. > Note that this taking screenshot functionality can be replaced by [screenshot extension|https://github.com/smiklosovic/arquillian-unified-recorder]. (once it is released and stable). -- 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 From issues at jboss.org Mon Feb 3 10:38:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 3 Feb 2014 10:38:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13168) 3rd party JSF component disappears on RichFaces ajax refresh In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13168?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940834#comment-12940834 ] Luk?? Fry? commented on RF-13168: --------------------------------- Frank, could you please put breakpoint into {{#javax.faces.context.ResponseWriterWrapper#startCDATA}} and see who calls startCDATA just before this issue is reported? I think this might be rather OpenFaces issue, but there is nothing how we could pursue this issue without debugging. > 3rd party JSF component disappears on RichFaces ajax refresh > ------------------------------------------------------------ > > Key: RF-13168 > URL: https://issues.jboss.org/browse/RF-13168 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: compatibility, component-a4j-core > Reporter: Frank Langelage > Assignee: Luk?? Fry? > Labels: interop, jsf22 > Fix For: 5.0.0.Alpha3 > > Attachments: install-mojarra-2.1.19.cli, Jira-WFLY-UT.tar, xaa, xab, xac > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > On some of my pages I'm using richfaces a4j:poll to refresh components regularly. The components refreshed is an openfaces datatable. > This does not work with WildFly build from current sources. > Same code works with JBoss AS 7.20. So problem is not related to richfaces or openfaces for me. Probably related to replacement of jboss-web with undertow. > I'll attach a small project showing the problem. > The mojarra datatable works fine, is refreshed every 10 seconds. > The openfaces datatable below disappears on first refresh. -- 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 From issues at jboss.org Mon Feb 3 11:06:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 11:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13513) CollectionDataModel API is not available on pre-JSF 2.1 that poses backward compatibility problem In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13513?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska closed RF-13513. ---------------------------- Verified. Closing. > CollectionDataModel API is not available on pre-JSF 2.1 that poses backward compatibility problem > ------------------------------------------------------------------------------------------------- > > Key: RF-13513 > URL: https://issues.jboss.org/browse/RF-13513 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component > Affects Versions: 5.0.0.Alpha3 > Environment: 5.0.0-SNAPSHOT > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > > As we have introduced support for collections, leveraging JSF 2.2 CollectionDataModel, this might prevent some pre-JSF 2.2 containers to work correctly with component using UISeuqence or AutocompleteRendererBase. > This is an exception from TomEE 1.5.1 with MyFaces 2.1.10: > {code} > SEVERE: Class : org.richfaces.ui.input.autocomplete.AutocompleteRenderer not found. > java.lang.NoClassDefFoundError: javax/faces/model/CollectionDataModel > at java.lang.Class.getDeclaredConstructors0(Native Method) > at java.lang.Class.privateGetDeclaredConstructors(Class.java:2493) > at java.lang.Class.getConstructor0(Class.java:2803) > at java.lang.Class.newInstance(Class.java:345) > at org.apache.myfaces.shared.util.ClassUtils.newInstance(ClassUtils.java:379) > at org.apache.myfaces.shared.util.ClassUtils.newInstance(ClassUtils.java:342) > at org.apache.myfaces.config.FacesConfigurator.configureRenderKits(FacesConfigurator.java:910) > at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:420) > at org.apache.myfaces.webapp.AbstractFacesInitializer.buildConfiguration(AbstractFacesInitializer.java:370) > at org.apache.myfaces.webapp.Jsp21FacesInitializer.initContainerIntegration(Jsp21FacesInitializer.java:73) > at org.apache.myfaces.webapp.AbstractFacesInitializer.initFaces(AbstractFacesInitializer.java:143) > at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:119) > at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4791) > at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5285) > at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150) > at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901) > at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:877) > at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:633) > at org.apache.tomee.catalina.TomcatWebAppBuilder.deployWar(TomcatWebAppBuilder.java:538) > at org.apache.tomee.catalina.TomcatWebAppBuilder.deployWebApps(TomcatWebAppBuilder.java:509) > at org.apache.tomee.catalina.deployment.TomcatWebappDeployer.deploy(TomcatWebappDeployer.java:44) > at org.apache.openejb.assembler.DeployerEjb.deploy(DeployerEjb.java:131) > at org.apache.openejb.assembler.DeployerEjb.deploy(DeployerEjb.java:104) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:181) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:163) > at org.apache.openejb.security.internal.InternalSecurityInterceptor.invoke(InternalSecurityInterceptor.java:34) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:181) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:163) > at org.apache.openejb.cdi.CdiInterceptor.invoke(CdiInterceptor.java:128) > at org.apache.openejb.cdi.CdiInterceptor.access$000(CdiInterceptor.java:43) > at org.apache.openejb.cdi.CdiInterceptor$1.call(CdiInterceptor.java:64) > at org.apache.openejb.cdi.CdiInterceptor.aroundInvoke(CdiInterceptor.java:70) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:181) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:163) > at org.apache.openejb.monitoring.StatsInterceptor.record(StatsInterceptor.java:176) > at org.apache.openejb.monitoring.StatsInterceptor.invoke(StatsInterceptor.java:95) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:181) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:163) > at org.apache.openejb.core.interceptor.InterceptorStack.invoke(InterceptorStack.java:138) > at org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:237) > at org.apache.openejb.core.stateless.StatelessContainer.invoke(StatelessContainer.java:189) > at org.apache.openejb.server.ejbd.EjbRequestHandler.doEjbObject_BUSINESS_METHOD(EjbRequestHandler.java:290) > at org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:140) > at org.apache.openejb.server.ejbd.EjbDaemon.processEjbRequest(EjbDaemon.java:267) > at org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:191) > at org.apache.openejb.server.ejbd.EjbServer.service(EjbServer.java:81) > at org.apache.openejb.server.httpd.ServerServlet.service(ServerServlet.java:56) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:728) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.tomee.catalina.OpenEJBValve.invoke(OpenEJBValve.java:45) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:936) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1004) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) > at java.lang.Thread.run(Thread.java:744) > Caused by: java.lang.ClassNotFoundException: javax.faces.model.CollectionDataModel > at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1714) > at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1559) > at org.apache.tomee.catalina.LazyStopWebappClassLoader.loadClass(LazyStopWebappClassLoader.java:98) > ... 80 more > Jan 24, 2014 4:27:36 PM org.apache.myfaces.config.FacesConfigurator configureRenderKits > SEVERE: failed to configure class org.richfaces.ui.input.autocomplete.AutocompleteRenderer > javax.faces.FacesException: java.lang.NoClassDefFoundError: javax/faces/model/CollectionDataModel > at org.apache.myfaces.shared.util.ClassUtils.newInstance(ClassUtils.java:384) > at org.apache.myfaces.shared.util.ClassUtils.newInstance(ClassUtils.java:342) > at org.apache.myfaces.config.FacesConfigurator.configureRenderKits(FacesConfigurator.java:910) > at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:420) > at org.apache.myfaces.webapp.AbstractFacesInitializer.buildConfiguration(AbstractFacesInitializer.java:370) > at org.apache.myfaces.webapp.Jsp21FacesInitializer.initContainerIntegration(Jsp21FacesInitializer.java:73) > at org.apache.myfaces.webapp.AbstractFacesInitializer.initFaces(AbstractFacesInitializer.java:143) > at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:119) > at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4791) > at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5285) > at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150) > at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901) > at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:877) > at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:633) > at org.apache.tomee.catalina.TomcatWebAppBuilder.deployWar(TomcatWebAppBuilder.java:538) > at org.apache.tomee.catalina.TomcatWebAppBuilder.deployWebApps(TomcatWebAppBuilder.java:509) > at org.apache.tomee.catalina.deployment.TomcatWebappDeployer.deploy(TomcatWebappDeployer.java:44) > at org.apache.openejb.assembler.DeployerEjb.deploy(DeployerEjb.java:131) > at org.apache.openejb.assembler.DeployerEjb.deploy(DeployerEjb.java:104) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:181) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:163) > at org.apache.openejb.security.internal.InternalSecurityInterceptor.invoke(InternalSecurityInterceptor.java:34) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:181) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:163) > at org.apache.openejb.cdi.CdiInterceptor.invoke(CdiInterceptor.java:128) > at org.apache.openejb.cdi.CdiInterceptor.access$000(CdiInterceptor.java:43) > at org.apache.openejb.cdi.CdiInterceptor$1.call(CdiInterceptor.java:64) > at org.apache.openejb.cdi.CdiInterceptor.aroundInvoke(CdiInterceptor.java:70) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:181) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:163) > at org.apache.openejb.monitoring.StatsInterceptor.record(StatsInterceptor.java:176) > at org.apache.openejb.monitoring.StatsInterceptor.invoke(StatsInterceptor.java:95) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:181) > at org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:163) > at org.apache.openejb.core.interceptor.InterceptorStack.invoke(InterceptorStack.java:138) > at org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:237) > at org.apache.openejb.core.stateless.StatelessContainer.invoke(StatelessContainer.java:189) > at org.apache.openejb.server.ejbd.EjbRequestHandler.doEjbObject_BUSINESS_METHOD(EjbRequestHandler.java:290) > at org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:140) > at org.apache.openejb.server.ejbd.EjbDaemon.processEjbRequest(EjbDaemon.java:267) > at org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:191) > at org.apache.openejb.server.ejbd.EjbServer.service(EjbServer.java:81) > at org.apache.openejb.server.httpd.ServerServlet.service(ServerServlet.java:56) > at javax.servlet.http.HttpServlet.service(HttpServlet.java:728) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.tomee.catalina.OpenEJBValve.invoke(OpenEJBValve.java:45) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:936) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1004) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) > at java.lang.Thread.run(Thread.java:744) > Caused by: java.lang.NoClassDefFoundError: javax/faces/model/CollectionDataModel > at java.lang.Class.getDeclaredConstructors0(Native Method) > at java.lang.Class.privateGetDeclaredConstructors(Class.java:2493) > at java.lang.Class.getConstructor0(Class.java:2803) > at java.lang.Class.newInstance(Class.java:345) > at org.apache.myfaces.shared.util.ClassUtils.newInstance(ClassUtils.java:379) > ... 75 more > Caused by: java.lang.ClassNotFoundException: javax.faces.model.CollectionDataModel > at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1714) > at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1559) > at org.apache.tomee.catalina.LazyStopWebappClassLoader.loadClass(LazyStopWebappClassLoader.java:98) > ... 80 more > {code} -- 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 From issues at jboss.org Mon Feb 3 11:20:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 11:20:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13417) Some warp-based framework tests fail on WildFly with exception 'Could not inject members' In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13417?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska closed RF-13417. ---------------------------- Verified. Closing. > Some warp-based framework tests fail on WildFly with exception 'Could not inject members' > ----------------------------------------------------------------------------------------- > > Key: RF-13417 > URL: https://issues.jboss.org/browse/RF-13417 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha2 > Environment: WildFly 8.0.0.Beta2-SNAPSHOT > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Labels: warp > Fix For: 5.0.0.Alpha3 > > > Exception and cause: > {code} > java.lang.RuntimeException: Could not inject members > at org.jboss.arquillian.testenricher.cdi.CDIInjectionEnricher.injectClass(CDIInjectionEnricher.java:135) > at org.jboss.arquillian.testenricher.cdi.CDIInjectionEnricher.enrich(CDIInjectionEnricher.java:78) > at org.jboss.arquillian.test.impl.TestInstanceEnricher.enrich(TestInstanceEnricher.java:52) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.warp.impl.server.test.LifecycleTestEnrichmentWatcher.rememberFieldValue > {code} > {code} > Caused by: java.lang.IllegalArgumentException: Can not set org.richfaces.ui.region.RegionBean field org.richfaces.ui.region.AbstractRegionTest$SetupExecute.region to org.richfaces.ui.region.AbstractRegionTest$SetupExecute > at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:164) > at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:168) > at sun.reflect.UnsafeFieldAccessorImpl.ensureObj(UnsafeFieldAccessorImpl.java:55) > at sun.reflect.UnsafeObjectFieldAccessorImpl.set(UnsafeObjectFieldAccessorImpl.java:75) > at java.lang.reflect.Field.set(Field.java:741) > at org.jboss.weld.injection.FieldInjectionPoint.inject(FieldInjectionPoint.java:94) > at org.jboss.weld.util.Beans.injectBoundFields(Beans.java:358) > at org.jboss.weld.util.Beans.injectFieldsAndInitializers(Beans.java:369) > at org.jboss.weld.injection.producer.DefaultInjector.inject(DefaultInjector.java:72) > at org.jboss.weld.injection.producer.ResourceInjector.inject(ResourceInjector.java:60) > at org.jboss.weld.injection.producer.DefaultInjector$1.proceed(DefaultInjector.java:66) > at org.jboss.weld.injection.InjectionContextImpl.run(InjectionContextImpl.java:48) > at org.jboss.weld.injection.producer.DefaultInjector.inject(DefaultInjector.java:64) > at org.jboss.weld.injection.producer.BasicInjectionTarget.inject(BasicInjectionTarget.java:90) > at org.jboss.arquillian.testenricher.cdi.CDIInjectionEnricher.injectNonContextualInstance(CDIInjectionEnricher.java:145) > {code} > Failed tests: > {code} > org.richfaces.ui.region.ITExecuteJSFAjax.testDefaults > org.richfaces.ui.region.ITExecuteJSFAjax.testExecuteAll > org.richfaces.ui.region.ITExecuteJSFAjax.testExecuteThis > org.richfaces.ui.region.ITExecuteRichAjax.testDefaults > org.richfaces.ui.region.ITExecuteRichAjax.testExecuteAll > org.richfaces.ui.region.ITExecuteRichAjax.testExecuteThis > org.richfaces.ui.region.ITRegionJSFAjax.testDefaults > org.richfaces.ui.region.ITRegionJSFAjax.testExecuteAll > org.richfaces.ui.region.ITRegionJSFAjax.testExecuteThis > org.richfaces.ui.region.ITRegionRichAjax.testDefaults > org.richfaces.ui.region.ITRegionRichAjax.testExecuteAll > org.richfaces.ui.region.ITRegionRichAjax.testExecuteForm > org.richfaces.ui.region.ITRegionRichAjax.testExecuteThis > org.richfaces.ui.menu.ITDropDownMenuItem.testServer > {code} > Full stack trace: > {code} > java.lang.RuntimeException: Could not inject members > at org.jboss.arquillian.testenricher.cdi.CDIInjectionEnricher.injectClass(CDIInjectionEnricher.java:135) > at org.jboss.arquillian.testenricher.cdi.CDIInjectionEnricher.enrich(CDIInjectionEnricher.java:78) > at org.jboss.arquillian.test.impl.TestInstanceEnricher.enrich(TestInstanceEnricher.java:52) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.warp.impl.server.test.LifecycleTestEnrichmentWatcher.rememberFieldValues(LifecycleTestEnrichmentWatcher.java:52) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.warp.impl.server.test.LifecycleTestClassExecutor.beforeTest(LifecycleTestClassExecutor.java:63) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.GeneratedMethodAccessor199.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.GeneratedMethodAccessor196.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.server.test.LifecycleTestDriver.executeTest(LifecycleTestDriver.java:89) > at org.jboss.arquillian.warp.impl.server.test.LifecycleTestDriver.fireTest(LifecycleTestDriver.java:73) > at sun.reflect.GeneratedMethodAccessor195.invoke(Unknown Source) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.server.lifecycle.LifecycleManagerImpl.fireEvent(LifecycleManagerImpl.java:41) > at org.jboss.arquillian.warp.impl.server.execution.WarpLifecycle.execute(WarpLifecycle.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.server.execution.WarpRequestProcessor.processWarpRequest(WarpRequestProcessor.java:63) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.server.execution.HttpRequestProcessor.processHttpRequest(HttpRequestProcessor.java:70) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:606) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterWarp(WarpFilter.java:144) > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterHttp(WarpFilter.java:117) > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilter(WarpFilter.java:90) > at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) > at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) > at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) > at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) > at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:81) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) > at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) > at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) > at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) > at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:65) > at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) > at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:238) > at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:225) > at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:71) > at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:144) > at io.undertow.server.Connectors.executeRootHandler(Connectors.java:164) > at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:649) > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) > at java.lang.Thread.run(Thread.java:744) > Caused by: java.lang.IllegalArgumentException: Can not set org.richfaces.ui.region.RegionBean field org.richfaces.ui.region.AbstractRegionTest$SetupExecute.region to org.richfaces.ui.region.AbstractRegionTest$SetupExecute > at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:164) > at sun.reflect.UnsafeFieldAccessorImpl.throwSetIllegalArgumentException(UnsafeFieldAccessorImpl.java:168) > at sun.reflect.UnsafeFieldAccessorImpl.ensureObj(UnsafeFieldAccessorImpl.java:55) > at sun.reflect.UnsafeObjectFieldAccessorImpl.set(UnsafeObjectFieldAccessorImpl.java:75) > at java.lang.reflect.Field.set(Field.java:741) > at org.jboss.weld.injection.FieldInjectionPoint.inject(FieldInjectionPoint.java:94) > at org.jboss.weld.util.Beans.injectBoundFields(Beans.java:358) > at org.jboss.weld.util.Beans.injectFieldsAndInitializers(Beans.java:369) > at org.jboss.weld.injection.producer.DefaultInjector.inject(DefaultInjector.java:72) > at org.jboss.weld.injection.producer.ResourceInjector.inject(ResourceInjector.java:60) > at org.jboss.weld.injection.producer.DefaultInjector$1.proceed(DefaultInjector.java:66) > at org.jboss.weld.injection.InjectionContextImpl.run(InjectionContextImpl.java:48) > at org.jboss.weld.injection.producer.DefaultInjector.inject(DefaultInjector.java:64) > at org.jboss.weld.injection.producer.BasicInjectionTarget.inject(BasicInjectionTarget.java:90) > at org.jboss.arquillian.testenricher.cdi.CDIInjectionEnricher.injectNonContextualInstance(CDIInjectionEnricher.java:145) > at org.jboss.arquillian.testenricher.cdi.CDIInjectionEnricher.injectClass(CDIInjectionEnricher.java:125) > ... 115 more > {code} -- 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 From issues at jboss.org Mon Feb 3 11:22:28 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 3 Feb 2014 11:22:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13528) Slider and spinner don't work inside tables In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13528?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak resolved RF-13528. -------------------------------- Resolution: Duplicate Issue Duplicate of RF-13421 > Slider and spinner don't work inside tables > ------------------------------------------- > > Key: RF-13528 > URL: https://issues.jboss.org/browse/RF-13528 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2, 5.0.0.Alpha3 > Environment: RichFaces 5.0.0.Alpha2, 5.0.0.Alpha3 > Metamer 5.0.0.20131203-Alpha2 > JBoss Application Server: Weld Integration 7.3.0.Final-redhat-14 > JBoss AS 7.3.0.Final-redhat-14 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 32.0.1700.102 @ Linux x86_64 > Reporter: Pavol Pitonak > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/richInputNumberSlider/simple.xhtml?templates=richList > # change value on slider > result: > * the output below the slider doesn't change > * last version known to work in 5.0.0.Alpha1 > * it works fine when you use f:ajax instead of r:ajax, see http://localhost:8080/metamer/faces/components/richInputNumberSlider/fAjax.xhtml?templates=richList -- 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 From issues at jboss.org Mon Feb 3 11:24:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 11:24:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13517) Mark all frameowkr tests that requires JSF 2.2 with a new @Category(RequiresJSF22) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13517?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska closed RF-13517. ---------------------------- Verified. Closing. > Mark all frameowkr tests that requires JSF 2.2 with a new @Category(RequiresJSF22) > ---------------------------------------------------------------------------------- > > Key: RF-13517 > URL: https://issues.jboss.org/browse/RF-13517 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Mon Feb 3 11:28:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 3 Feb 2014 11:28:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13519) Stackoverflow in CharRendererBase In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13519?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska closed RF-13519. ---------------------------- Verified. Closing. > Stackoverflow in CharRendererBase > --------------------------------- > > Key: RF-13519 > URL: https://issues.jboss.org/browse/RF-13519 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-output > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Mon Feb 3 11:50:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 11:50:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13317) ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13317?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13317: ------------------------------- Labels: backport jsf22 (was: jsf22) > ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() > ----------------------------------------------------------------------------------------------- > > Key: RF-13317 > URL: https://issues.jboss.org/browse/RF-13317 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: Wildfly-8.0.0.Beta1, jsf-impl-2.2.3-jbossorg-1 > Reporter: Matti Bickel > Assignee: Luk?? Fry? > Priority: Critical > Labels: backport, jsf22 > Fix For: 5.0.0.Alpha3 > > > I'm using several {{}} fields in a {{}}, but have noticed the issue with several other AJAX requests: > When the response comes back, the data is fine but I get a JSF error saying > bq. During update: javax.faces.ViewState not found > Following that, no componentData is available to the Autocomplete component and no suggestions get displayed. > For reference the [javadoc for ResponseStateManager.VIEW_STATE_PARAM|https://javaserverfaces.java.net/nonav/docs/2.2/javadocs/javax/faces/render/ResponseStateManager.html#VIEW_STATE_PARAM] says: > {quote} > Implementations must use this constant field value as the name of the client parameter in which to save the state between requests. The id attribute must be a concatenation of the return from UIComponent.getContainerClientId(javax.faces.context.FacesContext), the return from UINamingContainer.getSeparatorChar(javax.faces.context.FacesContext), this constant field value, the separator char, and a number that is guaranteed to be unique with respect to all the other instances of this kind of client parameter in the view. > {quote} -- 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 From issues at jboss.org Mon Feb 3 11:54:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 11:54:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13453) There is no way to extend class org.richfaces.renderkit.ExtendedDataTableRenderer properly In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13453: ------------------------------- Assignee: Roman Chigvintsev (was: Luk?? Fry?) > There is no way to extend class org.richfaces.renderkit.ExtendedDataTableRenderer properly > ------------------------------------------------------------------------------------------ > > Key: RF-13453 > URL: https://issues.jboss.org/browse/RF-13453 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Reporter: Roman Chigvintsev > Assignee: Roman Chigvintsev > Fix For: 4.3.6 > > > It's impossible to override some methods of class {{org.richfaces.renderkit.ExtendedDataTableRenderer}} (e.g. {{void encodeBody(RendererState state)}}) because internal classes and enums have private access level. -- 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 From issues at jboss.org Mon Feb 3 11:58:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 11:58:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13524) the tooltip freezes when changing page. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13524?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13524: ------------------------------- Description: I have a tooltip implemented on a main page, but when you click the link tooltip box gets stuck on next page {code} {code} problem.png I tried to change the tooltip parameter but didnt find the solution. was: I have a tooltip implemented on a main page, but when you click the link tooltip box gets stuck on next page problem.png I tried to change the tooltip parameter but didnt find the solution. > the tooltip freezes when changing page. > --------------------------------------- > > Key: RF-13524 > URL: https://issues.jboss.org/browse/RF-13524 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: accessibility, component, component-a4j-core, component-tables > Affects Versions: 4.0.0.CR1, 4.2.2.Final > Environment: Windows Vista, Web Sphere 8.5, Java jdk 1.5, maven > Reporter: Carlos Mauro C?rdenas Fern?ndez > Priority: Critical > Labels: jboss, richfaces, tooltip > > I have a tooltip implemented on a main page, but when you click the link tooltip box gets stuck on next page > > {code} > > > onhide="false" hideEvent="mouseleave"> > > > {code} > problem.png > > I tried to change the tooltip parameter but didnt find the solution. -- 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 From issues at jboss.org Mon Feb 3 11:58:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 11:58:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13524) the tooltip freezes when changing page. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13524?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13524: ------------------------------- Priority: Major (was: Critical) > the tooltip freezes when changing page. > --------------------------------------- > > Key: RF-13524 > URL: https://issues.jboss.org/browse/RF-13524 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: accessibility, component, component-a4j-core, component-tables > Affects Versions: 4.0.0.CR1, 4.2.2.Final > Environment: Windows Vista, Web Sphere 8.5, Java jdk 1.5, maven > Reporter: Carlos Mauro C?rdenas Fern?ndez > Labels: jboss, richfaces, tooltip > > I have a tooltip implemented on a main page, but when you click the link tooltip box gets stuck on next page > > {code} > > > onhide="false" hideEvent="mouseleave"> > > > {code} > problem.png > > I tried to change the tooltip parameter but didnt find the solution. -- 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 From issues at jboss.org Mon Feb 3 11:58:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 11:58:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13524) the tooltip freezes when changing page. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13524?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13524: ------------------------------- Component/s: component-output (was: component) (was: component-tables) (was: component-a4j-core) (was: accessibility) > the tooltip freezes when changing page. > --------------------------------------- > > Key: RF-13524 > URL: https://issues.jboss.org/browse/RF-13524 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-output > Affects Versions: 4.0.0.CR1, 4.2.2.Final > Environment: Windows Vista, Web Sphere 8.5, Java jdk 1.5, maven > Reporter: Carlos Mauro C?rdenas Fern?ndez > Labels: jboss, richfaces, tooltip > > I have a tooltip implemented on a main page, but when you click the link tooltip box gets stuck on next page > > {code} > > > onhide="false" hideEvent="mouseleave"> > > > {code} > problem.png > > I tried to change the tooltip parameter but didnt find the solution. -- 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 From issues at jboss.org Mon Feb 3 12:00:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 12:00:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13525) Remove GAE sample from Archetypes In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13525?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13525: ------------------------------- Fix Version/s: 5.0.0.Alpha4 > Remove GAE sample from Archetypes > --------------------------------- > > Key: RF-13525 > URL: https://issues.jboss.org/browse/RF-13525 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: archetype > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > I suggest to remove GAE archetype since it is unmaintained. -- 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 From issues at jboss.org Mon Feb 3 12:02:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 12:02:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13527) File upload: ajax-rendered panel not updated after uploading file In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13527?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13527: ------------------------------- Fix Version/s: 5.0.0.Alpha4 > File upload: ajax-rendered panel not updated after uploading file > ----------------------------------------------------------------- > > Key: RF-13527 > URL: https://issues.jboss.org/browse/RF-13527 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, regression > Affects Versions: 5.0.0.Alpha3 > Environment: RichFaces 5.0.0-SNAPSHOT, 5.0.0.Alpha3 > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19-jbossorg-1 > EAP 6.2 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 32.0.1700.102 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha4 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml > # notice time in top-right corner above phases list > # upload a small file > result: > * expected: content of outputPanel with ajaxRendered=true should be updated > * actual: there is the same time in the panel > * it's a regression, it is updated correctly in 5.0.0.Alpha2 -- 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 From issues at jboss.org Mon Feb 3 12:08:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 12:08:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13457) Failing Warp test throws exception while trying to take a screenshot In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13457?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13457: ---------------------------------- Assignee: Juraj H?ska (was: Luk?? Fry?) > Failing Warp test throws exception while trying to take a screenshot > -------------------------------------------------------------------- > > Key: RF-13457 > URL: https://issues.jboss.org/browse/RF-13457 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Reporter: Brian Leathem > Assignee: Juraj H?ska > Fix For: 5.0.0.Alpha4 > > > Here are the test results: > {code} > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 7.69 sec <<< FAILURE! - in org.richfaces.ui.toggle.panelMenu.ITPanelMenu > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.532 sec <<< ERROR! > org.jboss.arquillian.warp.impl.client.execution.WarpSynchronizationException: The Warp failed to observe requests or match them with response. > There were no requests matched by observer [null] > If Warp enriched a wrong request, use observe(...) method to select appropriate request which should be enriched instead. > Otherwise check the server-side log and enable Arquillian debugging mode on both, test and server VM by passing -Darquillian.debug=true. > at org.jboss.arquillian.warp.impl.client.execution.SynchronizationPoint.awaitResponses(SynchronizationPoint.java:155) > at org.jboss.arquillian.warp.impl.client.execution.DefaultExecutionSynchronizer.waitForResponse(DefaultExecutionSynchronizer.java:60) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.awaitResponse(WarpExecutionObserver.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.awaitServerExecution(DefaultWarpExecutor.java:95) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.execute(DefaultWarpExecutor.java:65) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.executeWarp(WarpExecutionObserver.java:45) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionInitializer.provideWarpContext(WarpExecutionInitializer.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.execute(DefaultWarpRequestSpecifier.java:98) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.inspect(DefaultWarpRequestSpecifier.java:76) > at org.richfaces.ui.toggle.panelMenu.ITPanelMenu.test_disabled_menu_item(ITPanelMenu.java:91) > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.534 sec <<< ERROR! > java.lang.RuntimeException: unexpected invocation exception during invocation of org.openqa.selenium.TakesScreenshot#getScreenshotAs(), on target 'ReusableRemoteWebDriver: chrome on LINUX (799229cc-608d-49d7-91d3-74d9f487fce3)': org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:135) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > Caused by: java.lang.NoSuchMethodException: org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at java.lang.Class.getDeclaredMethod(Class.java:1956) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:124) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > 13847 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Shutting down proxy > 13853 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Closing all channels... > 13878 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Stopping timer > 13887 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Done shutting down proxy > Results : > Tests in error: > ITPanelMenu.test_disabled_menu_item:91 ? WarpSynchronization The Warp failed t... > ITPanelMenu.test_disabled_menu_item ? Runtime unexpected invocation exception ... > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0 > {code} -- 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 From issues at jboss.org Mon Feb 3 12:10:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 12:10:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13457) Failing Warp test throws exception while trying to take a screenshot In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13457?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940896#comment-12940896 ] Brian Leathem commented on RF-13457: ------------------------------------ [~jhuska]'s comment on RF-13529: {quote} The fact that screenshot is not taken is not that serious with reusable session. More frustrating is the logged error, which pollutes the log. The problem is that RemoteWebDriver needs to be augmented to take screenshot from it. Note that this taking screenshot functionality can be replaced by screenshot extension. (once it is released and stable). {quote} > Failing Warp test throws exception while trying to take a screenshot > -------------------------------------------------------------------- > > Key: RF-13457 > URL: https://issues.jboss.org/browse/RF-13457 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Reporter: Brian Leathem > Assignee: Juraj H?ska > Fix For: 5.0.0.Alpha4 > > > Here are the test results: > {code} > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 7.69 sec <<< FAILURE! - in org.richfaces.ui.toggle.panelMenu.ITPanelMenu > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.532 sec <<< ERROR! > org.jboss.arquillian.warp.impl.client.execution.WarpSynchronizationException: The Warp failed to observe requests or match them with response. > There were no requests matched by observer [null] > If Warp enriched a wrong request, use observe(...) method to select appropriate request which should be enriched instead. > Otherwise check the server-side log and enable Arquillian debugging mode on both, test and server VM by passing -Darquillian.debug=true. > at org.jboss.arquillian.warp.impl.client.execution.SynchronizationPoint.awaitResponses(SynchronizationPoint.java:155) > at org.jboss.arquillian.warp.impl.client.execution.DefaultExecutionSynchronizer.waitForResponse(DefaultExecutionSynchronizer.java:60) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.awaitResponse(WarpExecutionObserver.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.awaitServerExecution(DefaultWarpExecutor.java:95) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.execute(DefaultWarpExecutor.java:65) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.executeWarp(WarpExecutionObserver.java:45) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionInitializer.provideWarpContext(WarpExecutionInitializer.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.execute(DefaultWarpRequestSpecifier.java:98) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.inspect(DefaultWarpRequestSpecifier.java:76) > at org.richfaces.ui.toggle.panelMenu.ITPanelMenu.test_disabled_menu_item(ITPanelMenu.java:91) > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.534 sec <<< ERROR! > java.lang.RuntimeException: unexpected invocation exception during invocation of org.openqa.selenium.TakesScreenshot#getScreenshotAs(), on target 'ReusableRemoteWebDriver: chrome on LINUX (799229cc-608d-49d7-91d3-74d9f487fce3)': org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:135) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > Caused by: java.lang.NoSuchMethodException: org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at java.lang.Class.getDeclaredMethod(Class.java:1956) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:124) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > 13847 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Shutting down proxy > 13853 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Closing all channels... > 13878 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Stopping timer > 13887 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Done shutting down proxy > Results : > Tests in error: > ITPanelMenu.test_disabled_menu_item:91 ? WarpSynchronization The Warp failed t... > ITPanelMenu.test_disabled_menu_item ? Runtime unexpected invocation exception ... > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0 > {code} -- 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 From issues at jboss.org Mon Feb 3 14:10:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 14:10:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12654) PartialViewRender skips check for whether column is rendered before checking if children can be rendered In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940667#comment-12940667 ] Brian Leathem edited comment on RF-12654 at 2/3/14 2:09 PM: ------------------------------------------------------------ Rewrite the class ExtendedPartialViewContextImpl to skip unrendered and change two methods {code} private void visitActivatorAtExecute() { ExecuteComponentCallback callback = new ExecuteComponentCallback( getFacesContext(), behaviorEvent); if (visitActivatorComponent( activatorComponentId, callback, new HashSet(Arrays.asList(VisitHint.SKIP_UNRENDERED)))) { setupExecuteCallbackData(callback); if (!executeIds.contains(ALL)) { addImplicitExecuteIds(executeIds); } } else { // TODO - log or exception? // TODO - process default execute value } } {code} and {code} private void visitActivatorAtRender(Collection ids) { if (!isRenderAll()) { RenderComponentCallback callback = new RenderComponentCallback( getFacesContext(), behaviorEvent); if (visitActivatorComponent( activatorComponentId, callback, new HashSet(Arrays .asList(VisitHint.SKIP_UNRENDERED)))) { setupRenderCallbackData(callback); } else { // TODO - the same as for "execute" } // take collection value stored during execute if (componentRenderIds != null) { ids.addAll(componentRenderIds); } if (!Boolean.TRUE.equals(renderAll) && !ids.contains(ALL)) { addImplicitRenderIds(ids, limitRender); appendOnbeforedomupdate(onbeforedomupdate); appendOncomplete(oncomplete); setResponseData(responseData); } } } {code} was (Author: grypho0): Rewrite the class ExtendedPartialViewContextImpl to skip unrendered and change two methods private void visitActivatorAtExecute() { ExecuteComponentCallback callback = new ExecuteComponentCallback( getFacesContext(), behaviorEvent); if (visitActivatorComponent( activatorComponentId, callback, new HashSet(Arrays.asList(VisitHint.SKIP_UNRENDERED)))) { setupExecuteCallbackData(callback); if (!executeIds.contains(ALL)) { addImplicitExecuteIds(executeIds); } } else { // TODO - log or exception? // TODO - process default execute value } } and private void visitActivatorAtRender(Collection ids) { if (!isRenderAll()) { RenderComponentCallback callback = new RenderComponentCallback( getFacesContext(), behaviorEvent); if (visitActivatorComponent( activatorComponentId, callback, new HashSet(Arrays .asList(VisitHint.SKIP_UNRENDERED)))) { setupRenderCallbackData(callback); } else { // TODO - the same as for "execute" } // take collection value stored during execute if (componentRenderIds != null) { ids.addAll(componentRenderIds); } if (!Boolean.TRUE.equals(renderAll) && !ids.contains(ALL)) { addImplicitRenderIds(ids, limitRender); appendOnbeforedomupdate(onbeforedomupdate); appendOncomplete(oncomplete); setResponseData(responseData); } } } > PartialViewRender skips check for whether column is rendered before checking if children can be rendered > -------------------------------------------------------------------------------------------------------- > > Key: RF-12654 > URL: https://issues.jboss.org/browse/RF-12654 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.0.M2 > Environment: JBoss 7.1.1.Final > Reporter: Ken H > Labels: lazy-loaded > Fix For: 5-Tracking > > > When using rendered on a component within a rich:column of a rich:dataTable, the EL on the component is executed even if the column is not rendered. > The expected behavior (per my loose understanding of the JSF spec) would suggest that the traversal should have short-circuited before checking the unrendered column's children. > This behavior exists at least as far back as 4.1.0.Final. > Given this minimal example: > {code} > > > > > > execute="@this" render="@form" /> > > > {code} > Clicking the Test button would result in a stack trace similar to the following: > {code} > /index.xhtml @33,96 rendered="#{foo.propertyDoesNotExist != null}": The class 'org.richfaces.tests.Foo' does not have the property 'propertyDoesNotExist'. > at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:111) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.component.ComponentStateHelper.eval(ComponentStateHelper.java:194) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:413) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.isVisitable(UIComponent.java:1669) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1602) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.UIDataAdaptor$DataVisitorForVisitTree.process(UIDataAdaptor.java:199) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.ajax4jsf.model.SequenceDataModel.walk(SequenceDataModel.java:65) [richfaces-core-api-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataAdaptor.walk(UIDataAdaptor.java:796) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataAdaptor.visitDataChildren(UIDataAdaptor.java:1269) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataTableBase.visitDataChildren(UIDataTableBase.java:395) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.java:1347) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.visitActivatorComponent(ExtendedPartialViewContextImpl.java:440) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.context.ExtendedPartialViewContextImpl.visitActivatorAtExecute(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.context.ExtendedPartialViewContextImpl.getExecuteIds(ExtendedPartialViewContextImpl.java:98) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.context.ExtendedPartialViewContextImpl.isExecuteAll(ExtendedPartialViewContextImpl.java:148) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:929) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyRequestValuesPhase.java:78) [jsf-impl-2.1.7-jbossorg-2.jar:] > {code} -- 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 From issues at jboss.org Mon Feb 3 14:14:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 14:14:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12654) PartialViewRender skips check for whether column is rendered before checking if children can be rendered In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12940936#comment-12940936 ] Brian Leathem commented on RF-12654: ------------------------------------ [~grypho0] thanks for looking into this. Would you mind preparing this patch as a Pull Request? https://community.jboss.org/wiki/GuideToUsePullRequestsWithGitHubAndJIRA The best place to land such a pull request would be RichFaces 5. We can then backport the fix to the stable 4.3 branch as appropriate. https://github.com/richfaces/richfaces Also, don't forget to sign the CLA: https://cla.jboss.org/index.seam > PartialViewRender skips check for whether column is rendered before checking if children can be rendered > -------------------------------------------------------------------------------------------------------- > > Key: RF-12654 > URL: https://issues.jboss.org/browse/RF-12654 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.0.M2 > Environment: JBoss 7.1.1.Final > Reporter: Ken H > Labels: lazy-loaded > Fix For: 5-Tracking > > > When using rendered on a component within a rich:column of a rich:dataTable, the EL on the component is executed even if the column is not rendered. > The expected behavior (per my loose understanding of the JSF spec) would suggest that the traversal should have short-circuited before checking the unrendered column's children. > This behavior exists at least as far back as 4.1.0.Final. > Given this minimal example: > {code} > > > > > > execute="@this" render="@form" /> > > > {code} > Clicking the Test button would result in a stack trace similar to the following: > {code} > /index.xhtml @33,96 rendered="#{foo.propertyDoesNotExist != null}": The class 'org.richfaces.tests.Foo' does not have the property 'propertyDoesNotExist'. > at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:111) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.component.ComponentStateHelper.eval(ComponentStateHelper.java:194) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:413) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.isVisitable(UIComponent.java:1669) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1602) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.UIDataAdaptor$DataVisitorForVisitTree.process(UIDataAdaptor.java:199) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.ajax4jsf.model.SequenceDataModel.walk(SequenceDataModel.java:65) [richfaces-core-api-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataAdaptor.walk(UIDataAdaptor.java:796) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataAdaptor.visitDataChildren(UIDataAdaptor.java:1269) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataTableBase.visitDataChildren(UIDataTableBase.java:395) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.component.UIDataAdaptor.visitTree(UIDataAdaptor.java:1347) [richfaces-components-ui-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.visitActivatorComponent(ExtendedPartialViewContextImpl.java:440) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.context.ExtendedPartialViewContextImpl.visitActivatorAtExecute(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.context.ExtendedPartialViewContextImpl.getExecuteIds(ExtendedPartialViewContextImpl.java:98) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at org.richfaces.context.ExtendedPartialViewContextImpl.isExecuteAll(ExtendedPartialViewContextImpl.java:148) [richfaces-core-impl-4.3.0.20121024-M2.jar:4.3.0.20121024-M2] > at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:929) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyRequestValuesPhase.java:78) [jsf-impl-2.1.7-jbossorg-2.jar:] > {code} -- 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 From issues at jboss.org Mon Feb 3 17:16:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 17:16:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13517) Mark all frameowkr tests that requires JSF 2.2 with a new @Category(RequiresJSF22) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13517?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reopened RF-13517: -------------------------------- > Mark all frameowkr tests that requires JSF 2.2 with a new @Category(RequiresJSF22) > ---------------------------------------------------------------------------------- > > Key: RF-13517 > URL: https://issues.jboss.org/browse/RF-13517 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Mon Feb 3 17:16:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 17:16:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13517) Mark all framework tests that requires JSF 2.2 with a new @Category(RequiresJSF22) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13517?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13517: ------------------------------- Summary: Mark all framework tests that requires JSF 2.2 with a new @Category(RequiresJSF22) (was: Mark all frameowkr tests that requires JSF 2.2 with a new @Category(RequiresJSF22)) > Mark all framework tests that requires JSF 2.2 with a new @Category(RequiresJSF22) > ---------------------------------------------------------------------------------- > > Key: RF-13517 > URL: https://issues.jboss.org/browse/RF-13517 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Mon Feb 3 17:16:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 3 Feb 2014 17:16:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13517) Mark all framework tests that requires JSF 2.2 with a new @Category(RequiresJSF22) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13517?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem closed RF-13517. ------------------------------ Resolution: Done > Mark all framework tests that requires JSF 2.2 with a new @Category(RequiresJSF22) > ---------------------------------------------------------------------------------- > > Key: RF-13517 > URL: https://issues.jboss.org/browse/RF-13517 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Tue Feb 4 04:52:29 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Tue, 4 Feb 2014 04:52:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13457) Failing Warp test throws exception while trying to take a screenshot In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13457?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941083#comment-12941083 ] Juraj H?ska commented on RF-13457: ---------------------------------- Note that it does not matter whether it is Warp test or not, but whether it is {{remoteReusable}}. It is probably a bug in Drone, which should augment {{WebDriver}} session automatically. I am going to investigate further. > Failing Warp test throws exception while trying to take a screenshot > -------------------------------------------------------------------- > > Key: RF-13457 > URL: https://issues.jboss.org/browse/RF-13457 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Reporter: Brian Leathem > Assignee: Juraj H?ska > Fix For: 5.0.0.Alpha4 > > > Here are the test results: > {code} > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 7.69 sec <<< FAILURE! - in org.richfaces.ui.toggle.panelMenu.ITPanelMenu > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.532 sec <<< ERROR! > org.jboss.arquillian.warp.impl.client.execution.WarpSynchronizationException: The Warp failed to observe requests or match them with response. > There were no requests matched by observer [null] > If Warp enriched a wrong request, use observe(...) method to select appropriate request which should be enriched instead. > Otherwise check the server-side log and enable Arquillian debugging mode on both, test and server VM by passing -Darquillian.debug=true. > at org.jboss.arquillian.warp.impl.client.execution.SynchronizationPoint.awaitResponses(SynchronizationPoint.java:155) > at org.jboss.arquillian.warp.impl.client.execution.DefaultExecutionSynchronizer.waitForResponse(DefaultExecutionSynchronizer.java:60) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.awaitResponse(WarpExecutionObserver.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.awaitServerExecution(DefaultWarpExecutor.java:95) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.execute(DefaultWarpExecutor.java:65) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.executeWarp(WarpExecutionObserver.java:45) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionInitializer.provideWarpContext(WarpExecutionInitializer.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.execute(DefaultWarpRequestSpecifier.java:98) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.inspect(DefaultWarpRequestSpecifier.java:76) > at org.richfaces.ui.toggle.panelMenu.ITPanelMenu.test_disabled_menu_item(ITPanelMenu.java:91) > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.534 sec <<< ERROR! > java.lang.RuntimeException: unexpected invocation exception during invocation of org.openqa.selenium.TakesScreenshot#getScreenshotAs(), on target 'ReusableRemoteWebDriver: chrome on LINUX (799229cc-608d-49d7-91d3-74d9f487fce3)': org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:135) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > Caused by: java.lang.NoSuchMethodException: org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at java.lang.Class.getDeclaredMethod(Class.java:1956) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:124) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > 13847 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Shutting down proxy > 13853 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Closing all channels... > 13878 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Stopping timer > 13887 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Done shutting down proxy > Results : > Tests in error: > ITPanelMenu.test_disabled_menu_item:91 ? WarpSynchronization The Warp failed t... > ITPanelMenu.test_disabled_menu_item ? Runtime unexpected invocation exception ... > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0 > {code} -- 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 From issues at jboss.org Tue Feb 4 06:32:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 4 Feb 2014 06:32:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13530) Framework tests on WildFly: Request io.undertow.servlet.spec.HttpServletRequestImpl was not original or a wrapper In-Reply-To: References: Message-ID: Luk?? Fry? created RF-13530: ------------------------------- Summary: Framework tests on WildFly: Request io.undertow.servlet.spec.HttpServletRequestImpl was not original or a wrapper Key: RF-13530 URL: https://issues.jboss.org/browse/RF-13530 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: tests - functional Affects Versions: 5.0.0.Alpha3 Reporter: Luk?? Fry? Note: the issue doesn't affect AS 7 / EAP 6 {code} 20:09:59,292 INFO [org.jboss.as.server] (management-handler-thread - 1) JBAS018559: Deployed "ITResourceOptimization.war" (runtime-name : "ITResourceOptimization.war") 20:10:05,423 ERROR [io.undertow.request] (default task-1) UT005023: Exception handling request to /ITResourceOptimization/org.richfaces.resources/javax.faces.resource/org.richfaces.optimized/5.0.0-SNAPSHOT/PackedCompressed/DEFAULT/org.richfaces.css/skinning.css: java.lang.IllegalArgumentException: UT010023: Request io.undertow.servlet.spec.HttpServletRequestImpl at 31772f73 was not original or a wrapper at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:117) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at org.jboss.arquillian.warp.impl.server.execution.HttpRequestProcessor.processHttpRequest(HttpRequestProcessor.java:73) [arquillian-warp.jar:] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_45] at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_45] at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) [arquillian-core.jar:] at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) [arquillian-core.jar:] at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) [arquillian-core.jar:] at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) [arquillian-core.jar:] at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) [arquillian-core.jar:] at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterWarp(WarpFilter.java:144) [arquillian-warp.jar:] at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterHttp(WarpFilter.java:117) [arquillian-warp.jar:] at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilter(WarpFilter.java:90) [arquillian-warp.jar:] at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:70) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:67) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.server.Connectors.executeRootHandler(Connectors.java:164) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:654) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_45] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_45] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] 20:10:05,423 ERROR [io.undertow.request] (default task-20) UT005023: Exception handling request to /ITResourceOptimization/org.richfaces.resources/javax.faces.resource/org.richfaces.optimized/5.0.0-SNAPSHOT/PackedCompressed/DEFAULT/packed/ui.css: java.lang.IllegalArgumentException: UT010023: Request io.undertow.servlet.spec.HttpServletRequestImpl at 31772f73 was not original or a wrapper at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:117) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at org.jboss.arquillian.warp.impl.server.execution.HttpRequestProcessor.processHttpRequest(HttpRequestProcessor.java:73) [arquillian-warp.jar:] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_45] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_45] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_45] at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_45] at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) [arquillian-core.jar:] at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) [arquillian-core.jar:] at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) [arquillian-core.jar:] at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) [arquillian-core.jar:] at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) [arquillian-core.jar:] at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterWarp(WarpFilter.java:144) [arquillian-warp.jar:] at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterHttp(WarpFilter.java:117) [arquillian-warp.jar:] at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilter(WarpFilter.java:90) [arquillian-warp.jar:] at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:70) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:67) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.server.Connectors.executeRootHandler(Connectors.java:164) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:654) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_45] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_45] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] {code} -- 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 From issues at jboss.org Tue Feb 4 06:32:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 4 Feb 2014 06:32:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13530) Framework tests on WildFly: Request io.undertow.servlet.spec.HttpServletRequestImpl was not original or a wrapper In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13530?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? reassigned RF-13530: ------------------------------- Assignee: Luk?? Fry? > Framework tests on WildFly: Request io.undertow.servlet.spec.HttpServletRequestImpl was not original or a wrapper > ----------------------------------------------------------------------------------------------------------------- > > Key: RF-13530 > URL: https://issues.jboss.org/browse/RF-13530 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > Note: the issue doesn't affect AS 7 / EAP 6 > {code} > 20:09:59,292 INFO [org.jboss.as.server] (management-handler-thread - 1) JBAS018559: Deployed "ITResourceOptimization.war" (runtime-name : "ITResourceOptimization.war") > 20:10:05,423 ERROR [io.undertow.request] (default task-1) UT005023: Exception handling request to /ITResourceOptimization/org.richfaces.resources/javax.faces.resource/org.richfaces.optimized/5.0.0-SNAPSHOT/PackedCompressed/DEFAULT/org.richfaces.css/skinning.css: java.lang.IllegalArgumentException: UT010023: Request io.undertow.servlet.spec.HttpServletRequestImpl at 31772f73 was not original or a wrapper > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:117) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.jboss.arquillian.warp.impl.server.execution.HttpRequestProcessor.processHttpRequest(HttpRequestProcessor.java:73) [arquillian-warp.jar:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_45] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_45] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_45] > at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_45] > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) [arquillian-core.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterWarp(WarpFilter.java:144) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterHttp(WarpFilter.java:117) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilter(WarpFilter.java:90) [arquillian-warp.jar:] > at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:70) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:67) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.Connectors.executeRootHandler(Connectors.java:164) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:654) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_45] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_45] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > 20:10:05,423 ERROR [io.undertow.request] (default task-20) UT005023: Exception handling request to /ITResourceOptimization/org.richfaces.resources/javax.faces.resource/org.richfaces.optimized/5.0.0-SNAPSHOT/PackedCompressed/DEFAULT/packed/ui.css: java.lang.IllegalArgumentException: UT010023: Request io.undertow.servlet.spec.HttpServletRequestImpl at 31772f73 was not original or a wrapper > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:117) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.jboss.arquillian.warp.impl.server.execution.HttpRequestProcessor.processHttpRequest(HttpRequestProcessor.java:73) [arquillian-warp.jar:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_45] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_45] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_45] > at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_45] > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) [arquillian-core.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterWarp(WarpFilter.java:144) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterHttp(WarpFilter.java:117) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilter(WarpFilter.java:90) [arquillian-warp.jar:] > at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:70) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:67) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.Connectors.executeRootHandler(Connectors.java:164) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:654) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_45] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_45] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > {code} -- 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 From issues at jboss.org Tue Feb 4 06:34:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 4 Feb 2014 06:34:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13530) Framework tests on WildFly: Request io.undertow.servlet.spec.HttpServletRequestImpl was not original or a wrapper In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941126#comment-12941126 ] Luk?? Fry? commented on RF-13530: --------------------------------- I assume this is Warp's issue. We should try to reproduce this issue with Warp's tests. > Framework tests on WildFly: Request io.undertow.servlet.spec.HttpServletRequestImpl was not original or a wrapper > ----------------------------------------------------------------------------------------------------------------- > > Key: RF-13530 > URL: https://issues.jboss.org/browse/RF-13530 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > Note: the issue doesn't affect AS 7 / EAP 6 > {code} > 20:09:59,292 INFO [org.jboss.as.server] (management-handler-thread - 1) JBAS018559: Deployed "ITResourceOptimization.war" (runtime-name : "ITResourceOptimization.war") > 20:10:05,423 ERROR [io.undertow.request] (default task-1) UT005023: Exception handling request to /ITResourceOptimization/org.richfaces.resources/javax.faces.resource/org.richfaces.optimized/5.0.0-SNAPSHOT/PackedCompressed/DEFAULT/org.richfaces.css/skinning.css: java.lang.IllegalArgumentException: UT010023: Request io.undertow.servlet.spec.HttpServletRequestImpl at 31772f73 was not original or a wrapper > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:117) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.jboss.arquillian.warp.impl.server.execution.HttpRequestProcessor.processHttpRequest(HttpRequestProcessor.java:73) [arquillian-warp.jar:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_45] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_45] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_45] > at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_45] > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) [arquillian-core.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterWarp(WarpFilter.java:144) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterHttp(WarpFilter.java:117) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilter(WarpFilter.java:90) [arquillian-warp.jar:] > at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:70) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:67) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.Connectors.executeRootHandler(Connectors.java:164) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:654) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_45] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_45] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > 20:10:05,423 ERROR [io.undertow.request] (default task-20) UT005023: Exception handling request to /ITResourceOptimization/org.richfaces.resources/javax.faces.resource/org.richfaces.optimized/5.0.0-SNAPSHOT/PackedCompressed/DEFAULT/packed/ui.css: java.lang.IllegalArgumentException: UT010023: Request io.undertow.servlet.spec.HttpServletRequestImpl at 31772f73 was not original or a wrapper > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:117) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.jboss.arquillian.warp.impl.server.execution.HttpRequestProcessor.processHttpRequest(HttpRequestProcessor.java:73) [arquillian-warp.jar:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_45] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_45] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_45] > at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_45] > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) [arquillian-core.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterWarp(WarpFilter.java:144) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterHttp(WarpFilter.java:117) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilter(WarpFilter.java:90) [arquillian-warp.jar:] > at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:70) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:67) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.Connectors.executeRootHandler(Connectors.java:164) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:654) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_45] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_45] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > {code} -- 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 From issues at jboss.org Tue Feb 4 07:02:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Tue, 4 Feb 2014 07:02:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13530) Framework tests on WildFly: Request io.undertow.servlet.spec.HttpServletRequestImpl was not original or a wrapper In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13530?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941131#comment-12941131 ] Ji?? ?tefek commented on RF-13530: ---------------------------------- There is a simple reproducer: just open a page with Warp test and refresh the page a few times until an error on server occurs (some resources will not be loaded) ([original comment about this|https://issues.jboss.org/browse/RFPL-3195?focusedCommentId=12938921&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-12938921]) > Framework tests on WildFly: Request io.undertow.servlet.spec.HttpServletRequestImpl was not original or a wrapper > ----------------------------------------------------------------------------------------------------------------- > > Key: RF-13530 > URL: https://issues.jboss.org/browse/RF-13530 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > Note: the issue doesn't affect AS 7 / EAP 6 > {code} > 20:09:59,292 INFO [org.jboss.as.server] (management-handler-thread - 1) JBAS018559: Deployed "ITResourceOptimization.war" (runtime-name : "ITResourceOptimization.war") > 20:10:05,423 ERROR [io.undertow.request] (default task-1) UT005023: Exception handling request to /ITResourceOptimization/org.richfaces.resources/javax.faces.resource/org.richfaces.optimized/5.0.0-SNAPSHOT/PackedCompressed/DEFAULT/org.richfaces.css/skinning.css: java.lang.IllegalArgumentException: UT010023: Request io.undertow.servlet.spec.HttpServletRequestImpl at 31772f73 was not original or a wrapper > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:117) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.jboss.arquillian.warp.impl.server.execution.HttpRequestProcessor.processHttpRequest(HttpRequestProcessor.java:73) [arquillian-warp.jar:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_45] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_45] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_45] > at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_45] > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) [arquillian-core.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterWarp(WarpFilter.java:144) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterHttp(WarpFilter.java:117) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilter(WarpFilter.java:90) [arquillian-warp.jar:] > at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:70) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:67) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.Connectors.executeRootHandler(Connectors.java:164) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:654) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_45] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_45] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > 20:10:05,423 ERROR [io.undertow.request] (default task-20) UT005023: Exception handling request to /ITResourceOptimization/org.richfaces.resources/javax.faces.resource/org.richfaces.optimized/5.0.0-SNAPSHOT/PackedCompressed/DEFAULT/packed/ui.css: java.lang.IllegalArgumentException: UT010023: Request io.undertow.servlet.spec.HttpServletRequestImpl at 31772f73 was not original or a wrapper > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:117) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.jboss.arquillian.warp.impl.server.execution.HttpRequestProcessor.processHttpRequest(HttpRequestProcessor.java:73) [arquillian-warp.jar:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [rt.jar:1.7.0_45] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) [rt.jar:1.7.0_45] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) [rt.jar:1.7.0_45] > at java.lang.reflect.Method.invoke(Method.java:606) [rt.jar:1.7.0_45] > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) [arquillian-core.jar:] > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) [arquillian-core.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterWarp(WarpFilter.java:144) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilterHttp(WarpFilter.java:117) [arquillian-warp.jar:] > at org.jboss.arquillian.warp.impl.server.execution.WarpFilter.doFilter(WarpFilter.java:90) [arquillian-warp.jar:] > at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:85) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:70) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.java:52) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:67) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:70) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:240) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:227) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:73) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:146) [undertow-servlet-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.Connectors.executeRootHandler(Connectors.java:164) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:654) [undertow-core-1.0.0.Beta30.jar:1.0.0.Beta30] > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [rt.jar:1.7.0_45] > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [rt.jar:1.7.0_45] > at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] > {code} -- 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 From issues at jboss.org Tue Feb 4 08:56:30 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Tue, 4 Feb 2014 08:56:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: Ji?? ?tefek created RF-13531: -------------------------------- Summary: selects: cannot select option on IE11 Key: RF-13531 URL: https://issues.jboss.org/browse/RF-13531 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 4.3.5, 5.0.0.Alpha3 Environment: IE 11 Reporter: Ji?? ?tefek Components: autocomplete, select, inplaceSelect. Works on IE 10. ---- Issues: * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. * User cannot select option with keyboard. -- 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 From issues at jboss.org Tue Feb 4 08:58:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Tue, 4 Feb 2014 08:58:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13457) Failing Warp test throws exception while trying to take a screenshot In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13457?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941186#comment-12941186 ] Juraj H?ska commented on RF-13457: ---------------------------------- It was a bug in Drone. Filed: ARQ-1634 also sent a PR which should resolved it. Once Drone is released we can update it and the pull request for this issue is not needed anymore. Depending on when Drone will be released I would either merge PR for this issue temporarily, or just wait for the Drone release. > Failing Warp test throws exception while trying to take a screenshot > -------------------------------------------------------------------- > > Key: RF-13457 > URL: https://issues.jboss.org/browse/RF-13457 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Reporter: Brian Leathem > Assignee: Juraj H?ska > Fix For: 5.0.0.Alpha4 > > > Here are the test results: > {code} > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 7.69 sec <<< FAILURE! - in org.richfaces.ui.toggle.panelMenu.ITPanelMenu > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.532 sec <<< ERROR! > org.jboss.arquillian.warp.impl.client.execution.WarpSynchronizationException: The Warp failed to observe requests or match them with response. > There were no requests matched by observer [null] > If Warp enriched a wrong request, use observe(...) method to select appropriate request which should be enriched instead. > Otherwise check the server-side log and enable Arquillian debugging mode on both, test and server VM by passing -Darquillian.debug=true. > at org.jboss.arquillian.warp.impl.client.execution.SynchronizationPoint.awaitResponses(SynchronizationPoint.java:155) > at org.jboss.arquillian.warp.impl.client.execution.DefaultExecutionSynchronizer.waitForResponse(DefaultExecutionSynchronizer.java:60) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.awaitResponse(WarpExecutionObserver.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.awaitServerExecution(DefaultWarpExecutor.java:95) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.execute(DefaultWarpExecutor.java:65) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.executeWarp(WarpExecutionObserver.java:45) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionInitializer.provideWarpContext(WarpExecutionInitializer.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.execute(DefaultWarpRequestSpecifier.java:98) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.inspect(DefaultWarpRequestSpecifier.java:76) > at org.richfaces.ui.toggle.panelMenu.ITPanelMenu.test_disabled_menu_item(ITPanelMenu.java:91) > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.534 sec <<< ERROR! > java.lang.RuntimeException: unexpected invocation exception during invocation of org.openqa.selenium.TakesScreenshot#getScreenshotAs(), on target 'ReusableRemoteWebDriver: chrome on LINUX (799229cc-608d-49d7-91d3-74d9f487fce3)': org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:135) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > Caused by: java.lang.NoSuchMethodException: org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at java.lang.Class.getDeclaredMethod(Class.java:1956) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:124) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > 13847 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Shutting down proxy > 13853 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Closing all channels... > 13878 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Stopping timer > 13887 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Done shutting down proxy > Results : > Tests in error: > ITPanelMenu.test_disabled_menu_item:91 ? WarpSynchronization The Warp failed t... > ITPanelMenu.test_disabled_menu_item ? Runtime unexpected invocation exception ... > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0 > {code} -- 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 From issues at jboss.org Tue Feb 4 08:58:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Tue, 4 Feb 2014 08:58:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13457) Failing Warp test throws exception while trying to take a screenshot In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13457?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13457: ----------------------------- Assignee: (was: Juraj H?ska) > Failing Warp test throws exception while trying to take a screenshot > -------------------------------------------------------------------- > > Key: RF-13457 > URL: https://issues.jboss.org/browse/RF-13457 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Reporter: Brian Leathem > Fix For: 5.0.0.Alpha4 > > > Here are the test results: > {code} > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 7.69 sec <<< FAILURE! - in org.richfaces.ui.toggle.panelMenu.ITPanelMenu > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.532 sec <<< ERROR! > org.jboss.arquillian.warp.impl.client.execution.WarpSynchronizationException: The Warp failed to observe requests or match them with response. > There were no requests matched by observer [null] > If Warp enriched a wrong request, use observe(...) method to select appropriate request which should be enriched instead. > Otherwise check the server-side log and enable Arquillian debugging mode on both, test and server VM by passing -Darquillian.debug=true. > at org.jboss.arquillian.warp.impl.client.execution.SynchronizationPoint.awaitResponses(SynchronizationPoint.java:155) > at org.jboss.arquillian.warp.impl.client.execution.DefaultExecutionSynchronizer.waitForResponse(DefaultExecutionSynchronizer.java:60) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.awaitResponse(WarpExecutionObserver.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.awaitServerExecution(DefaultWarpExecutor.java:95) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.execute(DefaultWarpExecutor.java:65) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.executeWarp(WarpExecutionObserver.java:45) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionInitializer.provideWarpContext(WarpExecutionInitializer.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.execute(DefaultWarpRequestSpecifier.java:98) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.inspect(DefaultWarpRequestSpecifier.java:76) > at org.richfaces.ui.toggle.panelMenu.ITPanelMenu.test_disabled_menu_item(ITPanelMenu.java:91) > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.534 sec <<< ERROR! > java.lang.RuntimeException: unexpected invocation exception during invocation of org.openqa.selenium.TakesScreenshot#getScreenshotAs(), on target 'ReusableRemoteWebDriver: chrome on LINUX (799229cc-608d-49d7-91d3-74d9f487fce3)': org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:135) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > Caused by: java.lang.NoSuchMethodException: org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at java.lang.Class.getDeclaredMethod(Class.java:1956) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:124) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > 13847 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Shutting down proxy > 13853 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Closing all channels... > 13878 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Stopping timer > 13887 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Done shutting down proxy > Results : > Tests in error: > ITPanelMenu.test_disabled_menu_item:91 ? WarpSynchronization The Warp failed t... > ITPanelMenu.test_disabled_menu_item ? Runtime unexpected invocation exception ... > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0 > {code} -- 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 From issues at jboss.org Tue Feb 4 09:10:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 4 Feb 2014 09:10:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13532) Support JSF 2.2 resetValues attribute for r:ajax In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13532?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13532: ---------------------------- Labels: jsf22 (was: ) > Support JSF 2.2 resetValues attribute for r:ajax > ------------------------------------------------ > > Key: RF-13532 > URL: https://issues.jboss.org/browse/RF-13532 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Labels: jsf22 > > JSF 2.2 adds the new "resetValues" attribute to the tag. The ace:ajax tag should be improved to also support resetValues. > http://jsflive.wordpress.com/2013/06/20/jsf-22-reset-values/ -- 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 From issues at jboss.org Tue Feb 4 09:10:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 4 Feb 2014 09:10:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13532) Support JSF 2.2 resetValues attribute for r:ajax In-Reply-To: References: Message-ID: Luk?? Fry? created RF-13532: ------------------------------- Summary: Support JSF 2.2 resetValues attribute for r:ajax Key: RF-13532 URL: https://issues.jboss.org/browse/RF-13532 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: component-a4j-core Affects Versions: 5.0.0.Alpha3 Reporter: Luk?? Fry? JSF 2.2 adds the new "resetValues" attribute to the tag. The ace:ajax tag should be improved to also support resetValues. http://jsflive.wordpress.com/2013/06/20/jsf-22-reset-values/ -- 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 From issues at jboss.org Tue Feb 4 10:42:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 4 Feb 2014 10:42:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-10963) a4j:commandButton doesn't update the hidden javax.faces.ViewState from render form In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-10963?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941242#comment-12941242 ] Luk?? Fry? commented on RF-10963: --------------------------------- Hey guys, [~mechtatel], I believe this issue was already fixed in 4.3.0: https://issues.jboss.org/browse/RF-12442 https://github.com/richfaces4/core/commit/e857222b79852eb69ec18450af6eeff26984b646 Could you give it one more try and see whether you can reproduce it with 4.3.5 / 5.0.0.Alpha3? > a4j:commandButton doesn't update the hidden javax.faces.ViewState from render form > ---------------------------------------------------------------------------------- > > Key: RF-10963 > URL: https://issues.jboss.org/browse/RF-10963 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-a4j-core > Affects Versions: 4.0.0.Final > Environment: S.O.: Ubuntu 10.04 > Browser: Chrome > JSF Impl: JSF 2.0.2 > Reporter: Guilherme Moreira > Labels: community_contributor_needed, jsf > Fix For: 5.0.0.Alpha4 > > > A a4j:commandButton that's render another form causes this other form lost it's hidden input viewState. > Example > {code} > xmlns:ui="http://java.sun.com/jsf/facelets" > xmlns:f="http://java.sun.com/jsf/core" > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:a4j="http://richfaces.org/a4j"> > > > > > > > > > > > > {code} -- 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 From issues at jboss.org Tue Feb 4 10:46:29 2014 From: issues at jboss.org (Mark Cave-Ayland (JIRA)) Date: Tue, 4 Feb 2014 10:46:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13533) rich:fileUpload doesn't work with jQuery in noConflict mode In-Reply-To: References: Message-ID: Mark Cave-Ayland created RF-13533: ------------------------------------- Summary: rich:fileUpload doesn't work with jQuery in noConflict mode Key: RF-13533 URL: https://issues.jboss.org/browse/RF-13533 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component Affects Versions: 4.3.5, 4.2.3.Final Environment: Tomcat 7, RichFaces 4.2.3.Final, Debian Wheezy x86_64 Reporter: Mark Cave-Ayland Hi all, For compatibility with other components used within our application, we manually include a copy of jQuery in noConflict mode within our page header template rather than let RichFaces include its own. This works fine for us, except when using the component which throws a Javascript error. Casual inspection of the source shows that this is due to a typing error where $ is used directly within fileupload.js rather than using the passed-in parameter. The following diff fixes the error for us: {code} $ diff -u fileupload.js.orig fileupload.js --- fileupload.js.orig 2014-02-04 15:07:05.000000000 +0000 +++ fileupload.js 2014-02-04 15:08:32.000000000 +0000 @@ -98,7 +98,7 @@ richfaces.BaseComponent.extend(richfaces.ui.FileUpload); - $.extend(richfaces.ui.FileUpload.prototype, (function () { + jQuery.extend(richfaces.ui.FileUpload.prototype, (function () { return { name: "FileUpload", {code} The bug was found during the development of our main application under RF 4.2.3.Final, however a quick test with RF 4.3.5 JARs shows that the bug is still present. Many thanks, Mark. -- 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 From issues at jboss.org Tue Feb 4 11:10:28 2014 From: issues at jboss.org (Tobias Seppenhauser (JIRA)) Date: Tue, 4 Feb 2014 11:10:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13397?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941249#comment-12941249 ] Tobias Seppenhauser commented on RF-13397: ------------------------------------------ This is still an issue for IE11 and RichFaces 4.3.5. Just take a look into the showcase http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=push&skin=blueSky > a4j:push not working with Internet Explorer >= 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Luk?? Fry? > Labels: needs-qe > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > The mechanism seems to be broken when using the Internet Explorer 10 or above. This can easily be verified by visiting the corresponding showcase component [1]. The UUID never gets updated. > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=push&skin=blueSky -- 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 From issues at jboss.org Tue Feb 4 11:12:28 2014 From: issues at jboss.org (Tobias Seppenhauser (JIRA)) Date: Tue, 4 Feb 2014 11:12:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13397?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941252#comment-12941252 ] Tobias Seppenhauser commented on RF-13397: ------------------------------------------ Hm, seems like the showcase demo isn't working with Firefox (here version 26.0) either > a4j:push not working with Internet Explorer >= 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Luk?? Fry? > Labels: needs-qe > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > The mechanism seems to be broken when using the Internet Explorer 10 or above. This can easily be verified by visiting the corresponding showcase component [1]. The UUID never gets updated. > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=push&skin=blueSky -- 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 From issues at jboss.org Tue Feb 4 11:20:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 4 Feb 2014 11:20:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13397?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941258#comment-12941258 ] Luk?? Fry? commented on RF-13397: --------------------------------- Hey [~res_offz], works for me in both IE11 and Firefox 26. Have you tried fully reload the page? > a4j:push not working with Internet Explorer >= 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Luk?? Fry? > Labels: needs-qe > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > The mechanism seems to be broken when using the Internet Explorer 10 or above. This can easily be verified by visiting the corresponding showcase component [1]. The UUID never gets updated. > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=push&skin=blueSky -- 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 From issues at jboss.org Tue Feb 4 12:38:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 12:38:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13457) Failing Warp test throws exception while trying to take a screenshot In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13457?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941302#comment-12941302 ] Brian Leathem commented on RF-13457: ------------------------------------ Great, thanks for digging in [~jhuska]! Since this behaviour is not blocking, let's go ahead and wait for the fix to land upstream. > Failing Warp test throws exception while trying to take a screenshot > -------------------------------------------------------------------- > > Key: RF-13457 > URL: https://issues.jboss.org/browse/RF-13457 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - functional > Reporter: Brian Leathem > Fix For: 5.0.0.Alpha4 > > > Here are the test results: > {code} > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 7.69 sec <<< FAILURE! - in org.richfaces.ui.toggle.panelMenu.ITPanelMenu > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.532 sec <<< ERROR! > org.jboss.arquillian.warp.impl.client.execution.WarpSynchronizationException: The Warp failed to observe requests or match them with response. > There were no requests matched by observer [null] > If Warp enriched a wrong request, use observe(...) method to select appropriate request which should be enriched instead. > Otherwise check the server-side log and enable Arquillian debugging mode on both, test and server VM by passing -Darquillian.debug=true. > at org.jboss.arquillian.warp.impl.client.execution.SynchronizationPoint.awaitResponses(SynchronizationPoint.java:155) > at org.jboss.arquillian.warp.impl.client.execution.DefaultExecutionSynchronizer.waitForResponse(DefaultExecutionSynchronizer.java:60) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.awaitResponse(WarpExecutionObserver.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.awaitServerExecution(DefaultWarpExecutor.java:95) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpExecutor.execute(DefaultWarpExecutor.java:65) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionObserver.executeWarp(WarpExecutionObserver.java:45) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.warp.impl.client.execution.WarpExecutionInitializer.provideWarpContext(WarpExecutionInitializer.java:64) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.core.impl.EventImpl.fire(EventImpl.java:67) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.execute(DefaultWarpRequestSpecifier.java:98) > at org.jboss.arquillian.warp.impl.client.execution.DefaultWarpRequestSpecifier.inspect(DefaultWarpRequestSpecifier.java:76) > at org.richfaces.ui.toggle.panelMenu.ITPanelMenu.test_disabled_menu_item(ITPanelMenu.java:91) > test_disabled_menu_item(org.richfaces.ui.toggle.panelMenu.ITPanelMenu) Time elapsed: 7.534 sec <<< ERROR! > java.lang.RuntimeException: unexpected invocation exception during invocation of org.openqa.selenium.TakesScreenshot#getScreenshotAs(), on target 'ReusableRemoteWebDriver: chrome on LINUX (799229cc-608d-49d7-91d3-74d9f487fce3)': org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:135) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > Caused by: java.lang.NoSuchMethodException: org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver.getScreenshotAs(org.openqa.selenium.OutputType) > at java.lang.Class.getDeclaredMethod(Class.java:1956) > at org.jboss.arquillian.graphene.proxy.GrapheneProxyHandler.invokeReal(GrapheneProxyHandler.java:124) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$1.invoke(GrapheneContextualHandler.java:159) > at org.jboss.arquillian.graphene.enricher.SearchContextInterceptor.intercept(SearchContextInterceptor.java:50) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:48) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor$1.apply(StaleElementInterceptor.java:44) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:177) > at org.openqa.selenium.support.ui.FluentWait$1.apply(FluentWait.java:175) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) > at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:175) > at org.jboss.arquillian.graphene.wait.WebDriverWaitImpl.until(WebDriverWaitImpl.java:87) > at org.jboss.arquillian.graphene.enricher.StaleElementInterceptor.intercept(StaleElementInterceptor.java:44) > at org.jboss.arquillian.graphene.proxy.InvocationContextImpl.invoke(InvocationContextImpl.java:87) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler$2.call(GrapheneContextualHandler.java:209) > at org.jboss.arquillian.graphene.context.BrowserActions.performAction(BrowserActions.java:62) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.invoke(GrapheneContextualHandler.java:205) > at org.jboss.arquillian.graphene.proxy.GrapheneContextualHandler.intercept(GrapheneContextualHandler.java:229) > at org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver$$EnhancerByGraphene$$94b0812e.getScreenshotAs() > at org.richfaces.arquillian.browser.FailureScreenshot.takeScreenshotOnFailure(FailureScreenshot.java:28) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.invokeObservers(EventContextImpl.java:99) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:81) > at org.jboss.arquillian.testenricher.cdi.CreationalContextDestroyer.destory(CreationalContextDestroyer.java:44) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createContext(ContainerEventController.java:142) > at org.jboss.arquillian.container.test.impl.client.ContainerEventController.createAfterContext(ContainerEventController.java:134) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createTestContext(TestContextHandler.java:89) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createClassContext(TestContextHandler.java:75) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.test.impl.TestContextHandler.createSuiteContext(TestContextHandler.java:60) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.jboss.arquillian.core.impl.ObserverImpl.invoke(ObserverImpl.java:94) > at org.jboss.arquillian.core.impl.EventContextImpl.proceed(EventContextImpl.java:88) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:135) > at org.jboss.arquillian.core.impl.ManagerImpl.fire(ManagerImpl.java:115) > at org.jboss.arquillian.test.impl.EventTestRunnerAdaptor.after(EventTestRunnerAdaptor.java:103) > at org.jboss.arquillian.junit.Arquillian$5$1.evaluate(Arquillian.java:245) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$5.evaluate(Arquillian.java:240) > at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70) > at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.jboss.arquillian.junit.Arquillian$2.evaluate(Arquillian.java:185) > at org.jboss.arquillian.junit.Arquillian.multiExecute(Arquillian.java:314) > at org.jboss.arquillian.junit.Arquillian.access$100(Arquillian.java:46) > at org.jboss.arquillian.junit.Arquillian$3.evaluate(Arquillian.java:199) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.jboss.arquillian.junit.Arquillian.run(Arquillian.java:147) > at org.junit.runners.Suite.runChild(Suite.java:127) > at org.junit.runners.Suite.runChild(Suite.java:26) > at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238) > at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63) > at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236) > at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53) > at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229) > at org.junit.runners.ParentRunner.run(ParentRunner.java:309) > at org.junit.runner.JUnitCore.run(JUnitCore.java:160) > at org.junit.runner.JUnitCore.run(JUnitCore.java:138) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.createRequestAndRun(JUnitCoreWrapper.java:141) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.executeEager(JUnitCoreWrapper.java:114) > at org.apache.maven.surefire.junitcore.JUnitCoreWrapper.execute(JUnitCoreWrapper.java:86) > at org.apache.maven.surefire.junitcore.JUnitCoreProvider.invoke(JUnitCoreProvider.java:134) > at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:200) > at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:153) > at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:103) > 13847 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Shutting down proxy > 13853 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Closing all channels... > 13878 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Stopping timer > 13887 [Thread-4] INFO org.jboss.arquillian.warp.impl.client.proxy.WarpHttpProxyServer - Done shutting down proxy > Results : > Tests in error: > ITPanelMenu.test_disabled_menu_item:91 ? WarpSynchronization The Warp failed t... > ITPanelMenu.test_disabled_menu_item ? Runtime unexpected invocation exception ... > Tests run: 2, Failures: 0, Errors: 2, Skipped: 0 > {code} -- 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 From issues at jboss.org Tue Feb 4 12:38:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 12:38:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13531: ------------------------------- Fix Version/s: 4.3.6 > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Labels: IE11 > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Tue Feb 4 12:40:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 12:40:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13532) Support JSF 2.2 resetValues attribute for r:ajax In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13532?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13532: ------------------------------- Fix Version/s: 5.0.0.Alpha4 > Support JSF 2.2 resetValues attribute for r:ajax > ------------------------------------------------ > > Key: RF-13532 > URL: https://issues.jboss.org/browse/RF-13532 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Labels: jsf22 > Fix For: 5.0.0.Alpha4 > > > JSF 2.2 adds the new "resetValues" attribute to the tag. The ace:ajax tag should be improved to also support resetValues. > http://jsflive.wordpress.com/2013/06/20/jsf-22-reset-values/ -- 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 From issues at jboss.org Tue Feb 4 12:42:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 12:42:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13533) rich:fileUpload doesn't work with jQuery in noConflict mode In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13533?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941303#comment-12941303 ] Brian Leathem commented on RF-13533: ------------------------------------ This issue duplicates RF-12936 that was resolved in 4.5.0.Alpha1 and 5.0.0.Alpha3. We can re-purpose this issue to address backporting the jQuery noConflict fixes to RF 4.3.x > rich:fileUpload doesn't work with jQuery in noConflict mode > ----------------------------------------------------------- > > Key: RF-13533 > URL: https://issues.jboss.org/browse/RF-13533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component > Affects Versions: 4.2.3.Final, 4.3.5 > Environment: Tomcat 7, RichFaces 4.2.3.Final, Debian Wheezy x86_64 > Reporter: Mark Cave-Ayland > > Hi all, > For compatibility with other components used within our application, we manually include a copy of jQuery in noConflict mode within our page header template rather than let RichFaces include its own. > This works fine for us, except when using the component which throws a Javascript error. Casual inspection of the source shows that this is due to a typing error where $ is used directly within fileupload.js rather than using the passed-in parameter. The following diff fixes the error for us: > {code} > $ diff -u fileupload.js.orig fileupload.js > --- fileupload.js.orig 2014-02-04 15:07:05.000000000 +0000 > +++ fileupload.js 2014-02-04 15:08:32.000000000 +0000 > @@ -98,7 +98,7 @@ > > richfaces.BaseComponent.extend(richfaces.ui.FileUpload); > > - $.extend(richfaces.ui.FileUpload.prototype, (function () { > + jQuery.extend(richfaces.ui.FileUpload.prototype, (function () { > > return { > name: "FileUpload", > {code} > The bug was found during the development of our main application under RF 4.2.3.Final, however a quick test with RF 4.3.5 JARs shows that the bug is still present. > Many thanks, > Mark. -- 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 From issues at jboss.org Tue Feb 4 12:42:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 12:42:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13533) Port the jQuery noConlfict fixes back to RF 4.3.x In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13533?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13533: ------------------------------- Summary: Port the jQuery noConlfict fixes back to RF 4.3.x (was: rich:fileUpload doesn't work with jQuery in noConflict mode) > Port the jQuery noConlfict fixes back to RF 4.3.x > ------------------------------------------------- > > Key: RF-13533 > URL: https://issues.jboss.org/browse/RF-13533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component > Affects Versions: 4.2.3.Final, 4.3.5 > Environment: Tomcat 7, RichFaces 4.2.3.Final, Debian Wheezy x86_64 > Reporter: Mark Cave-Ayland > > Hi all, > For compatibility with other components used within our application, we manually include a copy of jQuery in noConflict mode within our page header template rather than let RichFaces include its own. > This works fine for us, except when using the component which throws a Javascript error. Casual inspection of the source shows that this is due to a typing error where $ is used directly within fileupload.js rather than using the passed-in parameter. The following diff fixes the error for us: > {code} > $ diff -u fileupload.js.orig fileupload.js > --- fileupload.js.orig 2014-02-04 15:07:05.000000000 +0000 > +++ fileupload.js 2014-02-04 15:08:32.000000000 +0000 > @@ -98,7 +98,7 @@ > > richfaces.BaseComponent.extend(richfaces.ui.FileUpload); > > - $.extend(richfaces.ui.FileUpload.prototype, (function () { > + jQuery.extend(richfaces.ui.FileUpload.prototype, (function () { > > return { > name: "FileUpload", > {code} > The bug was found during the development of our main application under RF 4.2.3.Final, however a quick test with RF 4.3.5 JARs shows that the bug is still present. > Many thanks, > Mark. -- 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 From issues at jboss.org Tue Feb 4 12:44:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 12:44:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13533) Port the jQuery noConlfict fixes back to RF 4.3.x In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13533?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13533: ------------------------------- Description: jQuery usage by RichFaces was corrected to work properly with jQuery noConclift in RF 4.5/5.0 with the resolution of RF-12936. This issue addresses backporting those changes into the 4.3.x branch. ---- Summary was: rich:fileUpload doesn't work with jQuery in noConflict mode Hi all, For compatibility with other components used within our application, we manually include a copy of jQuery in noConflict mode within our page header template rather than let RichFaces include its own. This works fine for us, except when using the component which throws a Javascript error. Casual inspection of the source shows that this is due to a typing error where $ is used directly within fileupload.js rather than using the passed-in parameter. The following diff fixes the error for us: {code} $ diff -u fileupload.js.orig fileupload.js --- fileupload.js.orig 2014-02-04 15:07:05.000000000 +0000 +++ fileupload.js 2014-02-04 15:08:32.000000000 +0000 @@ -98,7 +98,7 @@ richfaces.BaseComponent.extend(richfaces.ui.FileUpload); - $.extend(richfaces.ui.FileUpload.prototype, (function () { + jQuery.extend(richfaces.ui.FileUpload.prototype, (function () { return { name: "FileUpload", {code} The bug was found during the development of our main application under RF 4.2.3.Final, however a quick test with RF 4.3.5 JARs shows that the bug is still present. Many thanks, Mark. was: Hi all, For compatibility with other components used within our application, we manually include a copy of jQuery in noConflict mode within our page header template rather than let RichFaces include its own. This works fine for us, except when using the component which throws a Javascript error. Casual inspection of the source shows that this is due to a typing error where $ is used directly within fileupload.js rather than using the passed-in parameter. The following diff fixes the error for us: {code} $ diff -u fileupload.js.orig fileupload.js --- fileupload.js.orig 2014-02-04 15:07:05.000000000 +0000 +++ fileupload.js 2014-02-04 15:08:32.000000000 +0000 @@ -98,7 +98,7 @@ richfaces.BaseComponent.extend(richfaces.ui.FileUpload); - $.extend(richfaces.ui.FileUpload.prototype, (function () { + jQuery.extend(richfaces.ui.FileUpload.prototype, (function () { return { name: "FileUpload", {code} The bug was found during the development of our main application under RF 4.2.3.Final, however a quick test with RF 4.3.5 JARs shows that the bug is still present. Many thanks, Mark. > Port the jQuery noConlfict fixes back to RF 4.3.x > ------------------------------------------------- > > Key: RF-13533 > URL: https://issues.jboss.org/browse/RF-13533 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component > Affects Versions: 4.2.3.Final, 4.3.5 > Environment: Tomcat 7, RichFaces 4.2.3.Final, Debian Wheezy x86_64 > Reporter: Mark Cave-Ayland > > jQuery usage by RichFaces was corrected to work properly with jQuery noConclift in RF 4.5/5.0 with the resolution of RF-12936. This issue addresses backporting those changes into the 4.3.x branch. > ---- > Summary was: rich:fileUpload doesn't work with jQuery in noConflict mode > Hi all, > For compatibility with other components used within our application, we manually include a copy of jQuery in noConflict mode within our page header template rather than let RichFaces include its own. > This works fine for us, except when using the component which throws a Javascript error. Casual inspection of the source shows that this is due to a typing error where $ is used directly within fileupload.js rather than using the passed-in parameter. The following diff fixes the error for us: > {code} > $ diff -u fileupload.js.orig fileupload.js > --- fileupload.js.orig 2014-02-04 15:07:05.000000000 +0000 > +++ fileupload.js 2014-02-04 15:08:32.000000000 +0000 > @@ -98,7 +98,7 @@ > > richfaces.BaseComponent.extend(richfaces.ui.FileUpload); > > - $.extend(richfaces.ui.FileUpload.prototype, (function () { > + jQuery.extend(richfaces.ui.FileUpload.prototype, (function () { > > return { > name: "FileUpload", > {code} > The bug was found during the development of our main application under RF 4.2.3.Final, however a quick test with RF 4.3.5 JARs shows that the bug is still present. > Many thanks, > Mark. -- 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 From issues at jboss.org Tue Feb 4 14:04:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 14:04:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13247) Upgrade the RichFaces guava dependency to version 15.0 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13247: ------------------------------- Sprint: 4.3.5 Sprint 1, 5.0.0.Alpha3 - Sprint 4 (was: 4.3.5 Sprint 1) > Upgrade the RichFaces guava dependency to version 15.0 > ------------------------------------------------------ > > Key: RF-13247 > URL: https://issues.jboss.org/browse/RF-13247 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Jeremy Landis > Assignee: Brian Leathem > Priority: Minor > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Upgrading to guava 15 from 14.0.1 causes this richfaces error. I have not looked into this further but wanted to put it out there as an issue. > Caused by: java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(Lcom/google/common/base/Function;)Ljava/util/concurrent/ConcurrentMap; from class org.richfaces.resource.ResourceLibraryFactoryImpl -- 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 From issues at jboss.org Tue Feb 4 14:06:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 14:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13334) Upgrade jQuery UI to 1.10.3 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13334?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13334: ------------------------------- Sprint: 5.0.0.Alpha4 - Sprint 1 > Upgrade jQuery UI to 1.10.3 > --------------------------- > > Key: RF-13334 > URL: https://issues.jboss.org/browse/RF-13334 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: third-party > Affects Versions: 5.0.0.Alpha2 > Reporter: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > RichWidgets issue: > https://github.com/richwidgets/richwidgets/issues/99 -- 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 From issues at jboss.org Tue Feb 4 14:06:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 14:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13406) Create a new showcase for RichFaces 5 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13406?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13406: ------------------------------- Sprint: 5.0.0.Alpha4 - Sprint 1 > Create a new showcase for RichFaces 5 > ------------------------------------- > > Key: RF-13406 > URL: https://issues.jboss.org/browse/RF-13406 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: showcase > Reporter: Brian Leathem > Fix For: 5.0.0.Alpha4 > > Original Estimate: 1 day > Remaining Estimate: 1 day > > The new showcase should: > # Include the examples from the existing RichFaces4 showcase > #* Simplications should be made as appropriate to reduce complexity (eg. no JMS, no JPA - these can be addressed in standalone examples) > # Be based on the RichFaces Sandbox Bootstrap demo > #* The layout will have to be changed to use generic bootstrap CSS as required > # Drop (as much as possible) the container specific configuration found in the RichFaces4 showcase > #* consider any sample simplifications required to achieve this goal -- 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 From issues at jboss.org Tue Feb 4 14:06:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 14:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13272) Manage the RichFaces jquery.js dependency with RichWidgets In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13272?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13272: ------------------------------- Sprint: 5.0.0.Alpha4 - Sprint 1 > Manage the RichFaces jquery.js dependency with RichWidgets > ---------------------------------------------------------- > > Key: RF-13272 > URL: https://issues.jboss.org/browse/RF-13272 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Brian Leathem > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha4 > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > The jQuery UI dependencies are currently set within RichWidgets and copied into RichFaces via a grunt task. > The jQuery.js dpendency should be similarly managed. While making this change, the jQuery.js library should be changed to _com.jquery_. -- 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 From issues at jboss.org Tue Feb 4 14:06:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 14:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13521) Remove Reference Data from Component Reference In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13521?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13521: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Remove Reference Data from Component Reference > ---------------------------------------------- > > Key: RF-13521 > URL: https://issues.jboss.org/browse/RF-13521 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: doc > Affects Versions: 5.0.0.Alpha1 > Reporter: Luk?? Fry? > Fix For: 5-Tracking > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > See [Forum Reference]. > ---- > I have noticed each of the components in Component Reference contains reference data: > > > {code} > 3.5.2. Reference data > > component-type: org.richfaces.CommandLink > component-class: org.richfaces.component.UICommandLink > component-family: javax.faces.Command > renderer-type: org.richfaces.CommandLinkRenderer > {code} > > Similarly, VDL doc contains same information: > > {code} > Tag Information > Component type org.richfaces.CommandLink > Tag Name a4j:commandLink > Renderer Type org.richfaces.CommandLinkRenderer > Handler Class None > {code} > > > The advantage of VDL doc is that it is automatically generated and so it doesn't need to be updated manually everytime something is changed. > > On the other hand, those are also not information which are used regularly - they are intented for advanced users and use cases. > > Thus I suggest to remove the Reference Data from Components Reference. -- 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 From issues at jboss.org Tue Feb 4 14:08:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 14:08:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11090) rich:collapsibleSubTable cannot be nested In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11090?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11090: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > rich:collapsibleSubTable cannot be nested > ----------------------------------------- > > Key: RF-11090 > URL: https://issues.jboss.org/browse/RF-11090 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.0.0.Final > Reporter: Val Blant > Priority: Minor > Fix For: 5-Tracking > > Original Estimate: 45 minutes > Remaining Estimate: 45 minutes > > When __ s are nested, the following error occurs: > {quote} > This page contains the following errors: > error on line 202 at column 74: Opening and ending tag mismatch: tbody line 0 and tr > Below is a rendering of the page up to the first error. > {quote} > The page is rendered up to the nested __. > This error happens b/c nested sub tables render an extra __ element after the nested subtable row. > I was able to work around the problem by making a small tweak to _CollapsibleSubTableRenderer_. The lines I added or changes are marked with *"// fix line"* comment. > {code:title=FixedCollapsibleSubTableRenderer.java|borderStyle=solid} > /** > * Allows nested subTables to be rendered properly > */ > @ResourceDependencies({ > @ResourceDependency(name = "jquery.js"), > @ResourceDependency(name = "richfaces.js"), > @ResourceDependency(library="org.richfaces", name = "collapsible-subtable.ecss"), > @ResourceDependency(library="org.richfaces", name = "collapsible-subtable.js") > }) > public class FixedCollapsibleSubTableRenderer extends CollapsibleSubTableRenderer { > > @Override > public void encodeRow(ResponseWriter writer, FacesContext facesContext, RowHolderBase holder) throws IOException { > RowHolder rowHolder = (RowHolder)holder; > Row row = rowHolder.getRow(); > putRowStylesIntoContext(facesContext, rowHolder); > rowHolder.setRowStart(true); > Iterator components = row.columns(); > if (rowHolder.isUpdatePartial()) { > partialStart(facesContext,((AbstractCollapsibleSubTable) row).getRelativeClientId(facesContext) + ":b"); > } > > int columnNumber = 0; > boolean isSubtable = false; // fix line > while (components.hasNext()) { > UIComponent component = components.next(); > if(component.isRendered()) { > if(component instanceof UIColumn ) { > component.getAttributes().put(COLUMN_CLASS, getColumnClass(rowHolder, columnNumber)); > encodeColumn(facesContext, writer, (UIColumn)component , rowHolder); > columnNumber++; > } else if (component instanceof AbstractCollapsibleSubTable) { > if(component.isRendered()) { > isSubtable = true; // fix line > encodeRowEnd(writer); > } > > if ( ((AbstractCollapsibleSubTable) component).isExpanded() ) { > component.encodeAll(facesContext); > } > rowHolder.setRowStart(true); > } > } > } > if ( !isSubtable) encodeRowEnd(writer); // fix line > if (rowHolder.isUpdatePartial()) { > partialEnd(facesContext); > } > } > } > {code} > This renderer needs to be registered in _faces-config.xml_: > {code} > > > org.richfaces.Data > org.richfaces.CollapsibleSubTableRenderer > bla.FixedCollapsibleSubTableRenderer > > > {code} -- 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 From issues at jboss.org Tue Feb 4 14:08:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 14:08:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13127) onvalid and oninvalide pass wrong element when using rich:element with String field In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13127?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13127: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > onvalid and oninvalide pass wrong element when using rich:element with String field > ----------------------------------------------------------------------------------- > > Key: RF-13127 > URL: https://issues.jboss.org/browse/RF-13127 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-validators > Affects Versions: 4.3.3 > Reporter: Louis Parisi > Labels: testcase_provided > Fix For: 5-Tracking > > Attachments: JSFTemplate.zip, RF-13127.zip, richfaces.zip > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > I have a bean iterated in a datatable. Using the rich:validator on fields in the bean I am executing javascript when a field is validated and apply styling based on valid or invalid state. The code below returns the correct element when the underlying field is a BigDecimal but intermittently returns the element from row zero and sometimes another rown when the field is a String. If I just reference a String vs. BigDecimal and display the element passed to the javascript I get form:myTable:4:myField for a BigDecimal field and always form:myTable:0:myField no matter the row for a String field. > {code} > > onvalid="valueModified(#{rich:element('vendor')}, true)"/> > > {code} > {code} > > {code} > Some other tests I did while trying to debug are: > * I passed the rowKeyVar to a javascript method in the onvalid event and it passed the correct row for a BigDecimal and always zero for a String field. > * The oncomplete event of the validator does not seem to fire for a String field but does for a BigDecimal field. -- 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 From issues at jboss.org Tue Feb 4 14:10:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 14:10:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12270) Allow RichFaces to bring new CSS/JS resources into the page after AJAX request In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12270?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12270: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Allow RichFaces to bring new CSS/JS resources into the page after AJAX request > ------------------------------------------------------------------------------ > > Key: RF-12270 > URL: https://issues.jboss.org/browse/RF-12270 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: core, resource handling > Affects Versions: 4.2.2.Final > Reporter: Tomasz Kurpios > Fix For: 5-Tracking > > Original Estimate: 2 days > Remaining Estimate: 2 days > > Quoting the extract from official documentation (3.5 Restrictions): > ??JSF 2 does not allow resources such as JavaScript or Cascading Style Sheets (CSS) to be added if the element requiring the resource is not initially present in the JSF tree. As such, components added to the tree via Ajax must have any required resources already loaded. In RichFaces, any components added to the JSF tree should have components with corresponding resources included on the main page initially. To facilitate this, components can use the rendered="false" setting to not be rendered on the page.?? > > Setting rendered="false" is OK when components are in the tree. However, if there are lots of components on a single view, for performance reasons some parts might be excluded by means of or tags. > That's at least what could be done in 3.3.3. It worked fine back then. However, the JSF2 AJAX mechanism does not support this feature. This makes usage of aforementioned tags impossible in some cases. -- 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 From issues at jboss.org Tue Feb 4 14:10:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 14:10:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11417) Tab: investigate why @action does not work In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11417?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11417: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Tab: investigate why @action does not work > ------------------------------------------ > > Key: RF-11417 > URL: https://issues.jboss.org/browse/RF-11417 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-panels-layout-themes > Affects Versions: 4.1.0.CR1 > Reporter: Luk?? Fry? > Fix For: 5-Tracking > > > Determine why rich:tab @action has not been implemented. > Verify that its implementation can't affect current applications (and try to find possible workaround). > Implement @action and @actionListener. -- 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 From issues at jboss.org Tue Feb 4 15:48:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:48:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12913) Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12913?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12913: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Use Grunt/Karma to run tests for RichFaces bridge and core JavaScripts > ---------------------------------------------------------------------- > > Key: RF-12913 > URL: https://issues.jboss.org/browse/RF-12913 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: tests - functional > Reporter: Luk?? Fry? > Fix For: 5-Tracking > > > There is Arquillian QUnit extension [1] for running QUnit tests. > Use this extension to replace currenct HtmlUnit based runner. > Communicate with the author to make it work and report any requests for enhancements. > [1] https://github.com/qa/arquillian-qunit/ -- 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 From issues at jboss.org Tue Feb 4 15:48:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:48:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12977) a4j:queue breaks tabPanel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12977?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12977: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > a4j:queue breaks tabPanel > ------------------------- > > Key: RF-12977 > URL: https://issues.jboss.org/browse/RF-12977 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-output > Affects Versions: 4.3.2, 5.0.0.Alpha2 > Environment: This happens in RF 4.3.2.CR1, but I can't select such version in JIRA. > Reporter: Bernard Labno > Priority: Critical > Fix For: 5-Tracking > > > There is clearly a bug in tabPanel.js > {code} > execAjax : function (oldPanel, newPanel) { > var options = $.extend({}, newPanel.getTogglePanel().options["ajax"], {}); > this.__setActiveItem(newPanel); > rf.ajax(newPanel.id, null, options); > if (oldPanel) { // HERE IS THE BUG > this.__setActiveItem(oldPanel); > } > return false; > }, > {code} > If the tab panel works in ajax mode and we attach a4j:queue with requestDelay="1000" then rf.ajax... will just add request to queue, but meanwhile the active item will be changed to old value. -- 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 From issues at jboss.org Tue Feb 4 15:50:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:50:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13018) a4j:commandButton wrong actions performed In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13018?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13018: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > a4j:commandButton wrong actions performed > ----------------------------------------- > > Key: RF-13018 > URL: https://issues.jboss.org/browse/RF-13018 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-a4j-core > Affects Versions: 4.2.3.Final, 4.3.2 > Environment: Server: Fedora 17, Jboss AS 7.1.1.Final, Jboss EAP 6.1.0.Beta, Java 1.7.0_15 > Browsers: Chrome 26 and Chrome 27 on (Linux & Windows 7), Firefox 20.0 (Linux & Windows 7), IE 9 > Reporter: Rob Hare > Assignee: Brian Leathem > Fix For: 5-Tracking > > Attachments: RF-13018.zip > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > When an a4j commponent (a4j:commandButton, a4j:jsFunction) is activated, actions of other a4j:commandButtons on the page with type=button will be fired. > For example, pressing either button in the following code will cause both richBean.function1() and richBean.function2() actions. > {noformat} > > action="#{richBean.function1}" /> > action="#{richBean.function2}" /> > > {noformat} > Note, if one of the a4j:commandButton is marked immediate, then only one action (possibly the wrong action) will be performed and block others. For instance if an a4j:jsFunction action was being triggered, the a4j:commandButton action may occur making appear that the a4j:jsFunction failed. -- 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 From issues at jboss.org Tue Feb 4 15:50:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:50:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13081) Facets "disabled" not working for dataScroller In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13081: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Facets "disabled" not working for dataScroller > ---------------------------------------------- > > Key: RF-13081 > URL: https://issues.jboss.org/browse/RF-13081 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.1 > Reporter: Laurent Grangier > Fix For: 5-Tracking > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > All the facets which end with "disabled" (like "first_disabled", "previous_disabled", etc.) are not working for the component "rich:dataScroller". > According to the [documentation|http://docs.jboss.org/richfaces/latest_4_3_X/Component_Reference/en-US/html/chap-Component_Reference-Tables_and_grids.html#sect-Component_Reference-richdataScroller-Appearance_and_interactivity], they should be available. > Example: > {code} > > > > {code} -- 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 From issues at jboss.org Tue Feb 4 15:52:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:52:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13096) focus: component loses focus on every second request when placed in Accordion, CollapsiblePanel or TabPanel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13096?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13096: ------------------------------- Fix Version/s: 5-Tracking > focus: component loses focus on every second request when placed in Accordion, CollapsiblePanel or TabPanel > ----------------------------------------------------------------------------------------------------------- > > Key: RF-13096 > URL: https://issues.jboss.org/browse/RF-13096 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-misc > Affects Versions: 4.3.0.Final, 4.3.3 > Environment: RichFaces 4.3.0.Final > Metamer 4.3.0.20130130-Final > JBoss AS 7.1.1.Final > OpenJDK Runtime Environment 1.7.0_03-mockbuild_2013_06_05_13_14-b00 @ Linux > Firefox 21.0 @ Linux x86_64 > Reporter: Ji?? ?tefek > Fix For: 5.0.0.Alpha4, 5-Tracking > > > Works with RF5. > Stack: > {code} > 10:03:49,118 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-11) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:70) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Tue Feb 4 15:52:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:52:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13121) Investigate using require.js to load widget sources In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13121?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13121: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Investigate using require.js to load widget sources > --------------------------------------------------- > > Key: RF-13121 > URL: https://issues.jboss.org/browse/RF-13121 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Affects Versions: 5.0.0.Alpha1 > Reporter: Luk?? Fry? > Fix For: 5-Tracking > > > require.js would allows us: > * straight-forward dependency loading > * ad-hoc script loading > * modular minification (r.js) and dependency inspection -- 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 From issues at jboss.org Tue Feb 4 15:52:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:52:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13096) focus: component loses focus on every second request when placed in Accordion, CollapsiblePanel or TabPanel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13096?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13096: ------------------------------- Fix Version/s: (was: 5.0.0.Alpha4) > focus: component loses focus on every second request when placed in Accordion, CollapsiblePanel or TabPanel > ----------------------------------------------------------------------------------------------------------- > > Key: RF-13096 > URL: https://issues.jboss.org/browse/RF-13096 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-misc > Affects Versions: 4.3.0.Final, 4.3.3 > Environment: RichFaces 4.3.0.Final > Metamer 4.3.0.20130130-Final > JBoss AS 7.1.1.Final > OpenJDK Runtime Environment 1.7.0_03-mockbuild_2013_06_05_13_14-b00 @ Linux > Firefox 21.0 @ Linux x86_64 > Reporter: Ji?? ?tefek > Fix For: 5-Tracking > > > Works with RF5. > Stack: > {code} > 10:03:49,118 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-11) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:70) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.3.Final.jar:4.3.3.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.3.Final.jar:4.3.3.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Tue Feb 4 15:52:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:52:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13178) RichFaces CDI Push fails with NoSuchElementException in OWB In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13178?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13178: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > RichFaces CDI Push fails with NoSuchElementException in OWB > ----------------------------------------------------------- > > Key: RF-13178 > URL: https://issues.jboss.org/browse/RF-13178 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-push/poll > Affects Versions: 4.3.3 > Environment: Tomee 1.5.2 (Apache Tomcat (TomEE)/7.0.37)) > Reporter: Brian Leathem > Labels: cdi, cdi11, owb > Fix For: 5-Tracking > > > RichFaces push fails with a NoSuchElementException: > {code} > SEVERE: Servlet.service() for servlet [FacesServlet] in context with path [] threw exception [javax.el.ELException: java.util.NoSuchElementException] with root cause > java.util.NoSuchElementException > at java.util.HashMap$HashIterator.nextEntry(HashMap.java:897) > at java.util.HashMap$KeyIterator.next(HashMap.java:928) > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.getBeanReference(PushCDIExtension.java:172) > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(PushCDIExtension.java:140) > at org.apache.webbeans.event.NotificationManager.fireEvent(NotificationManager.java:429) > at org.apache.webbeans.container.BeanManagerImpl.fireEvent(BeanManagerImpl.java:484) > at org.apache.webbeans.event.EventImpl.fire(EventImpl.java:75) > at ca.bleathem.sample.PushCdiBean.sendMessage(PushCdiBean.java:31) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.apache.webbeans.intercept.InterceptorHandler.invoke(InterceptorHandler.java:322) > at org.apache.webbeans.intercept.NormalScopedBeanInterceptorHandler.invoke(NormalScopedBeanInterceptorHandler.java:117) > at org.apache.webbeans.intercept.NormalScopedBeanInterceptorHandler.invoke(NormalScopedBeanInterceptorHandler.java:108) > at ca.bleathem.sample.PushCdiBean_$$_javassist_2.sendMessage(PushCdiBean_$$_javassist_2.java) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at org.apache.el.parser.AstValue.invoke(AstValue.java:278) > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:274) > at org.apache.myfaces.view.facelets.el.ContextAwareTagMethodExpression.invoke(ContextAwareTagMethodExpression.java:96) > at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:68) > at javax.faces.component.UICommand.broadcast(UICommand.java:120) > at javax.faces.component.UIViewRoot._broadcastAll(UIViewRoot.java:1028) > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:286) > at javax.faces.component.UIViewRoot._process(UIViewRoot.java:1375) > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:752) > at org.apache.myfaces.lifecycle.InvokeApplicationExecutor.execute(InvokeApplicationExecutor.java:38) > at org.apache.myfaces.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:170) > at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:117) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.tomee.catalina.OpenEJBValve.invoke(OpenEJBValve.java:45) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:936) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1004) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) > at java.lang.Thread.run(Thread.java:722) > {code} -- 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 From issues at jboss.org Tue Feb 4 15:52:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:52:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13201) Support for adding faces-config.xml with correct version dynamically in framework tests deplyment In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13201?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13201: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Support for adding faces-config.xml with correct version dynamically in framework tests deplyment > ------------------------------------------------------------------------------------------------- > > Key: RF-13201 > URL: https://issues.jboss.org/browse/RF-13201 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha1 > Reporter: Juraj H?ska > Fix For: 5-Tracking > > > Currently, {{faces-config}} with version 2.0 is added to the all wars generated by framework all tests. See [this|https://github.com/richfaces/richfaces/blob/master/build/build-resources/src/main/java/org/richfaces/deployment/Deployment.java#L87]. > Should not we allow to add this version dynamically to enable JSF 2.1 and 2.2. versions ? I am not aware of any problem which can be caused by this unmatched versions, but we can prevent future errors. -- 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 From issues at jboss.org Tue Feb 4 15:52:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:52:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13328) Investigate and impose consistent change event behaviour for all components In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13328?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13328: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Investigate and impose consistent change event behaviour for all components > --------------------------------------------------------------------------- > > Key: RF-13328 > URL: https://issues.jboss.org/browse/RF-13328 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component > Reporter: Brian Leathem > Fix For: 5-Tracking > > -- 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 From issues at jboss.org Tue Feb 4 15:54:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:54:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13421) Input number slider/spinner: attribute render on nested r:ajax doesn't work in repeating panels In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13421?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13421: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Input number slider/spinner: attribute render on nested r:ajax doesn't work in repeating panels > ----------------------------------------------------------------------------------------------- > > Key: RF-13421 > URL: https://issues.jboss.org/browse/RF-13421 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-a4j-core, component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0.Alpha2 > Metamer 5.0.0.Alpha2 > EAP 6.1.1, JBoss AS 7.1.1 > Mojarra 2.1.19, 2.1.7 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64, Firefox 17/21/24 > Reporter: Pavol Pitonak > Fix For: 5-Tracking > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/richInputNumberSlider/simple.xhtml?templates=richDataGrid > # open developer tools in browser > # change value on slider > result: > * output below slider is not updated > * there is the same problem with spinner > reason: > * output's span element has id form:containerRichDataGrid:3:output > * response to Ajax requests contains different ID > {code} > form:containerRichDataGrid:0:output > {code} -- 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 From issues at jboss.org Tue Feb 4 15:54:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:54:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13423) Slider: value change listener doesn't work when component is inside collapsible sub table In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13423?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13423: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > Slider: value change listener doesn't work when component is inside collapsible sub table > ----------------------------------------------------------------------------------------- > > Key: RF-13423 > URL: https://issues.jboss.org/browse/RF-13423 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, regression > Affects Versions: 5.0.0.Alpha2 > Environment: RichFaces 5.0.0.Alpha2 > Metamer 5.0.0.Alpha2 > EAP 6.1.1, JBoss AS 7.1.1 > Mojarra 2.1.19, 2.1.7 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 31.0.1650.57 @ Linux x86_64, Firefox 17/21 > Reporter: Pavol Pitonak > Fix For: 5-Tracking > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/richInputNumberSlider/simple.xhtml?templates=richCollapsibleSubTable > # change value on slider > result: > * value change listener is not called, there should be similar output in page's header among phases > {code} > * 1 value changed: 2 -> -2 > {code} -- 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 From issues at jboss.org Tue Feb 4 15:54:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:54:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13445) extendedDataTable: Sort icons and 'column move' icon gone In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13445?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13445: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > extendedDataTable: Sort icons and 'column move' icon gone > --------------------------------------------------------- > > Key: RF-13445 > URL: https://issues.jboss.org/browse/RF-13445 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: resource handling > Affects Versions: 5.0.0.Alpha2 > Reporter: Michael Abele > Labels: regression > Fix For: 5-Tracking > > > Please check extendedDataTable Demo: > http://showcase5-richfaces.rhcloud.com/richfaces/component-sample.jsf?demo=extendedDataTable&skin=blueSky > - Built-In Sorting: Icons for sort direction are gone > - Basic usage: If you drop a column the little blue arrow showing the new column position is gone -- 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 From issues at jboss.org Tue Feb 4 15:56:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 15:56:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13456) The toggle panel components should allow the user to prevent rendering the active tab when the tab header is clicked. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13456?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13456: ------------------------------- Fix Version/s: 5-Tracking (was: 5.0.0.Alpha4) > The toggle panel components should allow the user to prevent rendering the active tab when the tab header is clicked. > --------------------------------------------------------------------------------------------------------------------- > > Key: RF-13456 > URL: https://issues.jboss.org/browse/RF-13456 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: component-output > Reporter: Brian Leathem > Fix For: 5-Tracking > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > The TogglePanelRenderer currently implicitly adds the tabPanel at active metacomponent to the list of rendered ids when a tab panel is clicked. > See: > https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/org/richfaces/ui/toggle/togglePanel/TogglePanelRenderer.java#L83 > {code} > PartialViewContext pvc = context.getPartialViewContext(); > pvc.getRenderIds().add(component.getClientId(context) + MetaComponentResolver.META_COMPONENT_SEPARATOR_CHAR + AbstractTogglePanel.ACTIVE_ITEM_META_COMPONENT); > {code} > Rather than adding the meta component id like this, the meta component id should be treated as the default value of the toggle panel's render attribute. specifying a value for the render attribute would override this default value, and require the user to explicitly call for a render of the active item by adding the meta component id to the render attribute. -- 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 From issues at jboss.org Tue Feb 4 16:30:28 2014 From: issues at jboss.org (Daniele Benegiamo (JIRA)) Date: Tue, 4 Feb 2014 16:30:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13534) a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" In-Reply-To: References: Message-ID: Daniele Benegiamo created RF-13534: -------------------------------------- Summary: a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" Key: RF-13534 URL: https://issues.jboss.org/browse/RF-13534 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.3.5 Environment: Glassfish 4.0, Mac OS X 10.9.1, Java(TM) SE Runtime Environment (build 1.7.0_21-b12), Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode) Reporter: Daniele Benegiamo On GF4.0 any attempt to use {{}} raises the same exception ("{{java.io.InvalidClassException: Unauthorized deserialisation attempt}}"). Everything works nicely with the old RichFaces 4.1.0. Below you can find a stack trace, a sample page and a sample managed bean as minimum reproducible test case. To keep the test case short, the sample doesn't uses the {{value}} attribute, but exceptions are raised also when using it (e.g. passing a simple {{java.lang.String}}). >From a first quick analysis seems that: * basic types (as {{java.lang.String}}) are not properly detected as "de-serializable"; * types implementing {{Serializable}} or {{SerializableResource}} interfaces are impossible to instantiate by {{LookAheadObjectInputStream}} (row 118 - {{Class.forName()}} call in {{isClassValid()}} method - raises a {{ClassNotFoundException}} exception). {code:title=Exception} SEVERE: Input error for deserialize data java.io.InvalidClassException: Unauthorized deserialization attempt; org.jboss.weld.util.el.ForwardingMethodExpression at org.richfaces.util.LookAheadObjectInputStream.resolveClass(LookAheadObjectInputStream.java:105) at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610) at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1620) at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) at com.sun.faces.facelets.el.TagMethodExpression.readExternal(TagMethodExpression.java:158) at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1835) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1794) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1989) at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1913) at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1796) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1704) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1342) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) at org.richfaces.util.Util.decodeObjectData(Util.java:237) at org.richfaces.resource.DefaultCodecResourceRequestData.getData(DefaultCodecResourceRequestData.java:97) at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:337) at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:156) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) at java.lang.Thread.run(Thread.java:722) WARNING: StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception java.lang.NullPointerException at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.java:62) at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:229) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) at java.lang.Thread.run(Thread.java:722) {code} {code:xml|title=index.xhtml} Page title {code} {code:java|title=MyBean.java} package org.example; import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.IOException; import javax.enterprise.context.RequestScoped; import javax.imageio.ImageIO; import javax.inject.Named; @Named @RequestScoped public class MyBean { public void myCreateContent (java.io.OutputStream output, java.lang.Object input) throws IOException { BufferedImage img = new BufferedImage (400, 200, BufferedImage.TYPE_INT_RGB); Graphics2D graphics2D = img.createGraphics (); graphics2D.setBackground (Color.BLACK); graphics2D.setColor (Color.WHITE); graphics2D.clearRect (0, 0, img.getWidth (), img.getHeight ()); graphics2D.setFont (new Font ("Arial", Font.PLAIN, 12)); graphics2D.drawString ("String", 20, 35); ImageIO.write (img, "png", output); } } {code} -- 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 From issues at jboss.org Tue Feb 4 17:38:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 17:38:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12901) Showcase improvements for RF5 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12901?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12901: ------------------------------- Fix Version/s: 5.0.0.Alpha4 (was: 5-Tracking) > Showcase improvements for RF5 > ----------------------------- > > Key: RF-12901 > URL: https://issues.jboss.org/browse/RF-12901 > Project: RichFaces > Issue Type: Epic > Security Level: Public(Everyone can see) > Components: showcase > Reporter: Brian Leathem > Fix For: 5.0.0.Alpha4 > > -- 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 From issues at jboss.org Tue Feb 4 17:40:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 17:40:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12901) Showcase improvements for RF5 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12901?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12901: ------------------------------- Assignee: Luk?? Macko > Showcase improvements for RF5 > ----------------------------- > > Key: RF-12901 > URL: https://issues.jboss.org/browse/RF-12901 > Project: RichFaces > Issue Type: Epic > Security Level: Public(Everyone can see) > Components: showcase > Reporter: Brian Leathem > Assignee: Luk?? Macko > Fix For: 5.0.0.Alpha4 > > -- 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 From issues at jboss.org Tue Feb 4 17:40:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 17:40:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12901) Showcase improvements for RF5 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12901?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941352#comment-12941352 ] Brian Leathem commented on RF-12901: ------------------------------------ Let's proceed with the showcase re-write, then we can cancel these associated issues as out-of-date. > Showcase improvements for RF5 > ----------------------------- > > Key: RF-12901 > URL: https://issues.jboss.org/browse/RF-12901 > Project: RichFaces > Issue Type: Epic > Security Level: Public(Everyone can see) > Components: showcase > Reporter: Brian Leathem > Assignee: Luk?? Macko > Fix For: 5.0.0.Alpha4 > > -- 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 From issues at jboss.org Tue Feb 4 18:06:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 18:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13080) Support for JSF 2.2 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13080?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13080. -------------------------------- Assignee: Luk?? Fry? Fix Version/s: 5.0.0.Alpha3 (was: 5-Tracking) Resolution: Done > Support for JSF 2.2 > ------------------- > > Key: RF-13080 > URL: https://issues.jboss.org/browse/RF-13080 > Project: RichFaces > Issue Type: Epic > Security Level: Public(Everyone can see) > Reporter: Brian Leathem > Assignee: Luk?? Fry? > Labels: jsf22 > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Tue Feb 4 18:10:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 18:10:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13514) Support file upload progress tracking in Servlets >= 3.0 environment In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13514?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13514: ------------------------------- Sprint: 5.0.0.Alpha4 - Sprint 1 > Support file upload progress tracking in Servlets >= 3.0 environment > -------------------------------------------------------------------- > > Key: RF-13514 > URL: https://issues.jboss.org/browse/RF-13514 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: component-input, core > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > We currently support two approaches for file upload: > * Servlets 2.5: own request form data parser [{{MultipartRequestParser}}|https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/org/richfaces/request/MultipartRequestParser.java] > * Servlets 3.0: leveraging {{HttpServletRequest#getParts()}} > However as we have discussed RF-13444, we had to finally do a trade-off of limiting support of file progress tracking. I.e. in Servlets 3.0 we have no simple way how to track file upload progress since getParts() returns data for completed request. > There are several possible outcomes: > 1) drop server-side file upload progress tracking and leverage XHR2/HTML5 that has built-in ability to track progress > * imho we are already prepared to switch to XHR2 and client-side progress (possibly leveraging some third-party widget) since [all major browsers support it at least one version back|http://caniuse.com/#feat=xhr2] > * existing implementation: http://www.script-tutorials.com/pure-html5-file-upload/ > 2) use a {{ServletFilter}} to wrap a request as our {{FileUploadFacesContextFactory}} currently do and so have an earlier access to the request object > * this principle has a drawback - we have to ensure our filter has high-enough priority so the servlet container won't touch the request body yet -- 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 From issues at jboss.org Tue Feb 4 18:12:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 18:12:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13514) Support file upload progress tracking in Servlets >= 3.0 environment In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13514?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13514: ---------------------------------- Assignee: Michal Petrov > Support file upload progress tracking in Servlets >= 3.0 environment > -------------------------------------------------------------------- > > Key: RF-13514 > URL: https://issues.jboss.org/browse/RF-13514 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: component-input, core > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Michal Petrov > Fix For: 5.0.0.Alpha4 > > > We currently support two approaches for file upload: > * Servlets 2.5: own request form data parser [{{MultipartRequestParser}}|https://github.com/richfaces/richfaces/blob/master/framework/src/main/java/org/richfaces/request/MultipartRequestParser.java] > * Servlets 3.0: leveraging {{HttpServletRequest#getParts()}} > However as we have discussed RF-13444, we had to finally do a trade-off of limiting support of file progress tracking. I.e. in Servlets 3.0 we have no simple way how to track file upload progress since getParts() returns data for completed request. > There are several possible outcomes: > 1) drop server-side file upload progress tracking and leverage XHR2/HTML5 that has built-in ability to track progress > * imho we are already prepared to switch to XHR2 and client-side progress (possibly leveraging some third-party widget) since [all major browsers support it at least one version back|http://caniuse.com/#feat=xhr2] > * existing implementation: http://www.script-tutorials.com/pure-html5-file-upload/ > 2) use a {{ServletFilter}} to wrap a request as our {{FileUploadFacesContextFactory}} currently do and so have an earlier access to the request object > * this principle has a drawback - we have to ensure our filter has high-enough priority so the servlet container won't touch the request body yet -- 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 From issues at jboss.org Tue Feb 4 18:12:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 18:12:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11453) Add autocomplete functionality to the rich:select component In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11453: ------------------------------- Fix Version/s: 5.0.0.Alpha4 (was: 5-Tracking) > Add autocomplete functionality to the rich:select component > ----------------------------------------------------------- > > Key: RF-11453 > URL: https://issues.jboss.org/browse/RF-11453 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-selects > Reporter: Cody Lerum > Assignee: Brian Leathem > Fix For: 5.0.0.Alpha4 > > > Add an "autocompleteMethod" to rich:select -- 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 From issues at jboss.org Tue Feb 4 18:12:30 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 18:12:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11453) Add autocomplete functionality to the rich:select component In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11453: ------------------------------- Assignee: Luk?? Fry? (was: Brian Leathem) > Add autocomplete functionality to the rich:select component > ----------------------------------------------------------- > > Key: RF-11453 > URL: https://issues.jboss.org/browse/RF-11453 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-selects > Reporter: Cody Lerum > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > Add an "autocompleteMethod" to rich:select -- 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 From issues at jboss.org Tue Feb 4 18:14:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 4 Feb 2014 18:14:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11453) Add autocomplete functionality to the rich:select component In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-11453: ------------------------------- Sprint: 5.0.0.Alpha4 - Sprint 1 > Add autocomplete functionality to the rich:select component > ----------------------------------------------------------- > > Key: RF-11453 > URL: https://issues.jboss.org/browse/RF-11453 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-selects > Reporter: Cody Lerum > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > Add an "autocompleteMethod" to rich:select -- 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 From issues at jboss.org Wed Feb 5 01:54:28 2014 From: issues at jboss.org (Tobias Seppenhauser (JIRA)) Date: Wed, 5 Feb 2014 01:54:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13397?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941372#comment-12941372 ] Tobias Seppenhauser commented on RF-13397: ------------------------------------------ Of course, each time I reload the page fully the UUID gets updated. But without a manual reload its doesn't. Strange.. > a4j:push not working with Internet Explorer >= 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Luk?? Fry? > Labels: needs-qe > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > The mechanism seems to be broken when using the Internet Explorer 10 or above. This can easily be verified by visiting the corresponding showcase component [1]. The UUID never gets updated. > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=push&skin=blueSky -- 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 From issues at jboss.org Wed Feb 5 05:00:29 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 5 Feb 2014 05:00:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13263) RichFocus does not set focus properly in some templates In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13263?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13263: ------------------------------- Steps to Reproduce: 1) Start JBoss AS 7.1 2) Deploy Metamer 3) Go to [this|http://localhost:8080/metamer/faces/components/richFocus/simple.xhtml] page and set template to RichAccordion 4) Fill in the name and age inputs and click the "AjaxValidate" button 5) See server console for exception, "Adress" field should now be focused but that does not happen. Same this happen in RichTabPanel and RichCollapsiblePanel. Alternative: Also after starting server you can simply run tests with this command from richfaces-qa/metamer/ftest folder: mvn clean verify -Pjbossas-remote-7-1 -Dtest=richFocus.TestSimple#testValidationAwareTrue -Dtemplates=* mvn clean verify -Pjbossas-remote-7-1 -Dtest=richFocus.TestSimple#testValidationAwareFalse -Dtemplates=* was: 1) Start JBoss AS 7.1 2) Deploy Metamer 3) Go to [this|http://localhost:8080/metamer/faces/components/richFocus/simple.xhtml] page and set template to RichAccordion 4) Fill in the name and age inputs and click the "AjaxValidate" button 5) See server console for exception, "Adress" field should now be focused but that does not happen. Same this happen in RichTabPanel and RichCollapsiblePanel. Alternative: Also after starting server you can simply run tests with this command from richfaces-qa/metamer/ftest folder: mvn clean verify -Pjbossas-remote-7-1 -Dtest=richFocus.TestSimple#testValidationAwareTrue -Dtemplates=* > RichFocus does not set focus properly in some templates > ------------------------------------------------------- > > Key: RF-13263 > URL: https://issues.jboss.org/browse/RF-13263 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: RichFaces 4.3.4.Final > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.1.1.Final > JBoss AS 7.1.1.Final > Java(TM) SE Runtime Environment 1.7.0_25-b15 @ Linux > Firefox 24.0 @ Linux x86_64 > Reporter: Matej Novotny > Fix For: 5-Tracking > > > Rich Focus Component does not set focus properly after validating inputs. > Does not work with validationAware attribute false as well (which should change focused component after validation). > This only happens in the following templates - richAccordion, richCollapsiblePanel, richTabPanel. > Here is the exception thrown after following "Steps to reproduce": > {code} > 14:06:21,629 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-1) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:71) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Wed Feb 5 05:00:29 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 5 Feb 2014 05:00:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13263) RichFocus does not set focus properly in some templates In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941421#comment-12941421 ] Pavol Pitonak commented on RF-13263: ------------------------------------ Works fine in RichFaces 5.0.0-SNAPSHOT. > RichFocus does not set focus properly in some templates > ------------------------------------------------------- > > Key: RF-13263 > URL: https://issues.jboss.org/browse/RF-13263 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: RichFaces 4.3.4.Final > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.1.1.Final > JBoss AS 7.1.1.Final > Java(TM) SE Runtime Environment 1.7.0_25-b15 @ Linux > Firefox 24.0 @ Linux x86_64 > Reporter: Matej Novotny > Fix For: 5-Tracking > > > Rich Focus Component does not set focus properly after validating inputs. > Does not work with validationAware attribute false as well (which should change focused component after validation). > This only happens in the following templates - richAccordion, richCollapsiblePanel, richTabPanel. > Here is the exception thrown after following "Steps to reproduce": > {code} > 14:06:21,629 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-1) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:71) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Wed Feb 5 05:06:28 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 5 Feb 2014 05:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13263) RichFocus does not set focus properly in some templates In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13263?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13263: ------------------------------- Affects Version/s: 4.5.0.Alpha2 > RichFocus does not set focus properly in some templates > ------------------------------------------------------- > > Key: RF-13263 > URL: https://issues.jboss.org/browse/RF-13263 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.5.0.Alpha2 > Environment: RichFaces 4.3.4.Final > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.1.1.Final > JBoss AS 7.1.1.Final > Java(TM) SE Runtime Environment 1.7.0_25-b15 @ Linux > Firefox 24.0 @ Linux x86_64 > Reporter: Matej Novotny > Fix For: 5-Tracking > > > Rich Focus Component does not set focus properly after validating inputs. > Does not work with validationAware attribute false as well (which should change focused component after validation). > This only happens in the following templates - richAccordion, richCollapsiblePanel, richTabPanel. > Here is the exception thrown after following "Steps to reproduce": > {code} > 14:06:21,629 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-1) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:71) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Wed Feb 5 05:18:35 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 5 Feb 2014 05:18:35 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13397?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941431#comment-12941431 ] Luk?? Fry? commented on RF-13397: --------------------------------- I have tried on a [second sample - CDI Push|http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=push&sample=pushCdi&skin=blueSky]. I didn't meant to use full-page reload for refreshing UUID, but rather a mean to force browser to load all resources from scratch without leveraging cache. > a4j:push not working with Internet Explorer >= 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Luk?? Fry? > Labels: needs-qe > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > The mechanism seems to be broken when using the Internet Explorer 10 or above. This can easily be verified by visiting the corresponding showcase component [1]. The UUID never gets updated. > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=push&skin=blueSky -- 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 From issues at jboss.org Wed Feb 5 05:22:29 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 5 Feb 2014 05:22:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13263) RichFocus does not set focus properly in some templates In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941421#comment-12941421 ] Pavol Pitonak edited comment on RF-13263 at 2/5/14 5:21 AM: ------------------------------------------------------------ 5.0.0-SNAPSHOT: * both validationAware=true and false work 4.5.0-SNAPSHOT: * validationAware=true works * validationAware=false doesn't work inside accordion, collapsiblePanel and tabPanel 4.3.5.Final: * both validationAware=true and false don't work was (Author: ppitonak): Works fine in RichFaces 5.0.0-SNAPSHOT. > RichFocus does not set focus properly in some templates > ------------------------------------------------------- > > Key: RF-13263 > URL: https://issues.jboss.org/browse/RF-13263 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.5.0.Alpha2 > Environment: RichFaces 4.3.4.Final > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.1.1.Final > JBoss AS 7.1.1.Final > Java(TM) SE Runtime Environment 1.7.0_25-b15 @ Linux > Firefox 24.0 @ Linux x86_64 > Reporter: Matej Novotny > Fix For: 5-Tracking > > > Rich Focus Component does not set focus properly after validating inputs. > Does not work with validationAware attribute false as well (which should change focused component after validation). > This only happens in the following templates - richAccordion, richCollapsiblePanel, richTabPanel. > Here is the exception thrown after following "Steps to reproduce": > {code} > 14:06:21,629 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-1) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:71) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Wed Feb 5 07:10:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Wed, 5 Feb 2014 07:10:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek updated RF-13531: ----------------------------- Affects Version/s: 4.5.0.Alpha2 > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Labels: IE11 > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Wed Feb 5 08:02:29 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Wed, 5 Feb 2014 08:02:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13527) File upload: ajax-rendered panel not updated after uploading file In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13527?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek updated RF-13527: ----------------------------- Affects Version/s: 4.5.0.Alpha2 > File upload: ajax-rendered panel not updated after uploading file > ----------------------------------------------------------------- > > Key: RF-13527 > URL: https://issues.jboss.org/browse/RF-13527 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, regression > Affects Versions: 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: RichFaces 5.0.0-SNAPSHOT, 5.0.0.Alpha3 > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19-jbossorg-1 > EAP 6.2 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 32.0.1700.102 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha4 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml > # notice time in top-right corner above phases list > # upload a small file > result: > * expected: content of outputPanel with ajaxRendered=true should be updated > * actual: there is the same time in the panel > * it's a regression, it is updated correctly in 5.0.0.Alpha2 -- 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 From issues at jboss.org Wed Feb 5 09:04:29 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Wed, 5 Feb 2014 09:04:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13527) File upload: ajax-rendered panel not updated after uploading file In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13527?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941513#comment-12941513 ] Ji?? ?tefek commented on RF-13527: ---------------------------------- It works on Tomcat {color:red}with JSF 2.2.4{color} (version managed by RF). > File upload: ajax-rendered panel not updated after uploading file > ----------------------------------------------------------------- > > Key: RF-13527 > URL: https://issues.jboss.org/browse/RF-13527 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, regression > Affects Versions: 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: RichFaces 5.0.0-SNAPSHOT, 5.0.0.Alpha3 > Metamer 5.0.0-SNAPSHOT > Mojarra 2.1.19-jbossorg-1 > EAP 6.2 > Java(TM) SE Runtime Environment 1.7.0_04-b20 @ Linux > Chrome 32.0.1700.102 @ Linux x86_64 > Reporter: Pavol Pitonak > Fix For: 5.0.0.Alpha4 > > > # deploy Metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml > # notice time in top-right corner above phases list > # upload a small file > result: > * expected: content of outputPanel with ajaxRendered=true should be updated > * actual: there is the same time in the panel > * it's a regression, it is updated correctly in 5.0.0.Alpha2 -- 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 From issues at jboss.org Wed Feb 5 09:32:29 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Wed, 5 Feb 2014 09:32:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13535) fileUpload: cannot upload multiple selected files when the sum of theirs size is bigger than request size limit In-Reply-To: References: Message-ID: Ji?? ?tefek created RF-13535: -------------------------------- Summary: fileUpload: cannot upload multiple selected files when the sum of theirs size is bigger than request size limit Key: RF-13535 URL: https://issues.jboss.org/browse/RF-13535 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 4.5.0.Alpha2, 5.0.0.Alpha3 Reporter: Ji?? ?tefek Attachments: 19KB.dat, 2KB.dat # deploy metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml # there is a limit of 20KB in Metamer. So, add two files: 19KB.dat + 2KB.dat in one step (multiple select) # upload ** have: File size is exceeded ** should upload all files NOTE: When adding both files with two single file additions, items are uploaded correctly. -- 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 From issues at jboss.org Wed Feb 5 09:32:29 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Wed, 5 Feb 2014 09:32:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13535) fileUpload: cannot upload multiple selected files when the sum of theirs size is bigger than request size limit In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13535?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek updated RF-13535: ----------------------------- Attachment: 19KB.dat 2KB.dat > fileUpload: cannot upload multiple selected files when the sum of theirs size is bigger than request size limit > --------------------------------------------------------------------------------------------------------------- > > Key: RF-13535 > URL: https://issues.jboss.org/browse/RF-13535 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.5.0.Alpha2, 5.0.0.Alpha3 > Reporter: Ji?? ?tefek > Attachments: 19KB.dat, 2KB.dat > > > # deploy metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml > # there is a limit of 20KB in Metamer. So, add two files: 19KB.dat + 2KB.dat in one step (multiple select) > # upload > ** have: File size is exceeded > ** should upload all files > NOTE: When adding both files with two single file additions, items are uploaded correctly. -- 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 From issues at jboss.org Wed Feb 5 09:58:30 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Wed, 5 Feb 2014 09:58:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13536) placeholder breaks r:select In-Reply-To: References: Message-ID: Ji?? ?tefek created RF-13536: -------------------------------- Summary: placeholder breaks r:select Key: RF-13536 URL: https://issues.jboss.org/browse/RF-13536 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-misc Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 Environment: Tried with Firefox and Chrome Reporter: Ji?? ?tefek When using placeholder with r:select: # no options are visible after click to select with placeholder (after third click in the input the options will show) # cannot delete the previously selected option -- 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 From issues at jboss.org Wed Feb 5 10:02:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Wed, 5 Feb 2014 10:02:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13535) fileUpload: cannot upload multiple selected files when the sum of theirs size is bigger than request size limit In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13535?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek updated RF-13535: ----------------------------- Description: # deploy metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml # there is a limit of 20KB in Metamer. So, add two files: 19KB.dat + 2KB.dat in one step (multiple select) # upload ** have: File size is exceeded ** expected: both files hould be uploaded NOTE: When adding both files with two single file additions, items are uploaded correctly. was: # deploy metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml # there is a limit of 20KB in Metamer. So, add two files: 19KB.dat + 2KB.dat in one step (multiple select) # upload ** have: File size is exceeded ** should upload all files NOTE: When adding both files with two single file additions, items are uploaded correctly. > fileUpload: cannot upload multiple selected files when the sum of theirs size is bigger than request size limit > --------------------------------------------------------------------------------------------------------------- > > Key: RF-13535 > URL: https://issues.jboss.org/browse/RF-13535 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.5.0.Alpha2, 5.0.0.Alpha3 > Reporter: Ji?? ?tefek > Attachments: 19KB.dat, 2KB.dat > > > # deploy metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml > # there is a limit of 20KB in Metamer. So, add two files: 19KB.dat + 2KB.dat in one step (multiple select) > # upload > ** have: File size is exceeded > ** expected: both files hould be uploaded > NOTE: When adding both files with two single file additions, items are uploaded correctly. -- 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 From issues at jboss.org Wed Feb 5 10:12:28 2014 From: issues at jboss.org (Tobias Seppenhauser (JIRA)) Date: Wed, 5 Feb 2014 10:12:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13397) a4j:push not working with Internet Explorer >= 10 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13397?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941552#comment-12941552 ] Tobias Seppenhauser commented on RF-13397: ------------------------------------------ You're right. The CDI Push example is working with IE11 and Firefox. My mistake. > a4j:push not working with Internet Explorer >= 10 > ------------------------------------------------- > > Key: RF-13397 > URL: https://issues.jboss.org/browse/RF-13397 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: showcase > Affects Versions: 4.3.4 > Environment: Any where Internet Explorer 10 or above is available > Reporter: Tobias Seppenhauser > Assignee: Luk?? Fry? > Labels: needs-qe > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > The mechanism seems to be broken when using the Internet Explorer 10 or above. This can easily be verified by visiting the corresponding showcase component [1]. The UUID never gets updated. > Unfortunately I can't see any error in the Javascript console. > [1] http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=push&skin=blueSky -- 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 From issues at jboss.org Wed Feb 5 10:24:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 5 Feb 2014 10:24:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13536) placeholder breaks r:select In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941560#comment-12941560 ] Brian Leathem commented on RF-13536: ------------------------------------ [~jstefek] is this a new test? Or is it a regression? > placeholder breaks r:select > --------------------------- > > Key: RF-13536 > URL: https://issues.jboss.org/browse/RF-13536 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-misc > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: Tried with Firefox and Chrome > Reporter: Ji?? ?tefek > > When using placeholder with r:select: > # no options are visible after click to select with placeholder (after third click in the input the options will show) > # cannot delete the previously selected option -- 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 From issues at jboss.org Wed Feb 5 10:26:38 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 5 Feb 2014 10:26:38 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13535) fileUpload: cannot upload multiple selected files when the sum of theirs size is bigger than request size limit In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13535?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13535: ------------------------------- Fix Version/s: 5.0.0.Alpha4 > fileUpload: cannot upload multiple selected files when the sum of theirs size is bigger than request size limit > --------------------------------------------------------------------------------------------------------------- > > Key: RF-13535 > URL: https://issues.jboss.org/browse/RF-13535 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.5.0.Alpha2, 5.0.0.Alpha3 > Reporter: Ji?? ?tefek > Fix For: 5.0.0.Alpha4 > > Attachments: 19KB.dat, 2KB.dat > > > # deploy metamer and open http://localhost:8080/metamer/faces/components/richFileUpload/simple.xhtml > # there is a limit of 20KB in Metamer. So, add two files: 19KB.dat + 2KB.dat in one step (multiple select) > # upload > ** have: File size is exceeded > ** expected: both files hould be uploaded > NOTE: When adding both files with two single file additions, items are uploaded correctly. -- 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 From issues at jboss.org Wed Feb 5 10:28:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 5 Feb 2014 10:28:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13534) a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13534?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-13534: ---------------------------------- Assignee: Pavol Pitonak QE please verify > a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" > -------------------------------------------------------------- > > Key: RF-13534 > URL: https://issues.jboss.org/browse/RF-13534 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Environment: Glassfish 4.0, Mac OS X 10.9.1, Java(TM) SE Runtime Environment (build 1.7.0_21-b12), Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode) > Reporter: Daniele Benegiamo > Assignee: Pavol Pitonak > > On GF4.0 any attempt to use {{}} raises the same exception ("{{java.io.InvalidClassException: Unauthorized deserialisation attempt}}"). Everything works nicely with the old RichFaces 4.1.0. > Below you can find a stack trace, a sample page and a sample managed bean as minimum reproducible test case. > To keep the test case short, the sample doesn't uses the {{value}} attribute, but exceptions are raised also when using it (e.g. passing a simple {{java.lang.String}}). > From a first quick analysis seems that: > * basic types (as {{java.lang.String}}) are not properly detected as "de-serializable"; > * types implementing {{Serializable}} or {{SerializableResource}} interfaces are impossible to instantiate by {{LookAheadObjectInputStream}} (row 118 - {{Class.forName()}} call in {{isClassValid()}} method - raises a {{ClassNotFoundException}} exception). > {code:title=Exception} > SEVERE: Input error for deserialize data > java.io.InvalidClassException: Unauthorized deserialization attempt; org.jboss.weld.util.el.ForwardingMethodExpression > at org.richfaces.util.LookAheadObjectInputStream.resolveClass(LookAheadObjectInputStream.java:105) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1620) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at com.sun.faces.facelets.el.TagMethodExpression.readExternal(TagMethodExpression.java:158) > at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1835) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1794) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1989) > at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1913) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1796) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1704) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1342) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at org.richfaces.util.Util.decodeObjectData(Util.java:237) > at org.richfaces.resource.DefaultCodecResourceRequestData.getData(DefaultCodecResourceRequestData.java:97) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:337) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:156) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > WARNING: StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception > java.lang.NullPointerException > at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.java:62) > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:229) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > {code} > {code:xml|title=index.xhtml} > > > xmlns:h="http://xmlns.jcp.org/jsf/html" > xmlns:a4j="http://richfaces.org/a4j"> > > Page title > > > > > > {code} > {code:java|title=MyBean.java} > package org.example; > import java.awt.Color; > import java.awt.Font; > import java.awt.Graphics2D; > import java.awt.image.BufferedImage; > import java.io.IOException; > import javax.enterprise.context.RequestScoped; > import javax.imageio.ImageIO; > import javax.inject.Named; > @Named > @RequestScoped > public class MyBean > { > public void myCreateContent (java.io.OutputStream output, java.lang.Object input) > throws IOException > { > BufferedImage img = new BufferedImage (400, 200, BufferedImage.TYPE_INT_RGB); > Graphics2D graphics2D = img.createGraphics (); > graphics2D.setBackground (Color.BLACK); > graphics2D.setColor (Color.WHITE); > graphics2D.clearRect (0, 0, img.getWidth (), img.getHeight ()); > graphics2D.setFont (new Font ("Arial", Font.PLAIN, 12)); > graphics2D.drawString ("String", 20, 35); > ImageIO.write (img, "png", output); > } > } > {code} -- 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 From issues at jboss.org Wed Feb 5 10:30:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 5 Feb 2014 10:30:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13263) RichFocus does not set focus properly in some templates In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941567#comment-12941567 ] Brian Leathem commented on RF-13263: ------------------------------------ [~ppitonak] is this a regression? > RichFocus does not set focus properly in some templates > ------------------------------------------------------- > > Key: RF-13263 > URL: https://issues.jboss.org/browse/RF-13263 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.5.0.Alpha2 > Environment: RichFaces 4.3.4.Final > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.1.1.Final > JBoss AS 7.1.1.Final > Java(TM) SE Runtime Environment 1.7.0_25-b15 @ Linux > Firefox 24.0 @ Linux x86_64 > Reporter: Matej Novotny > Fix For: 5-Tracking > > > Rich Focus Component does not set focus properly after validating inputs. > Does not work with validationAware attribute false as well (which should change focused component after validation). > This only happens in the following templates - richAccordion, richCollapsiblePanel, richTabPanel. > Here is the exception thrown after following "Steps to reproduce": > {code} > 14:06:21,629 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-1) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:71) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Thu Feb 6 02:52:28 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Thu, 6 Feb 2014 02:52:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13534) a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13534?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941721#comment-12941721 ] Pavol Pitonak commented on RF-13534: ------------------------------------ [~kafumanto], there is a small change needed in your bean: {code:java|title=MyBean.java} package org.example; ... import org.richfaces.resource.SerializableResource; @Named @RequestScoped public class MyBean implements SerializableResource { ... } {code} You can find more info in Brian's blog post: http://www.bleathem.ca/blog/2013/07/richfaces-CVE-2013-2165.html > a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" > -------------------------------------------------------------- > > Key: RF-13534 > URL: https://issues.jboss.org/browse/RF-13534 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Environment: Glassfish 4.0, Mac OS X 10.9.1, Java(TM) SE Runtime Environment (build 1.7.0_21-b12), Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode) > Reporter: Daniele Benegiamo > Assignee: Pavol Pitonak > > On GF4.0 any attempt to use {{}} raises the same exception ("{{java.io.InvalidClassException: Unauthorized deserialisation attempt}}"). Everything works nicely with the old RichFaces 4.1.0. > Below you can find a stack trace, a sample page and a sample managed bean as minimum reproducible test case. > To keep the test case short, the sample doesn't uses the {{value}} attribute, but exceptions are raised also when using it (e.g. passing a simple {{java.lang.String}}). > From a first quick analysis seems that: > * basic types (as {{java.lang.String}}) are not properly detected as "de-serializable"; > * types implementing {{Serializable}} or {{SerializableResource}} interfaces are impossible to instantiate by {{LookAheadObjectInputStream}} (row 118 - {{Class.forName()}} call in {{isClassValid()}} method - raises a {{ClassNotFoundException}} exception). > {code:title=Exception} > SEVERE: Input error for deserialize data > java.io.InvalidClassException: Unauthorized deserialization attempt; org.jboss.weld.util.el.ForwardingMethodExpression > at org.richfaces.util.LookAheadObjectInputStream.resolveClass(LookAheadObjectInputStream.java:105) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1620) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at com.sun.faces.facelets.el.TagMethodExpression.readExternal(TagMethodExpression.java:158) > at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1835) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1794) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1989) > at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1913) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1796) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1704) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1342) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at org.richfaces.util.Util.decodeObjectData(Util.java:237) > at org.richfaces.resource.DefaultCodecResourceRequestData.getData(DefaultCodecResourceRequestData.java:97) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:337) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:156) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > WARNING: StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception > java.lang.NullPointerException > at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.java:62) > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:229) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > {code} > {code:xml|title=index.xhtml} > > > xmlns:h="http://xmlns.jcp.org/jsf/html" > xmlns:a4j="http://richfaces.org/a4j"> > > Page title > > > > > > {code} > {code:java|title=MyBean.java} > package org.example; > import java.awt.Color; > import java.awt.Font; > import java.awt.Graphics2D; > import java.awt.image.BufferedImage; > import java.io.IOException; > import javax.enterprise.context.RequestScoped; > import javax.imageio.ImageIO; > import javax.inject.Named; > @Named > @RequestScoped > public class MyBean > { > public void myCreateContent (java.io.OutputStream output, java.lang.Object input) > throws IOException > { > BufferedImage img = new BufferedImage (400, 200, BufferedImage.TYPE_INT_RGB); > Graphics2D graphics2D = img.createGraphics (); > graphics2D.setBackground (Color.BLACK); > graphics2D.setColor (Color.WHITE); > graphics2D.clearRect (0, 0, img.getWidth (), img.getHeight ()); > graphics2D.setFont (new Font ("Arial", Font.PLAIN, 12)); > graphics2D.drawString ("String", 20, 35); > ImageIO.write (img, "png", output); > } > } > {code} -- 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 From issues at jboss.org Thu Feb 6 03:08:29 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Thu, 6 Feb 2014 03:08:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13263) RichFocus does not set focus properly in some templates In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941722#comment-12941722 ] Pavol Pitonak commented on RF-13263: ------------------------------------ [~manovotn], could you please find out if it is a regression? Focus was introduced in RichFaces 4.3.0.Final. > RichFocus does not set focus properly in some templates > ------------------------------------------------------- > > Key: RF-13263 > URL: https://issues.jboss.org/browse/RF-13263 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.5.0.Alpha2 > Environment: RichFaces 4.3.4.Final > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.1.1.Final > JBoss AS 7.1.1.Final > Java(TM) SE Runtime Environment 1.7.0_25-b15 @ Linux > Firefox 24.0 @ Linux x86_64 > Reporter: Matej Novotny > Fix For: 5-Tracking > > > Rich Focus Component does not set focus properly after validating inputs. > Does not work with validationAware attribute false as well (which should change focused component after validation). > This only happens in the following templates - richAccordion, richCollapsiblePanel, richTabPanel. > Here is the exception thrown after following "Steps to reproduce": > {code} > 14:06:21,629 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-1) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:71) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Thu Feb 6 04:14:29 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Thu, 6 Feb 2014 04:14:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13536) placeholder breaks r:select In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13536?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941763#comment-12941763 ] Ji?? ?tefek commented on RF-13536: ---------------------------------- Uncovered by manual testing. I can confirm it is not a regression. Tried with 4.3.2.CR1 (placeholder was added to metamer) and it didn't work. > placeholder breaks r:select > --------------------------- > > Key: RF-13536 > URL: https://issues.jboss.org/browse/RF-13536 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-misc > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: Tried with Firefox and Chrome > Reporter: Ji?? ?tefek > > When using placeholder with r:select: > # no options are visible after click to select with placeholder (after third click in the input the options will show) > # cannot delete the previously selected option -- 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 From issues at jboss.org Thu Feb 6 04:56:29 2014 From: issues at jboss.org (Matej Novotny (JIRA)) Date: Thu, 6 Feb 2014 04:56:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13263) RichFocus does not set focus properly in some templates In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12941774#comment-12941774 ] Matej Novotny commented on RF-13263: ------------------------------------ Firstly a note to Pavol's comment - I asked him and he tried running the tests while I tried it manually and found out slightly different results for RF 4: 4.3.5.Final * both validationAware=true and false don't work 4.5.0-SNAPSHOT * both validationAware=true and false don't work I tried this with RF 4.3.0.Final and also 4.5.0.Alpha1 and found out this is *not a regression*. As for RF 5, there are no problems. > RichFocus does not set focus properly in some templates > ------------------------------------------------------- > > Key: RF-13263 > URL: https://issues.jboss.org/browse/RF-13263 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.5.0.Alpha2 > Environment: RichFaces 4.3.4.Final > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.1.1.Final > JBoss AS 7.1.1.Final > Java(TM) SE Runtime Environment 1.7.0_25-b15 @ Linux > Firefox 24.0 @ Linux x86_64 > Reporter: Matej Novotny > Fix For: 5-Tracking > > > Rich Focus Component does not set focus properly after validating inputs. > Does not work with validationAware attribute false as well (which should change focused component after validation). > This only happens in the following templates - richAccordion, richCollapsiblePanel, richTabPanel. > Here is the exception thrown after following "Steps to reproduce": > {code} > 14:06:21,629 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-1) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:71) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Thu Feb 6 10:54:29 2014 From: issues at jboss.org (Shantanu Upadhyaya (JIRA)) Date: Thu, 6 Feb 2014 10:54:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-1107) Scrollable dataTable. Header scrolled badly on TAB button. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-1107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12942308#comment-12942308 ] Shantanu Upadhyaya commented on RF-1107: ---------------------------------------- I'm experiencing the same problems with on both versions 4.2 and 4.3.3 . Does the fix above work for this component as well ? > Scrollable dataTable. Header scrolled badly on TAB button. > ---------------------------------------------------------- > > Key: RF-1107 > URL: https://issues.jboss.org/browse/RF-1107 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-ScrollableDataTable > Affects Versions: 3.2.0 > Environment: FF 2.0.0.6 > Reporter: Ilya Shaikovsky > Fix For: 3.Future > > Attachments: case - 1.png, case - 2.png, controls-scrollable-data-table.js, file1.txt > > > Two use-cases failed: > "case - 1.png" > frozenColCount=0 > all the columns with inputs > last columns aren't in visible part > When I use TAB key - columns scrolled to be displayed (good) but headers jsut stays (Wrong!) > "case - 2.png" > frozenColCount=2 > all the columns with inputs > last columns aren't in visible part > I use TAB key. Focused inputs changed one by one only in "frozen zone" (seems good), but after I press TAB on the last input - the focus jumps to non frozen column input and frozen columns - scrolled and shifted down(Wrong!). But headers still aren't scrolled (good in this case). -- 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 From issues at jboss.org Thu Feb 6 13:26:29 2014 From: issues at jboss.org (Cody Lerum (JIRA)) Date: Thu, 6 Feb 2014 13:26:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11453) Add autocomplete functionality to the rich:select component In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11453?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12942387#comment-12942387 ] Cody Lerum commented on RF-11453: --------------------------------- Ping me if you need any clarification on this. Basic need is a pojo select from a list of objects retrieved from a ajax request. 1. type some characters 2. call specified search method via ajax to search some objects using some of the input characters. 3. display as a drop down let user pick. 4. since this is a pojo select you should only be able to select options provided by the search method. > Add autocomplete functionality to the rich:select component > ----------------------------------------------------------- > > Key: RF-11453 > URL: https://issues.jboss.org/browse/RF-11453 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-selects > Reporter: Cody Lerum > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > Add an "autocompleteMethod" to rich:select -- 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 From issues at jboss.org Thu Feb 6 14:26:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Thu, 6 Feb 2014 14:26:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-1107) Scrollable dataTable. Header scrolled badly on TAB button. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-1107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12942406#comment-12942406 ] Brian Leathem commented on RF-1107: ----------------------------------- Please file a new issue for RF 4. At this point they are very much two distinct codebases. > Scrollable dataTable. Header scrolled badly on TAB button. > ---------------------------------------------------------- > > Key: RF-1107 > URL: https://issues.jboss.org/browse/RF-1107 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-ScrollableDataTable > Affects Versions: 3.2.0 > Environment: FF 2.0.0.6 > Reporter: Ilya Shaikovsky > Fix For: 3.Future > > Attachments: case - 1.png, case - 2.png, controls-scrollable-data-table.js, file1.txt > > > Two use-cases failed: > "case - 1.png" > frozenColCount=0 > all the columns with inputs > last columns aren't in visible part > When I use TAB key - columns scrolled to be displayed (good) but headers jsut stays (Wrong!) > "case - 2.png" > frozenColCount=2 > all the columns with inputs > last columns aren't in visible part > I use TAB key. Focused inputs changed one by one only in "frozen zone" (seems good), but after I press TAB on the last input - the focus jumps to non frozen column input and frozen columns - scrolled and shifted down(Wrong!). But headers still aren't scrolled (good in this case). -- 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 From issues at jboss.org Thu Feb 6 14:28:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Thu, 6 Feb 2014 14:28:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13263) RichFocus does not set focus properly in some templates In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13263?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13263: ------------------------------- Fix Version/s: 4.5-Tracking (was: 5-Tracking) > RichFocus does not set focus properly in some templates > ------------------------------------------------------- > > Key: RF-13263 > URL: https://issues.jboss.org/browse/RF-13263 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.5.0.Alpha2 > Environment: RichFaces 4.3.4.Final > Metamer 4.3.5-SNAPSHOT > JBoss Application Server: Weld Integration 7.1.1.Final > JBoss AS 7.1.1.Final > Java(TM) SE Runtime Environment 1.7.0_25-b15 @ Linux > Firefox 24.0 @ Linux x86_64 > Reporter: Matej Novotny > Fix For: 4.5-Tracking > > > Rich Focus Component does not set focus properly after validating inputs. > Does not work with validationAware attribute false as well (which should change focused component after validation). > This only happens in the following templates - richAccordion, richCollapsiblePanel, richTabPanel. > Here is the exception thrown after following "Steps to reproduce": > {code} > 14:06:21,629 SEVERE [org.richfaces.log.Context] (http--127.0.0.1-8080-1) containerItem3: java.lang.IllegalArgumentException: containerItem3 > at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:606) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.renderkit.util.RendererUtils.findComponentFor(RendererUtils.java:759) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusedComponent(AbstractFocusRenderStrategy.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getSubmittedFocus(AbstractFocusRenderStrategy.java:79) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidates(AbstractFocusRenderStrategy.java:40) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.AbstractFocusRenderStrategy.getFocusCandidatesAsString(AbstractFocusRenderStrategy.java:24) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.focus.FormFocusRenderStrategy.getFocusCandidatesAsString(FormFocusRenderStrategy.java:65) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.FocusRendererBase.getFocusCandidatesAsString(FocusRendererBase.java:38) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.html.FocusRenderer.doEncodeEnd(FocusRenderer.java:91) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.renderkit.RendererBase.encodeEnd(RendererBase.java:175) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl$RenderVisitCallback.visit(ExtendedPartialViewContextImpl.java:557) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.RenderExtendedVisitContext.invokeVisitCallbackForImplicitComponent(RenderExtendedVisitContext.java:71) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.BaseExtendedVisitContext.invokeVisitCallback(BaseExtendedVisitContext.java:333) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1612) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.component.AbstractTogglePanel.visitTree(AbstractTogglePanel.java:924) [richfaces-components-ui-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIForm.visitTree(UIForm.java:371) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.visitTree(UIComponent.java:1623) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartialRenderPhase(ExtendedPartialViewContextImpl.java:310) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at org.richfaces.context.ExtendedPartialViewContextImpl.processPartial(ExtendedPartialViewContextImpl.java:213) [richfaces-core-impl-4.3.4.Final.jar:4.3.4.Final] > at javax.faces.component.UIViewRoot.encodeChildren(UIViewRoot.java:981) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1779) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:391) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.7-jbossorg-2.jar:] > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.richfaces.tests.metamer.TestIdentityFilter.doFilter(TestIdentityFilter.java:93) [classes:] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] > at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25] > {code} -- 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 From issues at jboss.org Thu Feb 6 14:28:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Thu, 6 Feb 2014 14:28:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13536) placeholder breaks r:select In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13536?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13536: ------------------------------- Fix Version/s: 5-Tracking > placeholder breaks r:select > --------------------------- > > Key: RF-13536 > URL: https://issues.jboss.org/browse/RF-13536 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-misc > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: Tried with Firefox and Chrome > Reporter: Ji?? ?tefek > Fix For: 5-Tracking > > > When using placeholder with r:select: > # no options are visible after click to select with placeholder (after third click in the input the options will show) > # cannot delete the previously selected option -- 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 From issues at jboss.org Thu Feb 6 16:32:30 2014 From: issues at jboss.org (Shantanu Upadhyaya (JIRA)) Date: Thu, 6 Feb 2014 16:32:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-1107) Scrollable dataTable. Header scrolled badly on TAB button. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-1107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12942427#comment-12942427 ] Shantanu Upadhyaya commented on RF-1107: ---------------------------------------- Before I log a defect , here's what I'm trying : Step 1. I changed it to rich:dataTable, wrapped it around a
Now when I tab horizontally, it tabs fine. Columns move too. Which is expected. Step 2. Since 1 works fine, I switched back to (which is what I need ! ) Now, I need to hide the table horizontal scroll so that wrapper DIV scroll takes effect. Been trying for past few hours, its not working ! But I'm able to hide the vertical scroll with this style .rf-edt-b { overflow-y:hidden;overflow-x:hidden; } Why isn't the horizontal scroll going away ? I looked into the generated code, and I see this in the footer of the table :
Scrollable dataTable. Header scrolled badly on TAB button. > ---------------------------------------------------------- > > Key: RF-1107 > URL: https://issues.jboss.org/browse/RF-1107 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-ScrollableDataTable > Affects Versions: 3.2.0 > Environment: FF 2.0.0.6 > Reporter: Ilya Shaikovsky > Fix For: 3.Future > > Attachments: case - 1.png, case - 2.png, controls-scrollable-data-table.js, file1.txt > > > Two use-cases failed: > "case - 1.png" > frozenColCount=0 > all the columns with inputs > last columns aren't in visible part > When I use TAB key - columns scrolled to be displayed (good) but headers jsut stays (Wrong!) > "case - 2.png" > frozenColCount=2 > all the columns with inputs > last columns aren't in visible part > I use TAB key. Focused inputs changed one by one only in "frozen zone" (seems good), but after I press TAB on the last input - the focus jumps to non frozen column input and frozen columns - scrolled and shifted down(Wrong!). But headers still aren't scrolled (good in this case). -- 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 From issues at jboss.org Thu Feb 6 16:42:29 2014 From: issues at jboss.org (Shantanu Upadhyaya (JIRA)) Date: Thu, 6 Feb 2014 16:42:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-1107) Scrollable dataTable. Header scrolled badly on TAB button. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-1107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12942431#comment-12942431 ] Shantanu Upadhyaya commented on RF-1107: ---------------------------------------- So the question is - how to hide the horizontal scroll of , so that we can create a wrapper DIV with horizontal scroll ? > Scrollable dataTable. Header scrolled badly on TAB button. > ---------------------------------------------------------- > > Key: RF-1107 > URL: https://issues.jboss.org/browse/RF-1107 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-ScrollableDataTable > Affects Versions: 3.2.0 > Environment: FF 2.0.0.6 > Reporter: Ilya Shaikovsky > Fix For: 3.Future > > Attachments: case - 1.png, case - 2.png, controls-scrollable-data-table.js, file1.txt > > > Two use-cases failed: > "case - 1.png" > frozenColCount=0 > all the columns with inputs > last columns aren't in visible part > When I use TAB key - columns scrolled to be displayed (good) but headers jsut stays (Wrong!) > "case - 2.png" > frozenColCount=2 > all the columns with inputs > last columns aren't in visible part > I use TAB key. Focused inputs changed one by one only in "frozen zone" (seems good), but after I press TAB on the last input - the focus jumps to non frozen column input and frozen columns - scrolled and shifted down(Wrong!). But headers still aren't scrolled (good in this case). -- 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 From issues at jboss.org Thu Feb 6 18:42:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Thu, 6 Feb 2014 18:42:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13531. -------------------------------- Assignee: Brian Leathem Resolution: Done Replaced the mouseenter/leave event handlers with a top-level delegating event handler. QE please check all components that use list.js: * select * inplaceSelect * picklist * orderingList Note: This fix will have to be forward ported into RF 4.5 and RF 5. > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11 > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Thu Feb 6 18:42:30 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Thu, 6 Feb 2014 18:42:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13531: ------------------------------- Labels: IE11 needs-qe (was: IE11) > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11, needs-qe > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Thu Feb 6 22:48:28 2014 From: issues at jboss.org (alexey plotnikov (JIRA)) Date: Thu, 6 Feb 2014 22:48:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13537) Autocomplete: onbegin attribute igniored In-Reply-To: References: Message-ID: alexey plotnikov created RF-13537: ------------------------------------- Summary: Autocomplete: onbegin attribute igniored Key: RF-13537 URL: https://issues.jboss.org/browse/RF-13537 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.3.5 Reporter: alexey plotnikov "onbegin" attribute of rich:autocomplete is always ignored! I suggest next fix: In file Autocomplete.js: {code} var callAjax = function(event, callback) { ... this.isFirstAjax = false; //caution: JSF submits inputs with empty names causing "WARNING: Parameters: Invalid chunk ignored." in Tomcat log var params = {}; params[this.id + ".ajax"] = "1"; rf.ajax(this.id, event, {parameters: params, error: ajaxError, complete:ajaxSuccess}); } {code} for fixing, we must replace on {code} var callAjax = function(event, callback) { ... this.isFirstAjax = false; //caution: JSF submits inputs with empty names causing "WARNING: Parameters: Invalid chunk ignored." in Tomcat log var params = {}; params[this.id + ".ajax"] = "1"; var parameters_extended = {parameters: params, error: ajaxError, complete:ajaxSuccess}; if (this.options.onbegin != undefined) { parameters_extended.begin = this.options.onbegin; } rf.ajax(this.id, event, parameters_extended); } {code} I can create pull request if everything ok. -- 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 From issues at jboss.org Fri Feb 7 07:06:28 2014 From: issues at jboss.org (Frank Langelage (JIRA)) Date: Fri, 7 Feb 2014 07:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13168) 3rd party JSF component disappears on RichFaces ajax refresh In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13168?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Frank Langelage reopened RF-13168: ---------------------------------- > 3rd party JSF component disappears on RichFaces ajax refresh > ------------------------------------------------------------ > > Key: RF-13168 > URL: https://issues.jboss.org/browse/RF-13168 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: compatibility, component-a4j-core > Reporter: Frank Langelage > Assignee: Luk?? Fry? > Labels: interop, jsf22 > Fix For: 5.0.0.Alpha3 > > Attachments: install-mojarra-2.1.19.cli, Jira-WFLY-UT.tar, xaa, xab, xac > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > On some of my pages I'm using richfaces a4j:poll to refresh components regularly. The components refreshed is an openfaces datatable. > This does not work with WildFly build from current sources. > Same code works with JBoss AS 7.20. So problem is not related to richfaces or openfaces for me. Probably related to replacement of jboss-web with undertow. > I'll attach a small project showing the problem. > The mojarra datatable works fine, is refreshed every 10 seconds. > The openfaces datatable below disappears on first refresh. -- 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 From issues at jboss.org Fri Feb 7 07:08:28 2014 From: issues at jboss.org (Frank Langelage (JIRA)) Date: Fri, 7 Feb 2014 07:08:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13168) 3rd party JSF component disappears on RichFaces ajax refresh In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13168?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Frank Langelage updated RF-13168: --------------------------------- Attachment: Jira-WFLY-UT.tar xaa xab xac slightly updated test case. This can be used to reproduce the problem. As said, the only artifact that changed is the JSF version. > 3rd party JSF component disappears on RichFaces ajax refresh > ------------------------------------------------------------ > > Key: RF-13168 > URL: https://issues.jboss.org/browse/RF-13168 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: compatibility, component-a4j-core > Reporter: Frank Langelage > Assignee: Luk?? Fry? > Labels: interop, jsf22 > Fix For: 5.0.0.Alpha3 > > Attachments: install-mojarra-2.1.19.cli, Jira-WFLY-UT.tar, Jira-WFLY-UT.tar, xaa, xaa, xab, xab, xac, xac > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > On some of my pages I'm using richfaces a4j:poll to refresh components regularly. The components refreshed is an openfaces datatable. > This does not work with WildFly build from current sources. > Same code works with JBoss AS 7.20. So problem is not related to richfaces or openfaces for me. Probably related to replacement of jboss-web with undertow. > I'll attach a small project showing the problem. > The mojarra datatable works fine, is refreshed every 10 seconds. > The openfaces datatable below disappears on first refresh. -- 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 From issues at jboss.org Fri Feb 7 08:12:29 2014 From: issues at jboss.org (Daniele Benegiamo (JIRA)) Date: Fri, 7 Feb 2014 08:12:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13534) a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13534?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12942596#comment-12942596 ] Daniele Benegiamo commented on RF-13534: ---------------------------------------- Hi [~ppitonak], also with that change it still raises the same error, with the same stack trace. > a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" > -------------------------------------------------------------- > > Key: RF-13534 > URL: https://issues.jboss.org/browse/RF-13534 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Environment: Glassfish 4.0, Mac OS X 10.9.1, Java(TM) SE Runtime Environment (build 1.7.0_21-b12), Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode) > Reporter: Daniele Benegiamo > Assignee: Pavol Pitonak > > On GF4.0 any attempt to use {{}} raises the same exception ("{{java.io.InvalidClassException: Unauthorized deserialisation attempt}}"). Everything works nicely with the old RichFaces 4.1.0. > Below you can find a stack trace, a sample page and a sample managed bean as minimum reproducible test case. > To keep the test case short, the sample doesn't uses the {{value}} attribute, but exceptions are raised also when using it (e.g. passing a simple {{java.lang.String}}). > From a first quick analysis seems that: > * basic types (as {{java.lang.String}}) are not properly detected as "de-serializable"; > * types implementing {{Serializable}} or {{SerializableResource}} interfaces are impossible to instantiate by {{LookAheadObjectInputStream}} (row 118 - {{Class.forName()}} call in {{isClassValid()}} method - raises a {{ClassNotFoundException}} exception). > {code:title=Exception} > SEVERE: Input error for deserialize data > java.io.InvalidClassException: Unauthorized deserialization attempt; org.jboss.weld.util.el.ForwardingMethodExpression > at org.richfaces.util.LookAheadObjectInputStream.resolveClass(LookAheadObjectInputStream.java:105) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1620) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at com.sun.faces.facelets.el.TagMethodExpression.readExternal(TagMethodExpression.java:158) > at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1835) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1794) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1989) > at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1913) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1796) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1704) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1342) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at org.richfaces.util.Util.decodeObjectData(Util.java:237) > at org.richfaces.resource.DefaultCodecResourceRequestData.getData(DefaultCodecResourceRequestData.java:97) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:337) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:156) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > WARNING: StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception > java.lang.NullPointerException > at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.java:62) > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:229) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > {code} > {code:xml|title=index.xhtml} > > > xmlns:h="http://xmlns.jcp.org/jsf/html" > xmlns:a4j="http://richfaces.org/a4j"> > > Page title > > > > > > {code} > {code:java|title=MyBean.java} > package org.example; > import java.awt.Color; > import java.awt.Font; > import java.awt.Graphics2D; > import java.awt.image.BufferedImage; > import java.io.IOException; > import javax.enterprise.context.RequestScoped; > import javax.imageio.ImageIO; > import javax.inject.Named; > @Named > @RequestScoped > public class MyBean > { > public void myCreateContent (java.io.OutputStream output, java.lang.Object input) > throws IOException > { > BufferedImage img = new BufferedImage (400, 200, BufferedImage.TYPE_INT_RGB); > Graphics2D graphics2D = img.createGraphics (); > graphics2D.setBackground (Color.BLACK); > graphics2D.setColor (Color.WHITE); > graphics2D.clearRect (0, 0, img.getWidth (), img.getHeight ()); > graphics2D.setFont (new Font ("Arial", Font.PLAIN, 12)); > graphics2D.drawString ("String", 20, 35); > ImageIO.write (img, "png", output); > } > } > {code} -- 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 From issues at jboss.org Fri Feb 7 08:26:29 2014 From: issues at jboss.org (Daniele Benegiamo (JIRA)) Date: Fri, 7 Feb 2014 08:26:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13534) a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13534?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Daniele Benegiamo updated RF-13534: ----------------------------------- Attachment: MediaOutput.zip The test case (with used JARs included). It's a NetBeans 7.4 project. > a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" > -------------------------------------------------------------- > > Key: RF-13534 > URL: https://issues.jboss.org/browse/RF-13534 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Environment: Glassfish 4.0, Mac OS X 10.9.1, Java(TM) SE Runtime Environment (build 1.7.0_21-b12), Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode) > Reporter: Daniele Benegiamo > Assignee: Pavol Pitonak > Attachments: MediaOutput.zip > > > On GF4.0 any attempt to use {{}} raises the same exception ("{{java.io.InvalidClassException: Unauthorized deserialisation attempt}}"). Everything works nicely with the old RichFaces 4.1.0. > Below you can find a stack trace, a sample page and a sample managed bean as minimum reproducible test case. > To keep the test case short, the sample doesn't uses the {{value}} attribute, but exceptions are raised also when using it (e.g. passing a simple {{java.lang.String}}). > From a first quick analysis seems that: > * basic types (as {{java.lang.String}}) are not properly detected as "de-serializable"; > * types implementing {{Serializable}} or {{SerializableResource}} interfaces are impossible to instantiate by {{LookAheadObjectInputStream}} (row 118 - {{Class.forName()}} call in {{isClassValid()}} method - raises a {{ClassNotFoundException}} exception). > {code:title=Exception} > SEVERE: Input error for deserialize data > java.io.InvalidClassException: Unauthorized deserialization attempt; org.jboss.weld.util.el.ForwardingMethodExpression > at org.richfaces.util.LookAheadObjectInputStream.resolveClass(LookAheadObjectInputStream.java:105) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1620) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at com.sun.faces.facelets.el.TagMethodExpression.readExternal(TagMethodExpression.java:158) > at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1835) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1794) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1989) > at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1913) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1796) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1704) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1342) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at org.richfaces.util.Util.decodeObjectData(Util.java:237) > at org.richfaces.resource.DefaultCodecResourceRequestData.getData(DefaultCodecResourceRequestData.java:97) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:337) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:156) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > WARNING: StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception > java.lang.NullPointerException > at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.java:62) > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:229) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > {code} > {code:xml|title=index.xhtml} > > > xmlns:h="http://xmlns.jcp.org/jsf/html" > xmlns:a4j="http://richfaces.org/a4j"> > > Page title > > > > > > {code} > {code:java|title=MyBean.java} > package org.example; > import java.awt.Color; > import java.awt.Font; > import java.awt.Graphics2D; > import java.awt.image.BufferedImage; > import java.io.IOException; > import javax.enterprise.context.RequestScoped; > import javax.imageio.ImageIO; > import javax.inject.Named; > @Named > @RequestScoped > public class MyBean > { > public void myCreateContent (java.io.OutputStream output, java.lang.Object input) > throws IOException > { > BufferedImage img = new BufferedImage (400, 200, BufferedImage.TYPE_INT_RGB); > Graphics2D graphics2D = img.createGraphics (); > graphics2D.setBackground (Color.BLACK); > graphics2D.setColor (Color.WHITE); > graphics2D.clearRect (0, 0, img.getWidth (), img.getHeight ()); > graphics2D.setFont (new Font ("Arial", Font.PLAIN, 12)); > graphics2D.drawString ("String", 20, 35); > ImageIO.write (img, "png", output); > } > } > {code} -- 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 From issues at jboss.org Fri Feb 7 12:00:30 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Fri, 7 Feb 2014 12:00:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13537) Autocomplete: onbegin attribute igniored In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13537?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12942691#comment-12942691 ] Brian Leathem commented on RF-13537: ------------------------------------ That's great, thanks for investigating [~alixey]. At first glance you patch looks good. Please go ahead and issue a Pull Request. (Don't forget to sign the [CLA|https://cla.jboss.org/index.seam] if you haven't previously done so) > Autocomplete: onbegin attribute igniored > ---------------------------------------- > > Key: RF-13537 > URL: https://issues.jboss.org/browse/RF-13537 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Reporter: alexey plotnikov > > "onbegin" attribute of rich:autocomplete is always ignored! > I suggest next fix: > In file Autocomplete.js: > {code} > var callAjax = function(event, callback) { > ... > this.isFirstAjax = false; > //caution: JSF submits inputs with empty names causing "WARNING: Parameters: Invalid chunk ignored." in Tomcat log > var params = {}; > params[this.id + ".ajax"] = "1"; > rf.ajax(this.id, event, {parameters: params, error: ajaxError, complete:ajaxSuccess}); > } > {code} > for fixing, we must replace on > {code} > var callAjax = function(event, callback) { > ... > this.isFirstAjax = false; > //caution: JSF submits inputs with empty names causing "WARNING: Parameters: Invalid chunk ignored." in Tomcat log > var params = {}; > params[this.id + ".ajax"] = "1"; > var parameters_extended = {parameters: params, error: ajaxError, complete:ajaxSuccess}; > if (this.options.onbegin != undefined) { > parameters_extended.begin = this.options.onbegin; > } > rf.ajax(this.id, event, parameters_extended); > } > {code} > I can create pull request if everything ok. -- 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 From issues at jboss.org Fri Feb 7 12:00:30 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Fri, 7 Feb 2014 12:00:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13537) Autocomplete: onbegin attribute igniored In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13537?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13537: ------------------------------- Fix Version/s: 4.3.6 > Autocomplete: onbegin attribute igniored > ---------------------------------------- > > Key: RF-13537 > URL: https://issues.jboss.org/browse/RF-13537 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Reporter: alexey plotnikov > Fix For: 4.3.6 > > > "onbegin" attribute of rich:autocomplete is always ignored! > I suggest next fix: > In file Autocomplete.js: > {code} > var callAjax = function(event, callback) { > ... > this.isFirstAjax = false; > //caution: JSF submits inputs with empty names causing "WARNING: Parameters: Invalid chunk ignored." in Tomcat log > var params = {}; > params[this.id + ".ajax"] = "1"; > rf.ajax(this.id, event, {parameters: params, error: ajaxError, complete:ajaxSuccess}); > } > {code} > for fixing, we must replace on > {code} > var callAjax = function(event, callback) { > ... > this.isFirstAjax = false; > //caution: JSF submits inputs with empty names causing "WARNING: Parameters: Invalid chunk ignored." in Tomcat log > var params = {}; > params[this.id + ".ajax"] = "1"; > var parameters_extended = {parameters: params, error: ajaxError, complete:ajaxSuccess}; > if (this.options.onbegin != undefined) { > parameters_extended.begin = this.options.onbegin; > } > rf.ajax(this.id, event, parameters_extended); > } > {code} > I can create pull request if everything ok. -- 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 From issues at jboss.org Fri Feb 7 12:00:30 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Fri, 7 Feb 2014 12:00:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13168) 3rd party JSF component disappears on RichFaces ajax refresh In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13168?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13168: ------------------------------- Fix Version/s: (was: 5.0.0.Alpha3) > 3rd party JSF component disappears on RichFaces ajax refresh > ------------------------------------------------------------ > > Key: RF-13168 > URL: https://issues.jboss.org/browse/RF-13168 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: compatibility, component-a4j-core > Reporter: Frank Langelage > Assignee: Luk?? Fry? > Labels: interop, jsf22 > Attachments: install-mojarra-2.1.19.cli, Jira-WFLY-UT.tar, Jira-WFLY-UT.tar, xaa, xaa, xab, xab, xac, xac > > Original Estimate: 1 hour > Remaining Estimate: 1 hour > > On some of my pages I'm using richfaces a4j:poll to refresh components regularly. The components refreshed is an openfaces datatable. > This does not work with WildFly build from current sources. > Same code works with JBoss AS 7.20. So problem is not related to richfaces or openfaces for me. Probably related to replacement of jboss-web with undertow. > I'll attach a small project showing the problem. > The mojarra datatable works fine, is refreshed every 10 seconds. > The openfaces datatable below disappears on first refresh. -- 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 From issues at jboss.org Fri Feb 7 12:02:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Fri, 7 Feb 2014 12:02:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-1107) Scrollable dataTable. Header scrolled badly on TAB button. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-1107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12942694#comment-12942694 ] Brian Leathem commented on RF-1107: ----------------------------------- We'll have to move the CSS rule from an inline style to an external CSS file, then we will be able to override it. Please file a new jira for this. (Note: you can try using the !important CSS marker as a temporary workaround) > Scrollable dataTable. Header scrolled badly on TAB button. > ---------------------------------------------------------- > > Key: RF-1107 > URL: https://issues.jboss.org/browse/RF-1107 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-ScrollableDataTable > Affects Versions: 3.2.0 > Environment: FF 2.0.0.6 > Reporter: Ilya Shaikovsky > Fix For: 3.Future > > Attachments: case - 1.png, case - 2.png, controls-scrollable-data-table.js, file1.txt > > > Two use-cases failed: > "case - 1.png" > frozenColCount=0 > all the columns with inputs > last columns aren't in visible part > When I use TAB key - columns scrolled to be displayed (good) but headers jsut stays (Wrong!) > "case - 2.png" > frozenColCount=2 > all the columns with inputs > last columns aren't in visible part > I use TAB key. Focused inputs changed one by one only in "frozen zone" (seems good), but after I press TAB on the last input - the focus jumps to non frozen column input and frozen columns - scrolled and shifted down(Wrong!). But headers still aren't scrolled (good in this case). -- 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 From issues at jboss.org Mon Feb 10 04:45:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Mon, 10 Feb 2014 04:45:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek reopened RF-13531: ------------------------------ The select and inplaceSelect are fixed. The picklist and orderingList are OK. Tried with IE 11 and FF 26. BUT the autocomplete is still not working. Reopening. > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11, needs-qe > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Mon Feb 10 05:11:29 2014 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Mon, 10 Feb 2014 05:11:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11736) rich:popupPanel x domElementAttachment="parent" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11736?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated RF-11736: ----------------------------------------- Bugzilla Update: Perform Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=1063222 > rich:popupPanel x domElementAttachment="parent" > ----------------------------------------------- > > Key: RF-11736 > URL: https://issues.jboss.org/browse/RF-11736 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-panels-layout-themes > Affects Versions: 4.0.0.Final > Environment: NetBeans 7.0.0 + GlassFish 3.1.1 + JSF2 + CDI + RF4 + Hibernate3 > Reporter: Edilmar Alves > Fix For: 5-Tracking > > > rich:popupPanel repositions after second click when we use domElementAttachment="parent" -- 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 From issues at jboss.org Mon Feb 10 10:31:29 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 10 Feb 2014 10:31:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13534) a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13534?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-13534: ---------------------------------- Assignee: Juraj H?ska (was: Pavol Pitonak) Juraj, please try to reproduce. > a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" > -------------------------------------------------------------- > > Key: RF-13534 > URL: https://issues.jboss.org/browse/RF-13534 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Environment: Glassfish 4.0, Mac OS X 10.9.1, Java(TM) SE Runtime Environment (build 1.7.0_21-b12), Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode) > Reporter: Daniele Benegiamo > Assignee: Juraj H?ska > Attachments: MediaOutput.zip > > > On GF4.0 any attempt to use {{}} raises the same exception ("{{java.io.InvalidClassException: Unauthorized deserialisation attempt}}"). Everything works nicely with the old RichFaces 4.1.0. > Below you can find a stack trace, a sample page and a sample managed bean as minimum reproducible test case. > To keep the test case short, the sample doesn't uses the {{value}} attribute, but exceptions are raised also when using it (e.g. passing a simple {{java.lang.String}}). > From a first quick analysis seems that: > * basic types (as {{java.lang.String}}) are not properly detected as "de-serializable"; > * types implementing {{Serializable}} or {{SerializableResource}} interfaces are impossible to instantiate by {{LookAheadObjectInputStream}} (row 118 - {{Class.forName()}} call in {{isClassValid()}} method - raises a {{ClassNotFoundException}} exception). > {code:title=Exception} > SEVERE: Input error for deserialize data > java.io.InvalidClassException: Unauthorized deserialization attempt; org.jboss.weld.util.el.ForwardingMethodExpression > at org.richfaces.util.LookAheadObjectInputStream.resolveClass(LookAheadObjectInputStream.java:105) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1620) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at com.sun.faces.facelets.el.TagMethodExpression.readExternal(TagMethodExpression.java:158) > at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1835) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1794) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1989) > at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1913) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1796) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1704) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1342) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at org.richfaces.util.Util.decodeObjectData(Util.java:237) > at org.richfaces.resource.DefaultCodecResourceRequestData.getData(DefaultCodecResourceRequestData.java:97) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:337) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:156) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > WARNING: StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception > java.lang.NullPointerException > at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.java:62) > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:229) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > {code} > {code:xml|title=index.xhtml} > > > xmlns:h="http://xmlns.jcp.org/jsf/html" > xmlns:a4j="http://richfaces.org/a4j"> > > Page title > > > > > > {code} > {code:java|title=MyBean.java} > package org.example; > import java.awt.Color; > import java.awt.Font; > import java.awt.Graphics2D; > import java.awt.image.BufferedImage; > import java.io.IOException; > import javax.enterprise.context.RequestScoped; > import javax.imageio.ImageIO; > import javax.inject.Named; > @Named > @RequestScoped > public class MyBean > { > public void myCreateContent (java.io.OutputStream output, java.lang.Object input) > throws IOException > { > BufferedImage img = new BufferedImage (400, 200, BufferedImage.TYPE_INT_RGB); > Graphics2D graphics2D = img.createGraphics (); > graphics2D.setBackground (Color.BLACK); > graphics2D.setColor (Color.WHITE); > graphics2D.clearRect (0, 0, img.getWidth (), img.getHeight ()); > graphics2D.setFont (new Font ("Arial", Font.PLAIN, 12)); > graphics2D.drawString ("String", 20, 35); > ImageIO.write (img, "png", output); > } > } > {code} -- 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 From issues at jboss.org Mon Feb 10 14:09:30 2014 From: issues at jboss.org (Silvana Deana (JIRA)) Date: Mon, 10 Feb 2014 14:09:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-4308) rich:pickList: keep sort order of source list after add/remove operations In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-4308?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943175#comment-12943175 ] Silvana Deana commented on RF-4308: ----------------------------------- Sorry about my ignorance. But, What do you mean when you day "include this orderedPickListFix.js in your app" If I add it as a common script it give me an error, and id I add it with JQuery, my menus stop working. So ... I'm lost Thanks in advance > rich:pickList: keep sort order of source list after add/remove operations > ------------------------------------------------------------------------- > > Key: RF-4308 > URL: https://issues.jboss.org/browse/RF-4308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 3.2.2, 4.3.4, 5.0.0.Alpha1 > Reporter: Martin H?ller > Labels: low_hanging_fruit, order, picklist, sort > Fix For: 5-Tracking > > > When adding items from the source list to the target list and removing this items again, the original order of the source list is not preserved. This makes it hard to find items in a list that is longer than just a fest items. A good example is the second example on the livedemo at http://livedemo.exadel.com/richfaces-demo/richfaces/pickList.jsf. Add the first state (Alabama) and remove it. It can now be found at the very end of the otherwise alphabetical list of states. This can be rather unintuitive for a user. > My suggestion is either remember the original sort order of the source list, or add some attribute that enables automatic sorting. -- 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 From issues at jboss.org Mon Feb 10 14:11:30 2014 From: issues at jboss.org (Silvana Deana (JIRA)) Date: Mon, 10 Feb 2014 14:11:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-4308) rich:pickList: keep sort order of source list after add/remove operations In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-4308?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943175#comment-12943175 ] Silvana Deana edited comment on RF-4308 at 2/10/14 2:09 PM: ------------------------------------------------------------ Sorry about my ignorance. But, What do you mean when you day "include this orderedPickListFix.js in your app" If I add it as a common script it give me an error, and id I add it with JQuery, my menus stop working. So ... I'm lost We are using richFaces 3.3.3 with Facelets. Thanks in advance was (Author: silvana.deana): Sorry about my ignorance. But, What do you mean when you day "include this orderedPickListFix.js in your app" If I add it as a common script it give me an error, and id I add it with JQuery, my menus stop working. So ... I'm lost Thanks in advance > rich:pickList: keep sort order of source list after add/remove operations > ------------------------------------------------------------------------- > > Key: RF-4308 > URL: https://issues.jboss.org/browse/RF-4308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 3.2.2, 4.3.4, 5.0.0.Alpha1 > Reporter: Martin H?ller > Labels: low_hanging_fruit, order, picklist, sort > Fix For: 5-Tracking > > > When adding items from the source list to the target list and removing this items again, the original order of the source list is not preserved. This makes it hard to find items in a list that is longer than just a fest items. A good example is the second example on the livedemo at http://livedemo.exadel.com/richfaces-demo/richfaces/pickList.jsf. Add the first state (Alabama) and remove it. It can now be found at the very end of the otherwise alphabetical list of states. This can be rather unintuitive for a user. > My suggestion is either remember the original sort order of the source list, or add some attribute that enables automatic sorting. -- 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 From issues at jboss.org Tue Feb 11 00:53:28 2014 From: issues at jboss.org (Steven W. (JIRA)) Date: Tue, 11 Feb 2014 00:53:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13458) CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13458?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943287#comment-12943287 ] Steven W. commented on RF-13458: -------------------------------- Hi I've created a minimized sample - this was easier to achieve than the reproducer. As-is all you need to do is startup tomcat with the Example web app and you'll see the exception. Simply replace the m2 richfaces with m1 and you'll see it runs. Example webapp: http://www.entracity.com/example/Example.war Source to produce: http://www.entracity.com/example/m2-javassist-exception-example-src.zip I hope this helps yield a ready solution :) Thanks, Steve > CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) > --------------------------------------------------------------------- > > Key: RF-13458 > URL: https://issues.jboss.org/browse/RF-13458 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Steven W. > Assignee: Pavol Pitonak > > There appear to be compatibility issues with the richfaces-5.0.0.Alpha2 release and the javassist package. Using older versions of the package lead to failures stating that new javassist methods are not available. > When using the newer libraries (3.14 -> javassist-3.18.0-GA) exceptions are generated on the use of previously functioning command links (the corresponding methods are still the same signatures i.e. return String and take no parameters) > {code} > value="#{messages['listByUnit']}" > title="#{messages['titleListByUnit']}" > action="#{appController.selectCurrSelectionUnit}"/> > {code} > with > {code} > public String selectCurrSelectionUnit() > {code} > yields: > {code} > 2014-01-03 13:57:57,597 ERROR [org.jboss.seam.exception.Exceptions] - handled and logged exception > javax.servlet.ServletException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:374) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1008) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) > at java.lang.Thread.run(Thread.java:619) > Caused by: javax.el.ELException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94) > at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82) > at com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:207) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185) > at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1819) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1822) > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:447) > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) > at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:188) > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:286) > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > ... 33 more > {code} -- 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 From issues at jboss.org Tue Feb 11 03:05:28 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Tue, 11 Feb 2014 03:05:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13458) CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-13458: ---------------------------------- Assignee: Juraj H?ska (was: Pavol Pitonak) Juraj, please try this reproducer. > CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) > --------------------------------------------------------------------- > > Key: RF-13458 > URL: https://issues.jboss.org/browse/RF-13458 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Steven W. > Assignee: Juraj H?ska > > There appear to be compatibility issues with the richfaces-5.0.0.Alpha2 release and the javassist package. Using older versions of the package lead to failures stating that new javassist methods are not available. > When using the newer libraries (3.14 -> javassist-3.18.0-GA) exceptions are generated on the use of previously functioning command links (the corresponding methods are still the same signatures i.e. return String and take no parameters) > {code} > value="#{messages['listByUnit']}" > title="#{messages['titleListByUnit']}" > action="#{appController.selectCurrSelectionUnit}"/> > {code} > with > {code} > public String selectCurrSelectionUnit() > {code} > yields: > {code} > 2014-01-03 13:57:57,597 ERROR [org.jboss.seam.exception.Exceptions] - handled and logged exception > javax.servlet.ServletException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:374) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1008) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) > at java.lang.Thread.run(Thread.java:619) > Caused by: javax.el.ELException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94) > at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82) > at com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:207) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185) > at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1819) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1822) > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:447) > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) > at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:188) > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:286) > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > ... 33 more > {code} -- 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 From issues at jboss.org Tue Feb 11 04:39:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Tue, 11 Feb 2014 04:39:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13534) a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13534?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943343#comment-12943343 ] Juraj H?ska commented on RF-13534: ---------------------------------- I *have reproduced* the issues with provided reproducer. It can be reproduced with RichFaces {{4.3.5.Final}}, {{4.3.6-SNAPSHOT}}, {{5.0.0.Alpha3}}. It can be reproduced on Glassfish 4 only. It works on AS 7.1.1.Final and WildFly latest SNAPSHOT. I have tried to put {{org.jboss.weld.util.el.ForwardingMethodExpression}} into serialization white-list, but it *did not* resolved the issue for me. Please tell me if I can do something more. > a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" > -------------------------------------------------------------- > > Key: RF-13534 > URL: https://issues.jboss.org/browse/RF-13534 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Environment: Glassfish 4.0, Mac OS X 10.9.1, Java(TM) SE Runtime Environment (build 1.7.0_21-b12), Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode) > Reporter: Daniele Benegiamo > Assignee: Juraj H?ska > Attachments: MediaOutput.zip > > > On GF4.0 any attempt to use {{}} raises the same exception ("{{java.io.InvalidClassException: Unauthorized deserialisation attempt}}"). Everything works nicely with the old RichFaces 4.1.0. > Below you can find a stack trace, a sample page and a sample managed bean as minimum reproducible test case. > To keep the test case short, the sample doesn't uses the {{value}} attribute, but exceptions are raised also when using it (e.g. passing a simple {{java.lang.String}}). > From a first quick analysis seems that: > * basic types (as {{java.lang.String}}) are not properly detected as "de-serializable"; > * types implementing {{Serializable}} or {{SerializableResource}} interfaces are impossible to instantiate by {{LookAheadObjectInputStream}} (row 118 - {{Class.forName()}} call in {{isClassValid()}} method - raises a {{ClassNotFoundException}} exception). > {code:title=Exception} > SEVERE: Input error for deserialize data > java.io.InvalidClassException: Unauthorized deserialization attempt; org.jboss.weld.util.el.ForwardingMethodExpression > at org.richfaces.util.LookAheadObjectInputStream.resolveClass(LookAheadObjectInputStream.java:105) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1620) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at com.sun.faces.facelets.el.TagMethodExpression.readExternal(TagMethodExpression.java:158) > at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1835) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1794) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1989) > at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1913) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1796) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1704) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1342) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at org.richfaces.util.Util.decodeObjectData(Util.java:237) > at org.richfaces.resource.DefaultCodecResourceRequestData.getData(DefaultCodecResourceRequestData.java:97) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:337) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:156) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > WARNING: StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception > java.lang.NullPointerException > at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.java:62) > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:229) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > {code} > {code:xml|title=index.xhtml} > > > xmlns:h="http://xmlns.jcp.org/jsf/html" > xmlns:a4j="http://richfaces.org/a4j"> > > Page title > > > > > > {code} > {code:java|title=MyBean.java} > package org.example; > import java.awt.Color; > import java.awt.Font; > import java.awt.Graphics2D; > import java.awt.image.BufferedImage; > import java.io.IOException; > import javax.enterprise.context.RequestScoped; > import javax.imageio.ImageIO; > import javax.inject.Named; > @Named > @RequestScoped > public class MyBean > { > public void myCreateContent (java.io.OutputStream output, java.lang.Object input) > throws IOException > { > BufferedImage img = new BufferedImage (400, 200, BufferedImage.TYPE_INT_RGB); > Graphics2D graphics2D = img.createGraphics (); > graphics2D.setBackground (Color.BLACK); > graphics2D.setColor (Color.WHITE); > graphics2D.clearRect (0, 0, img.getWidth (), img.getHeight ()); > graphics2D.setFont (new Font ("Arial", Font.PLAIN, 12)); > graphics2D.drawString ("String", 20, 35); > ImageIO.write (img, "png", output); > } > } > {code} -- 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 From issues at jboss.org Tue Feb 11 04:39:29 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Tue, 11 Feb 2014 04:39:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13534) a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13534?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13534: ----------------------------- Assignee: (was: Juraj H?ska) > a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" > -------------------------------------------------------------- > > Key: RF-13534 > URL: https://issues.jboss.org/browse/RF-13534 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Environment: Glassfish 4.0, Mac OS X 10.9.1, Java(TM) SE Runtime Environment (build 1.7.0_21-b12), Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode) > Reporter: Daniele Benegiamo > Attachments: MediaOutput.zip > > > On GF4.0 any attempt to use {{}} raises the same exception ("{{java.io.InvalidClassException: Unauthorized deserialisation attempt}}"). Everything works nicely with the old RichFaces 4.1.0. > Below you can find a stack trace, a sample page and a sample managed bean as minimum reproducible test case. > To keep the test case short, the sample doesn't uses the {{value}} attribute, but exceptions are raised also when using it (e.g. passing a simple {{java.lang.String}}). > From a first quick analysis seems that: > * basic types (as {{java.lang.String}}) are not properly detected as "de-serializable"; > * types implementing {{Serializable}} or {{SerializableResource}} interfaces are impossible to instantiate by {{LookAheadObjectInputStream}} (row 118 - {{Class.forName()}} call in {{isClassValid()}} method - raises a {{ClassNotFoundException}} exception). > {code:title=Exception} > SEVERE: Input error for deserialize data > java.io.InvalidClassException: Unauthorized deserialization attempt; org.jboss.weld.util.el.ForwardingMethodExpression > at org.richfaces.util.LookAheadObjectInputStream.resolveClass(LookAheadObjectInputStream.java:105) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1620) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at com.sun.faces.facelets.el.TagMethodExpression.readExternal(TagMethodExpression.java:158) > at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1835) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1794) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1989) > at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1913) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1796) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1704) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1342) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at org.richfaces.util.Util.decodeObjectData(Util.java:237) > at org.richfaces.resource.DefaultCodecResourceRequestData.getData(DefaultCodecResourceRequestData.java:97) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:337) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:156) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > WARNING: StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception > java.lang.NullPointerException > at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.java:62) > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:229) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > {code} > {code:xml|title=index.xhtml} > > > xmlns:h="http://xmlns.jcp.org/jsf/html" > xmlns:a4j="http://richfaces.org/a4j"> > > Page title > > > > > > {code} > {code:java|title=MyBean.java} > package org.example; > import java.awt.Color; > import java.awt.Font; > import java.awt.Graphics2D; > import java.awt.image.BufferedImage; > import java.io.IOException; > import javax.enterprise.context.RequestScoped; > import javax.imageio.ImageIO; > import javax.inject.Named; > @Named > @RequestScoped > public class MyBean > { > public void myCreateContent (java.io.OutputStream output, java.lang.Object input) > throws IOException > { > BufferedImage img = new BufferedImage (400, 200, BufferedImage.TYPE_INT_RGB); > Graphics2D graphics2D = img.createGraphics (); > graphics2D.setBackground (Color.BLACK); > graphics2D.setColor (Color.WHITE); > graphics2D.clearRect (0, 0, img.getWidth (), img.getHeight ()); > graphics2D.setFont (new Font ("Arial", Font.PLAIN, 12)); > graphics2D.drawString ("String", 20, 35); > ImageIO.write (img, "png", output); > } > } > {code} -- 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 From issues at jboss.org Tue Feb 11 05:09:28 2014 From: issues at jboss.org (Juergen Zimmermann (JIRA)) Date: Tue, 11 Feb 2014 05:09:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13538) Closeables.closeQuietly() removed in Guava 16.0, but still used in RF In-Reply-To: References: Message-ID: Juergen Zimmermann created RF-13538: --------------------------------------- Summary: Closeables.closeQuietly() removed in Guava 16.0, but still used in RF Key: RF-13538 URL: https://issues.jboss.org/browse/RF-13538 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: core Affects Versions: 5.0.0.Alpha3 Reporter: Juergen Zimmermann For instance in org.richfaces.resource.Java2DUserResourceWrapperImpl at line 73 is an invocation of Closeables.closeQuietly(...). However, this method is removed in Guava 16.0 which is now used in RF 5.0.0.Alpha3. javadoc of Guava 14.0 already mentioned: "Deprecated. Where possible, use the try-with-resources statement if using JDK7 or Closer on JDK6 to close one or more Closeable objects. This method is deprecated because it is easy to misuse and may swallow IO exceptions that really should be thrown and handled. See Guava issue 1118 for a more detailed explanation of the reasons for deprecation and see Closing Resources for more information on the problems with closing Closeable objects and some of the preferred solutions for handling it correctly. This method is scheduled to be removed in Guava 16.0." Well, now the method is removed, but still invoked in RF 5.0.0.Alpha3. -- 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 From issues at jboss.org Tue Feb 11 05:11:28 2014 From: issues at jboss.org (Juergen Zimmermann (JIRA)) Date: Tue, 11 Feb 2014 05:11:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13539) r:fileUpload doesn't have the attribute fileUploadListener anymore In-Reply-To: References: Message-ID: Juergen Zimmermann created RF-13539: --------------------------------------- Summary: r:fileUpload doesn't have the attribute fileUploadListener anymore Key: RF-13539 URL: https://issues.jboss.org/browse/RF-13539 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-input Affects Versions: 5.0.0.Alpha3 Reporter: Juergen Zimmermann In RF 4.x and 5.0.0.Alpha1 the tag r:fileUpload had an attribute fileUploadListener to provide a listener which received the uploaded byte array. This attribute is gone. How shall one receive the uploaded bytes? -- 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 From issues at jboss.org Tue Feb 11 06:17:28 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Tue, 11 Feb 2014 06:17:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13378) extendedDataTable not shown inside Bootstrap tab panel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13378?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12937429#comment-12937429 ] Steve Oh edited comment on RF-13378 at 2/11/14 6:16 AM: -------------------------------------------------------- REMOVED was (Author: cc2000): Hello, I put together a list of JS statements, that seams to fix the layout. But I don't think, this is a stable workaround. {code} var edt = RichFaces.$("#{rich:clientId('theTable')}"); var bodyy = document.getElementById("#{rich:clientId('theTable')}:b"); $(bodyy).height(300); $(edt).triggerHandler('rich:onajaxcomplete', {reinitializeHeader: true}); edt.updateLayout(); {code} > extendedDataTable not shown inside Bootstrap tab panel > ------------------------------------------------------ > > Key: RF-13378 > URL: https://issues.jboss.org/browse/RF-13378 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.3.4 > Environment: Tested on Ubuntu 12.04, Firefox 25, JDK 7u45, GlassFish 3.1.2.2 > Reporter: Salvo Isaja > Labels: extendedDataTable > Fix For: 5-Tracking > > Attachments: ExtendedDataTableTest.7z > > > As described in RF-12682, when an extendedDataTable is placed in a parent which is not displayed by default, showing the parent causes the table to be invisible. This was reported to be solved on 4.3.2 for tables inside rich:tabPanel, while this issue is on 4.3.4 for tables inside a tab panel from Bootstrap 3. > Attached a minimal project which demonstrates the issue. > Thanks. -- 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 From issues at jboss.org Tue Feb 11 06:17:28 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Tue, 11 Feb 2014 06:17:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13378) extendedDataTable not shown inside Bootstrap tab panel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13378?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12936875#comment-12936875 ] Steve Oh edited comment on RF-13378 at 2/11/14 6:16 AM: -------------------------------------------------------- REMOVED was (Author: cc2000): same problem with me (using rich:tabPanel), I am digging into suspected javascript - see this snippet from extendedDataTable.js: {code:javascript} initialize: function() { this.deActivateResizeListener(); if (! $(this.element).is(":visible")) { this.showOffscreen(this.element); } {code} > extendedDataTable not shown inside Bootstrap tab panel > ------------------------------------------------------ > > Key: RF-13378 > URL: https://issues.jboss.org/browse/RF-13378 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.3.4 > Environment: Tested on Ubuntu 12.04, Firefox 25, JDK 7u45, GlassFish 3.1.2.2 > Reporter: Salvo Isaja > Labels: extendedDataTable > Fix For: 5-Tracking > > Attachments: ExtendedDataTableTest.7z > > > As described in RF-12682, when an extendedDataTable is placed in a parent which is not displayed by default, showing the parent causes the table to be invisible. This was reported to be solved on 4.3.2 for tables inside rich:tabPanel, while this issue is on 4.3.4 for tables inside a tab panel from Bootstrap 3. > Attached a minimal project which demonstrates the issue. > Thanks. -- 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 From issues at jboss.org Tue Feb 11 06:55:29 2014 From: issues at jboss.org (Immo Benjes (JIRA)) Date: Tue, 11 Feb 2014 06:55:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13251?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943378#comment-12943378 ] Immo Benjes commented on RF-13251: ---------------------------------- Hi Luk??, sorry I am quite busy at the moment but it is really easy to reproduce. Just have a rich:autocomplete and an ajax button. The ajax button submits and rerenders the form. The action method on the a:commandButton tries to set the focus on the rich:autocomplete with the FocusManager - done. You probably have a 'test' autocomplete component flying around anyway. > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk?? Fry? > Priority: Minor > Labels: waiting_on_user > > Currently the FocusManager in Richfaces only works on 'simple' UI components like h:inputText or h:selectOneMenu but not on more complex components like rich:autocomplete. > It would be good if FocusManager could support complex components or 'real' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to select the entity and add it to a list. After each ajax submit the focus gets lost and the user has to manually set the focus back to the autocomplete input field. -- 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 From issues at jboss.org Tue Feb 11 07:27:28 2014 From: issues at jboss.org (Sebastian Cramer (JIRA)) Date: Tue, 11 Feb 2014 07:27:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12801) Use of Resource Optimization prevents the WebBeansELResolver from registering in OWB In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12801?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943394#comment-12943394 ] Sebastian Cramer commented on RF-12801: --------------------------------------- The workaround by [~mayerle] works (just triggers a different bug - refer to the forum thread for info). Since this issue seems to be a OWB bug I would suggest closing it (for now). > Use of Resource Optimization prevents the WebBeansELResolver from registering in OWB > ------------------------------------------------------------------------------------ > > Key: RF-12801 > URL: https://issues.jboss.org/browse/RF-12801 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: resource handling > Affects Versions: 4.3.0.Final > Environment: Websphere 8.0.0.3 and Websphere 8.0.0.5, Windows 7, Richfaces 4.3.0.Final > Reporter: Erdem YILMAZ > Labels: ELResolver, optimization, owb, resource, websphere > Fix For: 5-Tracking > > > when we use context param org.richfaces.resourceOptimization.enabled in web.xml, the CDI listener is not registered in Websphere. > resourcesOptimization parameter disables org.apache.webbeans.el.WebBeansELResolver in Websphere. In richfaces 4.2.3.Final version, resourceOptimization parameter do not affect the CDI behaviour. > we have disabled the resource optimization in order to work with richfaces but for the production environment, we prefer to enable it. -- 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 From issues at jboss.org Tue Feb 11 07:59:29 2014 From: issues at jboss.org (Sebastian Cramer (JIRA)) Date: Tue, 11 Feb 2014 07:59:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13540) Websphere incarnation of MyFaces renderes optimized resources multiple times In-Reply-To: References: Message-ID: Sebastian Cramer created RF-13540: ------------------------------------- Summary: Websphere incarnation of MyFaces renderes optimized resources multiple times Key: RF-13540 URL: https://issues.jboss.org/browse/RF-13540 Project: RichFaces Issue Type: Patch Security Level: Public (Everyone can see) Components: compatibility Affects Versions: 5.0.0.Alpha3, 4.3.5 Environment: Myfaces/Websphere on all platforms Reporter: Sebastian Cramer When enabling resource optimization the packed.js (and packed.css) are rendered multiple times. The previous fix for stock myfaces is not effective against IBM's myfaces impl. -- 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 From issues at jboss.org Tue Feb 11 08:03:28 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Tue, 11 Feb 2014 08:03:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13531: ------------------------------- Labels: IE11 (was: IE11 needs-qe) > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11 > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Tue Feb 11 08:25:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 11 Feb 2014 08:25:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13251) FocusManager to support complex components like rich:autocomplete In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13251?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13251: ---------------------------- Labels: (was: waiting_on_user) > FocusManager to support complex components like rich:autocomplete > ----------------------------------------------------------------- > > Key: RF-13251 > URL: https://issues.jboss.org/browse/RF-13251 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-misc > Affects Versions: 4.3.4 > Reporter: Immo Benjes > Assignee: Luk?? Fry? > Priority: Minor > > Currently the FocusManager in Richfaces only works on 'simple' UI components like h:inputText or h:selectOneMenu but not on more complex components like rich:autocomplete. > It would be good if FocusManager could support complex components or 'real' Ids as generated for that page. > The use case for the support on autocomplete is like this: > User has to enter multiple 'entities'. A rich:autocomplete is used to select the entity and add it to a list. After each ajax submit the focus gets lost and the user has to manually set the focus back to the autocomplete input field. -- 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 From issues at jboss.org Tue Feb 11 09:03:29 2014 From: issues at jboss.org (Erdem YILMAZ (JIRA)) Date: Tue, 11 Feb 2014 09:03:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12801) Use of Resource Optimization prevents the WebBeansELResolver from registering in OWB In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12801?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Erdem YILMAZ closed RF-12801. ----------------------------- Resolution: Partially Completed it seems an OWB bug > Use of Resource Optimization prevents the WebBeansELResolver from registering in OWB > ------------------------------------------------------------------------------------ > > Key: RF-12801 > URL: https://issues.jboss.org/browse/RF-12801 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: resource handling > Affects Versions: 4.3.0.Final > Environment: Websphere 8.0.0.3 and Websphere 8.0.0.5, Windows 7, Richfaces 4.3.0.Final > Reporter: Erdem YILMAZ > Labels: ELResolver, optimization, owb, resource, websphere > Fix For: 5-Tracking > > > when we use context param org.richfaces.resourceOptimization.enabled in web.xml, the CDI listener is not registered in Websphere. > resourcesOptimization parameter disables org.apache.webbeans.el.WebBeansELResolver in Websphere. In richfaces 4.2.3.Final version, resourceOptimization parameter do not affect the CDI behaviour. > we have disabled the resource optimization in order to work with richfaces but for the production environment, we prefer to enable it. -- 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 From issues at jboss.org Tue Feb 11 11:15:29 2014 From: issues at jboss.org (Michal Petrov (JIRA)) Date: Tue, 11 Feb 2014 11:15:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13541) Photoalbum - JPA tests In-Reply-To: References: Message-ID: Michal Petrov created RF-13541: ---------------------------------- Summary: Photoalbum - JPA tests Key: RF-13541 URL: https://issues.jboss.org/browse/RF-13541 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Affects Versions: 4.5.0.Alpha1 Reporter: Michal Petrov In the photoalbum POM there's a profile for running some Arquillian tests. (Basic CRUD) It's not currently runnable (outdated dependencies and/or settings). Most of the tests are missing some dependencies but {{UserManagementTest}} and {{UserBeanTest}} seem to require a large number of class dependencies to run. -- 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 From issues at jboss.org Tue Feb 11 11:19:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 11:19:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13542) RichFaces 5 uses Bootstrap as it's base styling/theme approach. This epic will encompass issues relating to the skinning/theming of the framework. In-Reply-To: References: Message-ID: Brian Leathem created RF-13542: ---------------------------------- Summary: RichFaces 5 uses Bootstrap as it's base styling/theme approach. This epic will encompass issues relating to the skinning/theming of the framework. Key: RF-13542 URL: https://issues.jboss.org/browse/RF-13542 Project: RichFaces Issue Type: Epic Security Level: Public (Everyone can see) Reporter: Brian Leathem -- 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 From issues at jboss.org Tue Feb 11 11:21:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 11:21:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13542) RichFaces 5 uses Bootstrap as it's base styling/theme approach. This epic will encompass issues relating to the skinning/theming of the framework. In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13542: ------------------------------- Description: RichFaces 5 uses Bootstrap as it's base styling/theme approach. This epic will encompass issues relating to the skinning/theming of the framework. > RichFaces 5 uses Bootstrap as it's base styling/theme approach. This epic will encompass issues relating to the skinning/theming of the framework. > --------------------------------------------------------------------------------------------------------------------------------------------------- > > Key: RF-13542 > URL: https://issues.jboss.org/browse/RF-13542 > Project: RichFaces > Issue Type: Epic > Security Level: Public(Everyone can see) > Reporter: Brian Leathem > > RichFaces 5 uses Bootstrap as it's base styling/theme approach. This epic will encompass issues relating to the skinning/theming of the framework. -- 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 From issues at jboss.org Tue Feb 11 11:21:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 11:21:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13542) RichFaces 5 styling/theme capabilities In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13542: ------------------------------- Summary: RichFaces 5 styling/theme capabilities (was: RichFaces 5 uses Bootstrap as it's base styling/theme approach. This epic will encompass issues relating to the skinning/theming of the framework.) > RichFaces 5 styling/theme capabilities > -------------------------------------- > > Key: RF-13542 > URL: https://issues.jboss.org/browse/RF-13542 > Project: RichFaces > Issue Type: Epic > Security Level: Public(Everyone can see) > Reporter: Brian Leathem > > RichFaces 5 uses Bootstrap as it's base styling/theme approach. This epic will encompass issues relating to the skinning/theming of the framework. -- 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 From issues at jboss.org Tue Feb 11 11:21:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 11:21:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13542) RichFaces 5 styling/theme capabilities In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13542: ------------------------------- Fix Version/s: 5-Tracking > RichFaces 5 styling/theme capabilities > -------------------------------------- > > Key: RF-13542 > URL: https://issues.jboss.org/browse/RF-13542 > Project: RichFaces > Issue Type: Epic > Security Level: Public(Everyone can see) > Reporter: Brian Leathem > Fix For: 5-Tracking > > > RichFaces 5 uses Bootstrap as it's base styling/theme approach. This epic will encompass issues relating to the skinning/theming of the framework. -- 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 From issues at jboss.org Tue Feb 11 13:11:28 2014 From: issues at jboss.org (Cody Lerum (JIRA)) Date: Tue, 11 Feb 2014 13:11:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13538) Closeables.closeQuietly() removed in Guava 16.0, but still used in RF In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13538?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943567#comment-12943567 ] Cody Lerum commented on RF-13538: --------------------------------- This was always an @Beta feature (http://docs.guava-libraries.googlecode.com/git-history/v13.0.1/javadoc/index.html) and probably shouldn't have been depended on. > Closeables.closeQuietly() removed in Guava 16.0, but still used in RF > --------------------------------------------------------------------- > > Key: RF-13538 > URL: https://issues.jboss.org/browse/RF-13538 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Affects Versions: 5.0.0.Alpha3 > Reporter: Juergen Zimmermann > > For instance in org.richfaces.resource.Java2DUserResourceWrapperImpl at line 73 is an invocation of Closeables.closeQuietly(...). However, this method is removed in Guava 16.0 which is now used in RF 5.0.0.Alpha3. > javadoc of Guava 14.0 already mentioned: > "Deprecated. Where possible, use the try-with-resources statement if using JDK7 or Closer on JDK6 to close one or more Closeable objects. This method is deprecated because it is easy to misuse and may swallow IO exceptions that really should be thrown and handled. See Guava issue 1118 for a more detailed explanation of the reasons for deprecation and see Closing Resources for more information on the problems with closing Closeable objects and some of the preferred solutions for handling it correctly. This method is scheduled to be removed in Guava 16.0." > Well, now the method is removed, but still invoked in RF 5.0.0.Alpha3. -- 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 From issues at jboss.org Tue Feb 11 13:55:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 13:55:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13534) a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13534?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13534: ------------------------------- Fix Version/s: 5-Tracking > a4j:mediaOutput on GF4: "Unauthorized deserialisation attempt" > -------------------------------------------------------------- > > Key: RF-13534 > URL: https://issues.jboss.org/browse/RF-13534 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.5 > Environment: Glassfish 4.0, Mac OS X 10.9.1, Java(TM) SE Runtime Environment (build 1.7.0_21-b12), Java HotSpot(TM) 64-Bit Server VM (build 23.21-b01, mixed mode) > Reporter: Daniele Benegiamo > Fix For: 5-Tracking > > Attachments: MediaOutput.zip > > > On GF4.0 any attempt to use {{}} raises the same exception ("{{java.io.InvalidClassException: Unauthorized deserialisation attempt}}"). Everything works nicely with the old RichFaces 4.1.0. > Below you can find a stack trace, a sample page and a sample managed bean as minimum reproducible test case. > To keep the test case short, the sample doesn't uses the {{value}} attribute, but exceptions are raised also when using it (e.g. passing a simple {{java.lang.String}}). > From a first quick analysis seems that: > * basic types (as {{java.lang.String}}) are not properly detected as "de-serializable"; > * types implementing {{Serializable}} or {{SerializableResource}} interfaces are impossible to instantiate by {{LookAheadObjectInputStream}} (row 118 - {{Class.forName()}} call in {{isClassValid()}} method - raises a {{ClassNotFoundException}} exception). > {code:title=Exception} > SEVERE: Input error for deserialize data > java.io.InvalidClassException: Unauthorized deserialization attempt; org.jboss.weld.util.el.ForwardingMethodExpression > at org.richfaces.util.LookAheadObjectInputStream.resolveClass(LookAheadObjectInputStream.java:105) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1610) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1620) > at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1515) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1769) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at com.sun.faces.facelets.el.TagMethodExpression.readExternal(TagMethodExpression.java:158) > at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1835) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1794) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1989) > at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1913) > at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1796) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1348) > at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1704) > at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1342) > at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370) > at org.richfaces.util.Util.decodeObjectData(Util.java:237) > at org.richfaces.resource.DefaultCodecResourceRequestData.getData(DefaultCodecResourceRequestData.java:97) > at org.richfaces.resource.ResourceFactoryImpl.createResource(ResourceFactoryImpl.java:337) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:156) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > WARNING: StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception > java.lang.NullPointerException > at org.richfaces.resource.MediaOutputResource.encode(MediaOutputResource.java:62) > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:229) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:643) > at org.apache.catalina.core.StandardWrapper.service(StandardWrapper.java:1682) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:318) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:160) > at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:734) > at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:673) > at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:99) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:174) > at org.apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.java:357) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:260) > at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:188) > at org.glassfish.grizzly.http.server.HttpHandler.runService(HttpHandler.java:191) > at org.glassfish.grizzly.http.server.HttpHandler.doHandle(HttpHandler.java:168) > at org.glassfish.grizzly.http.server.HttpServerFilter.handleRead(HttpServerFilter.java:189) > at org.glassfish.grizzly.filterchain.ExecutorResolver$9.execute(ExecutorResolver.java:119) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeFilter(DefaultFilterChain.java:288) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.executeChainPart(DefaultFilterChain.java:206) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.execute(DefaultFilterChain.java:136) > at org.glassfish.grizzly.filterchain.DefaultFilterChain.process(DefaultFilterChain.java:114) > at org.glassfish.grizzly.ProcessorExecutor.execute(ProcessorExecutor.java:77) > at org.glassfish.grizzly.nio.transport.TCPNIOTransport.fireIOEvent(TCPNIOTransport.java:838) > at org.glassfish.grizzly.strategies.AbstractIOStrategy.fireIOEvent(AbstractIOStrategy.java:113) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.run0(WorkerThreadIOStrategy.java:115) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy.access$100(WorkerThreadIOStrategy.java:55) > at org.glassfish.grizzly.strategies.WorkerThreadIOStrategy$WorkerThreadRunnable.run(WorkerThreadIOStrategy.java:135) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:564) > at org.glassfish.grizzly.threadpool.AbstractThreadPool$Worker.run(AbstractThreadPool.java:544) > at java.lang.Thread.run(Thread.java:722) > {code} > {code:xml|title=index.xhtml} > > > xmlns:h="http://xmlns.jcp.org/jsf/html" > xmlns:a4j="http://richfaces.org/a4j"> > > Page title > > > > > > {code} > {code:java|title=MyBean.java} > package org.example; > import java.awt.Color; > import java.awt.Font; > import java.awt.Graphics2D; > import java.awt.image.BufferedImage; > import java.io.IOException; > import javax.enterprise.context.RequestScoped; > import javax.imageio.ImageIO; > import javax.inject.Named; > @Named > @RequestScoped > public class MyBean > { > public void myCreateContent (java.io.OutputStream output, java.lang.Object input) > throws IOException > { > BufferedImage img = new BufferedImage (400, 200, BufferedImage.TYPE_INT_RGB); > Graphics2D graphics2D = img.createGraphics (); > graphics2D.setBackground (Color.BLACK); > graphics2D.setColor (Color.WHITE); > graphics2D.clearRect (0, 0, img.getWidth (), img.getHeight ()); > graphics2D.setFont (new Font ("Arial", Font.PLAIN, 12)); > graphics2D.drawString ("String", 20, 35); > ImageIO.write (img, "png", output); > } > } > {code} -- 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 From issues at jboss.org Tue Feb 11 13:57:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 13:57:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13247) Upgrade the RichFaces guava dependency to the latest version In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13247: ------------------------------- Summary: Upgrade the RichFaces guava dependency to the latest version (was: Upgrade the RichFaces guava dependency to version 15.0) > Upgrade the RichFaces guava dependency to the latest version > ------------------------------------------------------------ > > Key: RF-13247 > URL: https://issues.jboss.org/browse/RF-13247 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Jeremy Landis > Assignee: Brian Leathem > Priority: Minor > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Upgrading to guava 15 from 14.0.1 causes this richfaces error. I have not looked into this further but wanted to put it out there as an issue. > Caused by: java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(Lcom/google/common/base/Function;)Ljava/util/concurrent/ConcurrentMap; from class org.richfaces.resource.ResourceLibraryFactoryImpl -- 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 From issues at jboss.org Tue Feb 11 13:57:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 13:57:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13538) Closeables.closeQuietly() removed in Guava 16.0, but still used in RF In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13538?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13538: ------------------------------- Fix Version/s: 5.0.0.Alpha4 > Closeables.closeQuietly() removed in Guava 16.0, but still used in RF > --------------------------------------------------------------------- > > Key: RF-13538 > URL: https://issues.jboss.org/browse/RF-13538 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Affects Versions: 5.0.0.Alpha3 > Reporter: Juergen Zimmermann > Fix For: 5.0.0.Alpha4 > > > For instance in org.richfaces.resource.Java2DUserResourceWrapperImpl at line 73 is an invocation of Closeables.closeQuietly(...). However, this method is removed in Guava 16.0 which is now used in RF 5.0.0.Alpha3. > javadoc of Guava 14.0 already mentioned: > "Deprecated. Where possible, use the try-with-resources statement if using JDK7 or Closer on JDK6 to close one or more Closeable objects. This method is deprecated because it is easy to misuse and may swallow IO exceptions that really should be thrown and handled. See Guava issue 1118 for a more detailed explanation of the reasons for deprecation and see Closing Resources for more information on the problems with closing Closeable objects and some of the preferred solutions for handling it correctly. This method is scheduled to be removed in Guava 16.0." > Well, now the method is removed, but still invoked in RF 5.0.0.Alpha3. -- 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 From issues at jboss.org Tue Feb 11 14:03:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 14:03:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13539) r:fileUpload doesn't have the attribute fileUploadListener anymore In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13539?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943589#comment-12943589 ] Brian Leathem commented on RF-13539: ------------------------------------ I understand this feature was temporarily disabled with RF-13444 in 5.0.0.Alpha3 to enable JSF 2.2 compatibility. We are aiming to restorer the functionality with a re-work of the fileUpload component in 5.0.0.Alpha4 with RF-13514. [~lfryc] please correct me if am wrong. Should we consider this a duplicate issue? > r:fileUpload doesn't have the attribute fileUploadListener anymore > ------------------------------------------------------------------ > > Key: RF-13539 > URL: https://issues.jboss.org/browse/RF-13539 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 5.0.0.Alpha3 > Reporter: Juergen Zimmermann > > In RF 4.x and 5.0.0.Alpha1 the tag r:fileUpload had an attribute fileUploadListener to provide a listener which received the uploaded byte array. This attribute is gone. How shall one receive the uploaded bytes? -- 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 From issues at jboss.org Tue Feb 11 14:09:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 14:09:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13539) r:fileUpload doesn't have the attribute fileUploadListener anymore In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13539?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943589#comment-12943589 ] Brian Leathem edited comment on RF-13539 at 2/11/14 2:09 PM: ------------------------------------------------------------- I understand this feature was temporarily disabled with RF-13444 in 5.0.0.Alpha3 to enable JSF 2.2 compatibility. We are aiming to restore the functionality with a re-work of the fileUpload component in 5.0.0.Alpha4 with RF-13514. [~lfryc] please correct me if am wrong. Should we consider this a duplicate issue? was (Author: bleathem): I understand this feature was temporarily disabled with RF-13444 in 5.0.0.Alpha3 to enable JSF 2.2 compatibility. We are aiming to restorer the functionality with a re-work of the fileUpload component in 5.0.0.Alpha4 with RF-13514. [~lfryc] please correct me if am wrong. Should we consider this a duplicate issue? > r:fileUpload doesn't have the attribute fileUploadListener anymore > ------------------------------------------------------------------ > > Key: RF-13539 > URL: https://issues.jboss.org/browse/RF-13539 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 5.0.0.Alpha3 > Reporter: Juergen Zimmermann > > In RF 4.x and 5.0.0.Alpha1 the tag r:fileUpload had an attribute fileUploadListener to provide a listener which received the uploaded byte array. This attribute is gone. How shall one receive the uploaded bytes? -- 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 From issues at jboss.org Tue Feb 11 16:13:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 16:13:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13541) Photoalbum - JPA tests In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13541?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943642#comment-12943642 ] Brian Leathem commented on RF-13541: ------------------------------------ If it helps, take a look at the JPA test in the kitchensink-rf quickstart and see how the dependencies are managed there: https://github.com/richfaces/jdf-quickstarts/blob/master/kitchensink-rf/src/test/java/org/jboss/as/quickstarts/kitchensinkrf/test/MemberRegistrationTest.java > Photoalbum - JPA tests > ---------------------- > > Key: RF-13541 > URL: https://issues.jboss.org/browse/RF-13541 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > > In the photoalbum POM there's a profile for running some Arquillian tests. (Basic CRUD) > It's not currently runnable (outdated dependencies and/or settings). > Most of the tests are missing some dependencies but {{UserManagementTest}} and {{UserBeanTest}} seem to require a large number of class dependencies to run. -- 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 From issues at jboss.org Tue Feb 11 16:41:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 11 Feb 2014 16:41:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13540) Websphere incarnation of MyFaces renderes optimized resources multiple times In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943648#comment-12943648 ] Luk?? Fry? commented on RF-13540: --------------------------------- Hey [~sebcramer], could you please also sign a [Contibutor License Agreement|https://cla.jboss.org/index.seam]? > Websphere incarnation of MyFaces renderes optimized resources multiple times > ---------------------------------------------------------------------------- > > Key: RF-13540 > URL: https://issues.jboss.org/browse/RF-13540 > Project: RichFaces > Issue Type: Patch > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 4.3.5, 5.0.0.Alpha3 > Environment: Myfaces/Websphere on all platforms > Reporter: Sebastian Cramer > Labels: myfaces, websphere > Fix For: 4.3.6 > > > When enabling resource optimization the packed.js (and packed.css) are rendered multiple times. The previous fix for stock myfaces is not effective against IBM's myfaces impl. -- 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 From issues at jboss.org Tue Feb 11 17:47:28 2014 From: issues at jboss.org (Kaveh A. (JIRA)) Date: Tue, 11 Feb 2014 17:47:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12682) extendedDataTable render issue with rich:tabPanel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12682?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943663#comment-12943663 ] Kaveh A. commented on RF-12682: ------------------------------- Yes this issue seems to be back, commenting out the following line in the extendedDataTable.js and packed.js seems to fix it. this.normalPartStyle.display = "none"; > extendedDataTable render issue with rich:tabPanel > ------------------------------------------------- > > Key: RF-12682 > URL: https://issues.jboss.org/browse/RF-12682 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.3.Final, 4.3.0.M3, 4.3.0.CR1, 4.3.0.Final > Reporter: Kaveh A. > Labels: extendedDataTable, render, richfaces, tabpanel, testcase_provided > Attachments: richfacesBug2.zip, RichFacesBugEclipseProject.zip > > > This issue is not just specific to tabPanel. Anytime the extendedDataTable is hidden (when the page loads) and then it is made visible later the table can not display the data (table is empty at the load time). > In this particular case if we load a page with two tabs. Furthermore if we have one extendedDataTable in each tab (the first tab shows and the second tab is not shown at first). In this case once the user clicks on the second tab and tries to populate the extendedDataTable (via any action). Then the table is not rendered properly. A sample project has been provided at the following link that further describe this issue. You can download the eclipse project attached at the end of the following message to reproduce this issue. > https://community.jboss.org/message/783787 -- 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 From issues at jboss.org Tue Feb 11 18:27:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 18:27:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13531. -------------------------------- Labels: IE11 needs-qe (was: IE11) Resolution: Done Fixed autocomplete as well. > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11, needs-qe > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Tue Feb 11 18:59:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 11 Feb 2014 18:59:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13540) Websphere incarnation of MyFaces renderes optimized resources multiple times In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943731#comment-12943731 ] Brian Leathem commented on RF-13540: ------------------------------------ Note: I have approved [~sebcramer]'s CLA request. > Websphere incarnation of MyFaces renderes optimized resources multiple times > ---------------------------------------------------------------------------- > > Key: RF-13540 > URL: https://issues.jboss.org/browse/RF-13540 > Project: RichFaces > Issue Type: Patch > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 4.3.5, 5.0.0.Alpha3 > Environment: Myfaces/Websphere on all platforms > Reporter: Sebastian Cramer > Labels: myfaces, websphere > Fix For: 4.3.6 > > > When enabling resource optimization the packed.js (and packed.css) are rendered multiple times. The previous fix for stock myfaces is not effective against IBM's myfaces impl. -- 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 From issues at jboss.org Wed Feb 12 02:43:29 2014 From: issues at jboss.org (Sebastian Cramer (JIRA)) Date: Wed, 12 Feb 2014 02:43:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13540) Websphere incarnation of MyFaces renderes optimized resources multiple times In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943777#comment-12943777 ] Sebastian Cramer commented on RF-13540: --------------------------------------- Hey [~lfryc]. Should I port this fix to the RF5 tree? If so I would send you a pull request asap. > Websphere incarnation of MyFaces renderes optimized resources multiple times > ---------------------------------------------------------------------------- > > Key: RF-13540 > URL: https://issues.jboss.org/browse/RF-13540 > Project: RichFaces > Issue Type: Patch > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 4.3.5, 5.0.0.Alpha3 > Environment: Myfaces/Websphere on all platforms > Reporter: Sebastian Cramer > Labels: myfaces, websphere > Fix For: 4.3.6 > > > When enabling resource optimization the packed.js (and packed.css) are rendered multiple times. The previous fix for stock myfaces is not effective against IBM's myfaces impl. -- 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 From issues at jboss.org Wed Feb 12 04:21:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Wed, 12 Feb 2014 04:21:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek updated RF-13531: ----------------------------- Labels: IE11 (was: IE11 needs-qe) > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11 > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Wed Feb 12 04:47:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Wed, 12 Feb 2014 04:47:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943815#comment-12943815 ] Ji?? ?tefek commented on RF-13531: ---------------------------------- Verified. Selection of items by mouse in components: autocomplete, inplaceSelect, select, pickList and orderingList are OK now on IE 11. Also verified that these components are working with IE 9, IE 10, FF 26 and Chrome 32. [~bleathem] what about the selection by keyboard? > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11 > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Wed Feb 12 05:09:29 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 12 Feb 2014 05:09:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12682) extendedDataTable render issue with rich:tabPanel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12682?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943819#comment-12943819 ] Pavol Pitonak commented on RF-12682: ------------------------------------ [~kaveh_a], could you please create a new issue and add link to this one? > extendedDataTable render issue with rich:tabPanel > ------------------------------------------------- > > Key: RF-12682 > URL: https://issues.jboss.org/browse/RF-12682 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.3.Final, 4.3.0.M3, 4.3.0.CR1, 4.3.0.Final > Reporter: Kaveh A. > Labels: extendedDataTable, render, richfaces, tabpanel, testcase_provided > Attachments: richfacesBug2.zip, RichFacesBugEclipseProject.zip > > > This issue is not just specific to tabPanel. Anytime the extendedDataTable is hidden (when the page loads) and then it is made visible later the table can not display the data (table is empty at the load time). > In this particular case if we load a page with two tabs. Furthermore if we have one extendedDataTable in each tab (the first tab shows and the second tab is not shown at first). In this case once the user clicks on the second tab and tries to populate the extendedDataTable (via any action). Then the table is not rendered properly. A sample project has been provided at the following link that further describe this issue. You can download the eclipse project attached at the end of the following message to reproduce this issue. > https://community.jboss.org/message/783787 -- 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 From issues at jboss.org Wed Feb 12 05:13:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 12 Feb 2014 05:13:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13458) CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13458?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943822#comment-12943822 ] Juraj H?ska commented on RF-13458: ---------------------------------- I believe this is not a bug and the behavior is caused by using of old {{rich:}} namespace, instead of {{r:}} introduced in {{5.Alpha2}}. When I refactored the reproducer {{.war}} so it contains only {{r:}} namespace, the issue is not occurring. Please find the refactored .war in the attachments. However, I needed to comment {{ CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) > --------------------------------------------------------------------- > > Key: RF-13458 > URL: https://issues.jboss.org/browse/RF-13458 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Steven W. > Assignee: Juraj H?ska > > There appear to be compatibility issues with the richfaces-5.0.0.Alpha2 release and the javassist package. Using older versions of the package lead to failures stating that new javassist methods are not available. > When using the newer libraries (3.14 -> javassist-3.18.0-GA) exceptions are generated on the use of previously functioning command links (the corresponding methods are still the same signatures i.e. return String and take no parameters) > {code} > value="#{messages['listByUnit']}" > title="#{messages['titleListByUnit']}" > action="#{appController.selectCurrSelectionUnit}"/> > {code} > with > {code} > public String selectCurrSelectionUnit() > {code} > yields: > {code} > 2014-01-03 13:57:57,597 ERROR [org.jboss.seam.exception.Exceptions] - handled and logged exception > javax.servlet.ServletException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:374) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1008) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) > at java.lang.Thread.run(Thread.java:619) > Caused by: javax.el.ELException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94) > at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82) > at com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:207) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185) > at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1819) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1822) > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:447) > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) > at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:188) > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:286) > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > ... 33 more > {code} -- 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 From issues at jboss.org Wed Feb 12 05:15:30 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 12 Feb 2014 05:15:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13458) CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13458: ----------------------------- Attachment: ExampleRefactoredRichNamespace.war > CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) > --------------------------------------------------------------------- > > Key: RF-13458 > URL: https://issues.jboss.org/browse/RF-13458 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Steven W. > Assignee: Juraj H?ska > Attachments: ExampleRefactoredRichNamespace.war > > > There appear to be compatibility issues with the richfaces-5.0.0.Alpha2 release and the javassist package. Using older versions of the package lead to failures stating that new javassist methods are not available. > When using the newer libraries (3.14 -> javassist-3.18.0-GA) exceptions are generated on the use of previously functioning command links (the corresponding methods are still the same signatures i.e. return String and take no parameters) > {code} > value="#{messages['listByUnit']}" > title="#{messages['titleListByUnit']}" > action="#{appController.selectCurrSelectionUnit}"/> > {code} > with > {code} > public String selectCurrSelectionUnit() > {code} > yields: > {code} > 2014-01-03 13:57:57,597 ERROR [org.jboss.seam.exception.Exceptions] - handled and logged exception > javax.servlet.ServletException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:374) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1008) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) > at java.lang.Thread.run(Thread.java:619) > Caused by: javax.el.ELException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94) > at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82) > at com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:207) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185) > at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1819) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1822) > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:447) > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) > at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:188) > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:286) > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > ... 33 more > {code} -- 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 From issues at jboss.org Wed Feb 12 05:15:30 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 12 Feb 2014 05:15:30 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13458) CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13458?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943822#comment-12943822 ] Juraj H?ska edited comment on RF-13458 at 2/12/14 5:15 AM: ----------------------------------------------------------- I believe this is not a bug and the behavior is caused by using of old {{rich:}} namespace, instead of {{r:}} introduced in {{5.Alpha2}}. When I refactored the reproducer {{.war}} so it contains only {{r:}} namespace, the issue is not occurring. Please find the refactored .war - it does not contains libraries, they can be copied from the original reproducer war. However, I needed to comment {{ CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) > --------------------------------------------------------------------- > > Key: RF-13458 > URL: https://issues.jboss.org/browse/RF-13458 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Steven W. > Assignee: Juraj H?ska > Attachments: ExampleRefactoredRichNamespace.war > > > There appear to be compatibility issues with the richfaces-5.0.0.Alpha2 release and the javassist package. Using older versions of the package lead to failures stating that new javassist methods are not available. > When using the newer libraries (3.14 -> javassist-3.18.0-GA) exceptions are generated on the use of previously functioning command links (the corresponding methods are still the same signatures i.e. return String and take no parameters) > {code} > value="#{messages['listByUnit']}" > title="#{messages['titleListByUnit']}" > action="#{appController.selectCurrSelectionUnit}"/> > {code} > with > {code} > public String selectCurrSelectionUnit() > {code} > yields: > {code} > 2014-01-03 13:57:57,597 ERROR [org.jboss.seam.exception.Exceptions] - handled and logged exception > javax.servlet.ServletException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:374) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1008) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) > at java.lang.Thread.run(Thread.java:619) > Caused by: javax.el.ELException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94) > at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82) > at com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:207) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185) > at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1819) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1822) > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:447) > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) > at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:188) > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:286) > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > ... 33 more > {code} -- 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 From issues at jboss.org Wed Feb 12 05:19:29 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 12 Feb 2014 05:19:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13458) CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13458?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943822#comment-12943822 ] Juraj H?ska edited comment on RF-13458 at 2/12/14 5:17 AM: ----------------------------------------------------------- I believe this is not a bug and the behavior is caused by using of old {{rich:}} namespace, instead of {{r:}} introduced in {{5.Alpha2}}. When I refactored the reproducer {{.war}} so it contains only {{r:}} namespace, the issue is not occurring. Please find the refactored .war - it does not contains libraries, they can be copied from the original reproducer war. However, I needed to comment {{ CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) > --------------------------------------------------------------------- > > Key: RF-13458 > URL: https://issues.jboss.org/browse/RF-13458 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Steven W. > Assignee: Juraj H?ska > Attachments: ExampleRefactoredRichNamespace.war > > > There appear to be compatibility issues with the richfaces-5.0.0.Alpha2 release and the javassist package. Using older versions of the package lead to failures stating that new javassist methods are not available. > When using the newer libraries (3.14 -> javassist-3.18.0-GA) exceptions are generated on the use of previously functioning command links (the corresponding methods are still the same signatures i.e. return String and take no parameters) > {code} > value="#{messages['listByUnit']}" > title="#{messages['titleListByUnit']}" > action="#{appController.selectCurrSelectionUnit}"/> > {code} > with > {code} > public String selectCurrSelectionUnit() > {code} > yields: > {code} > 2014-01-03 13:57:57,597 ERROR [org.jboss.seam.exception.Exceptions] - handled and logged exception > javax.servlet.ServletException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:374) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1008) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) > at java.lang.Thread.run(Thread.java:619) > Caused by: javax.el.ELException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94) > at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82) > at com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:207) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185) > at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1819) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1822) > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:447) > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) > at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:188) > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:286) > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > ... 33 more > {code} -- 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 From issues at jboss.org Wed Feb 12 06:17:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 12 Feb 2014 06:17:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13540) Websphere incarnation of MyFaces renderes optimized resources multiple times In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943840#comment-12943840 ] Luk?? Fry? commented on RF-13540: --------------------------------- We usually grab 4.3.x fixes and port them to 4.5.x/5.0.x on regular basis (before the release), but if you use or are going to use 5.0.0-SNAPSHOT, a PR will be welcomed. > Websphere incarnation of MyFaces renderes optimized resources multiple times > ---------------------------------------------------------------------------- > > Key: RF-13540 > URL: https://issues.jboss.org/browse/RF-13540 > Project: RichFaces > Issue Type: Patch > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 4.3.5, 5.0.0.Alpha3 > Environment: Myfaces/Websphere on all platforms > Reporter: Sebastian Cramer > Labels: myfaces, websphere > Fix For: 4.3.6 > > > When enabling resource optimization the packed.js (and packed.css) are rendered multiple times. The previous fix for stock myfaces is not effective against IBM's myfaces impl. -- 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 From issues at jboss.org Wed Feb 12 06:19:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 12 Feb 2014 06:19:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13540) Websphere incarnation of MyFaces renderes optimized resources multiple times In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13540: ---------------------------- Assignee: Sebastian Cramer > Websphere incarnation of MyFaces renderes optimized resources multiple times > ---------------------------------------------------------------------------- > > Key: RF-13540 > URL: https://issues.jboss.org/browse/RF-13540 > Project: RichFaces > Issue Type: Patch > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 4.3.5, 5.0.0.Alpha3 > Environment: Myfaces/Websphere on all platforms > Reporter: Sebastian Cramer > Assignee: Sebastian Cramer > Labels: myfaces, websphere > Fix For: 4.3.6 > > > When enabling resource optimization the packed.js (and packed.css) are rendered multiple times. The previous fix for stock myfaces is not effective against IBM's myfaces impl. -- 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 From issues at jboss.org Wed Feb 12 06:53:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 12 Feb 2014 06:53:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13543) When r:ajax nested in r:select and event=keyup then error is thrown In-Reply-To: References: Message-ID: Juraj H?ska created RF-13543: -------------------------------- Summary: When r:ajax nested in r:select and event=keyup then error is thrown Key: RF-13543 URL: https://issues.jboss.org/browse/RF-13543 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-a4j-core Affects Versions: 5.0.0.Alpha3, 5.0.0.Alpha2 Reporter: Juraj H?ska Nested {{r:ajax}} with event set to {{keyup}} in {{r:select}} component causes this error being thrown when rendering such a page: {code} javax.faces.view.facelets.TagException: /index.xhtml @21,62 keyupevent is not supported for the UISelect org.richfaces.ui.ajax.ajax.AjaxHandler.resolveEventName(AjaxHandler.java:209) org.richfaces.ui.ajax.ajax.AjaxHandler.applyNested(AjaxHandler.java:190) org.richfaces.ui.ajax.ajax.AjaxHandler.apply(AjaxHandler.java:133) javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) com.sun.faces.facelets.tag.ui.DefineHandler.applyDefinition(DefineHandler.java:106) com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:201) com.sun.faces.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:395) com.sun.faces.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:366) com.sun.faces.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:111) javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93) com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:87) com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:312) com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:371) com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:350) com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:199) com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:169) com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93) com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:87) com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:161) com.sun.faces.application.view.FaceletViewHandlingStrategy.buildView(FaceletViewHandlingStrategy.java:980) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:99) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:219) javax.faces.webapp.FacesServlet.service(FacesServlet.java:647) {code} Issue is regression in 5.0.0.Alpha2, in other words it worked in older releases. -- 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 From issues at jboss.org Wed Feb 12 06:55:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 12 Feb 2014 06:55:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13543) When r:ajax nested in r:select and event=keyup then error is thrown In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13543?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13543: ----------------------------- Steps to Reproduce: # build and deploy this project: https://github.com/jhuska/richfaces-sanbox/tree/RF-13543 # deploy it to e.g. Tomcat 7 # load in your browser: http://localhost:8080/richfaces-sanbox # see that the page is not rendered and mentioned error is thrown > When r:ajax nested in r:select and event=keyup then error is thrown > ------------------------------------------------------------------- > > Key: RF-13543 > URL: https://issues.jboss.org/browse/RF-13543 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2, 5.0.0.Alpha3 > Reporter: Juraj H?ska > > Nested {{r:ajax}} with event set to {{keyup}} in {{r:select}} component causes this error being thrown when rendering such a page: > {code} > javax.faces.view.facelets.TagException: /index.xhtml @21,62 keyupevent is not supported for the UISelect > org.richfaces.ui.ajax.ajax.AjaxHandler.resolveEventName(AjaxHandler.java:209) > org.richfaces.ui.ajax.ajax.AjaxHandler.applyNested(AjaxHandler.java:190) > org.richfaces.ui.ajax.ajax.AjaxHandler.apply(AjaxHandler.java:133) > javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) > javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) > org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) > com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) > javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) > javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) > org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) > com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) > javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) > javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) > com.sun.faces.facelets.tag.ui.DefineHandler.applyDefinition(DefineHandler.java:106) > com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:201) > com.sun.faces.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:395) > com.sun.faces.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:366) > com.sun.faces.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:111) > javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) > org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) > com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) > javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) > javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) > com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93) > com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:87) > com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:312) > com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:371) > com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:350) > com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:199) > com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:169) > com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93) > com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:87) > com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:161) > com.sun.faces.application.view.FaceletViewHandlingStrategy.buildView(FaceletViewHandlingStrategy.java:980) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:99) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:219) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:647) > {code} > Issue is regression in 5.0.0.Alpha2, in other words it worked in older releases. -- 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 From issues at jboss.org Wed Feb 12 06:55:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 12 Feb 2014 06:55:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13543) When r:ajax nested in r:select and event=keyup then error is thrown In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13543?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13543: ----------------------------- Labels: regression (was: ) > When r:ajax nested in r:select and event=keyup then error is thrown > ------------------------------------------------------------------- > > Key: RF-13543 > URL: https://issues.jboss.org/browse/RF-13543 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2, 5.0.0.Alpha3 > Reporter: Juraj H?ska > Labels: regression > > Nested {{r:ajax}} with event set to {{keyup}} in {{r:select}} component causes this error being thrown when rendering such a page: > {code} > javax.faces.view.facelets.TagException: /index.xhtml @21,62 keyupevent is not supported for the UISelect > org.richfaces.ui.ajax.ajax.AjaxHandler.resolveEventName(AjaxHandler.java:209) > org.richfaces.ui.ajax.ajax.AjaxHandler.applyNested(AjaxHandler.java:190) > org.richfaces.ui.ajax.ajax.AjaxHandler.apply(AjaxHandler.java:133) > javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) > javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) > org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) > com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) > javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) > javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) > org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) > com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) > javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) > javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) > com.sun.faces.facelets.tag.ui.DefineHandler.applyDefinition(DefineHandler.java:106) > com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:201) > com.sun.faces.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:395) > com.sun.faces.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:366) > com.sun.faces.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:111) > javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) > org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) > com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) > javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) > javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) > com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93) > com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:87) > com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:312) > com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:371) > com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:350) > com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:199) > com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:169) > com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93) > com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:87) > com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:161) > com.sun.faces.application.view.FaceletViewHandlingStrategy.buildView(FaceletViewHandlingStrategy.java:980) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:99) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:219) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:647) > {code} > Issue is regression in 5.0.0.Alpha2, in other words it worked in older releases. -- 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 From issues at jboss.org Wed Feb 12 06:57:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 12 Feb 2014 06:57:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13458) CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13458?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943849#comment-12943849 ] Juraj H?ska commented on RF-13458: ---------------------------------- I have created issue for that mentioned bug: RF-13543. > CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) > --------------------------------------------------------------------- > > Key: RF-13458 > URL: https://issues.jboss.org/browse/RF-13458 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Steven W. > Assignee: Juraj H?ska > Attachments: ExampleRefactoredRichNamespace.war > > > There appear to be compatibility issues with the richfaces-5.0.0.Alpha2 release and the javassist package. Using older versions of the package lead to failures stating that new javassist methods are not available. > When using the newer libraries (3.14 -> javassist-3.18.0-GA) exceptions are generated on the use of previously functioning command links (the corresponding methods are still the same signatures i.e. return String and take no parameters) > {code} > value="#{messages['listByUnit']}" > title="#{messages['titleListByUnit']}" > action="#{appController.selectCurrSelectionUnit}"/> > {code} > with > {code} > public String selectCurrSelectionUnit() > {code} > yields: > {code} > 2014-01-03 13:57:57,597 ERROR [org.jboss.seam.exception.Exceptions] - handled and logged exception > javax.servlet.ServletException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:374) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1008) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) > at java.lang.Thread.run(Thread.java:619) > Caused by: javax.el.ELException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94) > at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82) > at com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:207) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185) > at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1819) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1822) > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:447) > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) > at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:188) > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:286) > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > ... 33 more > {code} -- 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 From issues at jboss.org Wed Feb 12 06:57:29 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 12 Feb 2014 06:57:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13458) CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13458: ----------------------------- Assignee: (was: Juraj H?ska) > CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) > --------------------------------------------------------------------- > > Key: RF-13458 > URL: https://issues.jboss.org/browse/RF-13458 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Steven W. > Attachments: ExampleRefactoredRichNamespace.war > > > There appear to be compatibility issues with the richfaces-5.0.0.Alpha2 release and the javassist package. Using older versions of the package lead to failures stating that new javassist methods are not available. > When using the newer libraries (3.14 -> javassist-3.18.0-GA) exceptions are generated on the use of previously functioning command links (the corresponding methods are still the same signatures i.e. return String and take no parameters) > {code} > value="#{messages['listByUnit']}" > title="#{messages['titleListByUnit']}" > action="#{appController.selectCurrSelectionUnit}"/> > {code} > with > {code} > public String selectCurrSelectionUnit() > {code} > yields: > {code} > 2014-01-03 13:57:57,597 ERROR [org.jboss.seam.exception.Exceptions] - handled and logged exception > javax.servlet.ServletException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:374) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1008) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) > at java.lang.Thread.run(Thread.java:619) > Caused by: javax.el.ELException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94) > at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82) > at com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:207) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185) > at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1819) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1822) > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:447) > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) > at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:188) > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:286) > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > ... 33 more > {code} -- 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 From issues at jboss.org Wed Feb 12 06:57:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 12 Feb 2014 06:57:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13539) r:fileUpload doesn't have the attribute fileUploadListener anymore In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13539?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943850#comment-12943850 ] Luk?? Fry? commented on RF-13539: --------------------------------- [~juergen.zimmermann] good catch, it seems the attribute was accidentally removed in Alpha2 and so it isn't part of Alpha3 as well. (checked on VDL for [Alpha1|http://docs.jboss.org/richfaces/5.0.X/5.0.0.Alpha1/vdldoc/r/fileUpload.html], [Alpha2|http://docs.jboss.org/richfaces/5.0.X/5.0.0.Alpha2/vdldoc/r/fileUpload.html]). [~bleathem] I assume it has something to do with the attribute refactoring we did in Alpha2 time-frame. Note: this has nothing to do with RF-13444. > r:fileUpload doesn't have the attribute fileUploadListener anymore > ------------------------------------------------------------------ > > Key: RF-13539 > URL: https://issues.jboss.org/browse/RF-13539 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 5.0.0.Alpha3 > Reporter: Juergen Zimmermann > > In RF 4.x and 5.0.0.Alpha1 the tag r:fileUpload had an attribute fileUploadListener to provide a listener which received the uploaded byte array. This attribute is gone. How shall one receive the uploaded bytes? -- 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 From issues at jboss.org Wed Feb 12 07:25:28 2014 From: issues at jboss.org (Michal Petrov (JIRA)) Date: Wed, 12 Feb 2014 07:25:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13541) Photoalbum - JPA tests In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13541?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943854#comment-12943854 ] Michal Petrov commented on RF-13541: ------------------------------------ I've fixed it, the user testing required adding about 20 classes to the deployment. Which I guess is a sign I should refactor the UserBean. After every addition a new ClassNotFoundException popped up and I was worried where it would stop. > Photoalbum - JPA tests > ---------------------- > > Key: RF-13541 > URL: https://issues.jboss.org/browse/RF-13541 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Michal Petrov > > In the photoalbum POM there's a profile for running some Arquillian tests. (Basic CRUD) > It's not currently runnable (outdated dependencies and/or settings). > Most of the tests are missing some dependencies but {{UserManagementTest}} and {{UserBeanTest}} seem to require a large number of class dependencies to run. -- 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 From issues at jboss.org Wed Feb 12 07:25:28 2014 From: issues at jboss.org (Michal Petrov (JIRA)) Date: Wed, 12 Feb 2014 07:25:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13541) Photoalbum - JPA tests In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13541?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michal Petrov reassigned RF-13541: ---------------------------------- Assignee: Michal Petrov > Photoalbum - JPA tests > ---------------------- > > Key: RF-13541 > URL: https://issues.jboss.org/browse/RF-13541 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Michal Petrov > > In the photoalbum POM there's a profile for running some Arquillian tests. (Basic CRUD) > It's not currently runnable (outdated dependencies and/or settings). > Most of the tests are missing some dependencies but {{UserManagementTest}} and {{UserBeanTest}} seem to require a large number of class dependencies to run. -- 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 From issues at jboss.org Wed Feb 12 07:55:28 2014 From: issues at jboss.org (Michal Petrov (JIRA)) Date: Wed, 12 Feb 2014 07:55:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13541) Photoalbum - JPA tests In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13541?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michal Petrov resolved RF-13541. -------------------------------- Fix Version/s: 4.3.6 Resolution: Done > Photoalbum - JPA tests > ---------------------- > > Key: RF-13541 > URL: https://issues.jboss.org/browse/RF-13541 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.5.0.Alpha1 > Reporter: Michal Petrov > Assignee: Michal Petrov > Fix For: 4.3.6 > > > In the photoalbum POM there's a profile for running some Arquillian tests. (Basic CRUD) > It's not currently runnable (outdated dependencies and/or settings). > Most of the tests are missing some dependencies but {{UserManagementTest}} and {{UserBeanTest}} seem to require a large number of class dependencies to run. -- 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 From issues at jboss.org Wed Feb 12 09:13:28 2014 From: issues at jboss.org (=?UTF-8?Q?Marcel_=C5=A0ebek_=28JIRA=29?=) Date: Wed, 12 Feb 2014 09:13:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943895#comment-12943895 ] Marcel ?ebek commented on RF-13250: ----------------------------------- Hello. I can see the same behavior with RF 4.3.5 after upgrading from 4.3.3. Some client still runs the old version of atmosphere and generates a lot of requests of the form /__richfaces_push?__richfacesPushAsync=1&pushSessionId=650b92c8-db1c-4e97-81e2-80cf684bbe68&X-Atmosphere-tracking-id=de550cf9-c1eb-4f26-9bd3-ae94187e4711&X-Atmosphere-Framework=1.0.10&X-Atmosphere-Transport=long-polling&X-Cache-Date=0&_=1392213448240 Each such request leads to "Committed error code 400" in server log. I also see a big number of AtomicBoolean classes in heap dump. Currently I cannot say that the number of the instances increase only when these old-version requests are comming, but it looks so. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Pavol Pitonak > Labels: memoryleak > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Wed Feb 12 10:25:29 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 12 Feb 2014 10:25:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943932#comment-12943932 ] Pavol Pitonak commented on RF-13250: ------------------------------------ Hi, could you please provide more information? * Do you use any other frameworks in your application? * What server are you deploying on? * Which JSF impl do you use? * What is your definition of "extreme memory usage"? How many clients are there, how much memory is consumed? * Is memory usage high and/or is it growing over time? * What kind of messages do you push to the clients? I couldn't reproduce this issue with 4.3.4 so any additional information might be helpful. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Pavol Pitonak > Labels: memoryleak > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Wed Feb 12 11:11:29 2014 From: issues at jboss.org (Sebastian Cramer (JIRA)) Date: Wed, 12 Feb 2014 11:11:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13540) Websphere incarnation of MyFaces renderes optimized resources multiple times In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sebastian Cramer updated RF-13540: ---------------------------------- Git Pull Request: https://github.com/richfaces4/core/pull/20, https://github.com/richfaces/richfaces/pull/81 (was: https://github.com/richfaces4/core/pull/20) > Websphere incarnation of MyFaces renderes optimized resources multiple times > ---------------------------------------------------------------------------- > > Key: RF-13540 > URL: https://issues.jboss.org/browse/RF-13540 > Project: RichFaces > Issue Type: Patch > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 4.3.5, 5.0.0.Alpha3 > Environment: Myfaces/Websphere on all platforms > Reporter: Sebastian Cramer > Assignee: Sebastian Cramer > Labels: myfaces, websphere > Fix For: 4.3.6 > > > When enabling resource optimization the packed.js (and packed.css) are rendered multiple times. The previous fix for stock myfaces is not effective against IBM's myfaces impl. -- 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 From issues at jboss.org Wed Feb 12 11:11:29 2014 From: issues at jboss.org (Sebastian Cramer (JIRA)) Date: Wed, 12 Feb 2014 11:11:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13540) Websphere incarnation of MyFaces renderes optimized resources multiple times In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12943957#comment-12943957 ] Sebastian Cramer commented on RF-13540: --------------------------------------- added a pull-request for rf5.0 > Websphere incarnation of MyFaces renderes optimized resources multiple times > ---------------------------------------------------------------------------- > > Key: RF-13540 > URL: https://issues.jboss.org/browse/RF-13540 > Project: RichFaces > Issue Type: Patch > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 4.3.5, 5.0.0.Alpha3 > Environment: Myfaces/Websphere on all platforms > Reporter: Sebastian Cramer > Assignee: Sebastian Cramer > Labels: myfaces, websphere > Fix For: 4.3.6 > > > When enabling resource optimization the packed.js (and packed.css) are rendered multiple times. The previous fix for stock myfaces is not effective against IBM's myfaces impl. -- 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 From issues at jboss.org Wed Feb 12 14:23:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 12 Feb 2014 14:23:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13544) Upgrade integration tests to WildFly 8.0.0.Final In-Reply-To: References: Message-ID: Luk?? Fry? created RF-13544: ------------------------------- Summary: Upgrade integration tests to WildFly 8.0.0.Final Key: RF-13544 URL: https://issues.jboss.org/browse/RF-13544 Project: RichFaces Issue Type: Component Upgrade Security Level: Public (Everyone can see) Components: tests - functional Affects Versions: 5.0.0.Alpha3 Reporter: Luk?? Fry? Assignee: Luk?? Fry? Fix For: 5.0.0.Alpha3 -- 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 From issues at jboss.org Wed Feb 12 14:57:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 12 Feb 2014 14:57:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13540) Websphere incarnation of MyFaces renderes optimized resources multiple times In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13540?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944036#comment-12944036 ] Luk?? Fry? commented on RF-13540: --------------------------------- Thanks Seb, it's merged now. > Websphere incarnation of MyFaces renderes optimized resources multiple times > ---------------------------------------------------------------------------- > > Key: RF-13540 > URL: https://issues.jboss.org/browse/RF-13540 > Project: RichFaces > Issue Type: Patch > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 4.3.5, 5.0.0.Alpha3 > Environment: Myfaces/Websphere on all platforms > Reporter: Sebastian Cramer > Assignee: Sebastian Cramer > Labels: myfaces, websphere > Fix For: 4.3.6 > > > When enabling resource optimization the packed.js (and packed.css) are rendered multiple times. The previous fix for stock myfaces is not effective against IBM's myfaces impl. -- 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 From issues at jboss.org Wed Feb 12 15:11:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 12 Feb 2014 15:11:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13436) Upgrade CKEditor to 4.3 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13436?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13436: ---------------------------- Sprint: 5.0.0.Alpha4 - Sprint 1 > Upgrade CKEditor to 4.3 > ----------------------- > > Key: RF-13436 > URL: https://issues.jboss.org/browse/RF-13436 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: barbara b > Labels: rich_editor > Fix For: 5-Tracking > > > All current versions of Richfaces are working with CKEditor 3.6.6. Would it be possible to make an upgrade of CKEditor to a version 4.3? Some plugins for CKEditor are only working with the 4.X versions of the editor. -- 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 From issues at jboss.org Wed Feb 12 15:13:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 12 Feb 2014 15:13:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13436) Upgrade CKEditor to 4.3 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13436?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? reassigned RF-13436: ------------------------------- Assignee: Luk?? Fry? > Upgrade CKEditor to 4.3 > ----------------------- > > Key: RF-13436 > URL: https://issues.jboss.org/browse/RF-13436 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: barbara b > Assignee: Luk?? Fry? > Labels: rich_editor > Fix For: 5-Tracking > > > All current versions of Richfaces are working with CKEditor 3.6.6. Would it be possible to make an upgrade of CKEditor to a version 4.3? Some plugins for CKEditor are only working with the 4.X versions of the editor. -- 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 From issues at jboss.org Wed Feb 12 15:13:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 12 Feb 2014 15:13:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13436) Upgrade CKEditor to 4.3 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13436?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13436: ---------------------------- Fix Version/s: 5.0.0.Alpha4 (was: 5-Tracking) > Upgrade CKEditor to 4.3 > ----------------------- > > Key: RF-13436 > URL: https://issues.jboss.org/browse/RF-13436 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: barbara b > Assignee: Luk?? Fry? > Labels: rich_editor > Fix For: 5.0.0.Alpha4 > > > All current versions of Richfaces are working with CKEditor 3.6.6. Would it be possible to make an upgrade of CKEditor to a version 4.3? Some plugins for CKEditor are only working with the 4.X versions of the editor. -- 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 From issues at jboss.org Wed Feb 12 15:13:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 12 Feb 2014 15:13:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13436) Upgrade CKEditor to 4.3 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13436?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944040#comment-12944040 ] Luk?? Fry? commented on RF-13436: --------------------------------- We will switch to CKEditor 4.3, the dependency will be managed by RichWidgets subproject. > Upgrade CKEditor to 4.3 > ----------------------- > > Key: RF-13436 > URL: https://issues.jboss.org/browse/RF-13436 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: barbara b > Assignee: Luk?? Fry? > Labels: rich_editor > Fix For: 5.0.0.Alpha4 > > > All current versions of Richfaces are working with CKEditor 3.6.6. Would it be possible to make an upgrade of CKEditor to a version 4.3? Some plugins for CKEditor are only working with the 4.X versions of the editor. -- 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 From issues at jboss.org Wed Feb 12 16:09:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 12 Feb 2014 16:09:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12762) Duplicate id problem in ExtendedDatatable with dynamic columns In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12762?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12762: ------------------------------- Priority: Major (was: Critical) > Duplicate id problem in ExtendedDatatable with dynamic columns > -------------------------------------------------------------- > > Key: RF-12762 > URL: https://issues.jboss.org/browse/RF-12762 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.0.CR1 > Environment: Windows 7 , weblogic10.4.3, Myfaces 2.1.10, IE 9, FireFox 14.0.1 > Reporter: blam lam > Fix For: 5-Tracking > > > When the ExtendedDataTable contains dynamic columns (i.e. using for:each), "java.lang.IllegalStateException: component with duplicate id" will occur after the second submit from a commandButton. > The problem does not appear in 4.2.3 Final but found in 4.3 CR1 > Sample source code: > {code} > > > value="#{updateMarkBean.studentVoMarkAmends}" > var="studVo" > selectionMode="none" > height="100%"> > > > > Status > > > > > > > > > > value="#{studVo.getTaskMarkMap().get(tvo.task.taskId).amendedMark}" > size="1" maxlength="3"/> > > > > > action="#{updateMarkBean.doBeforeSave}" > styleClass="button blue"> > > > > > {code} -- 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 From issues at jboss.org Wed Feb 12 16:09:29 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 12 Feb 2014 16:09:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12762) Duplicate id problem in ExtendedDatatable with dynamic columns In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12762?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12762: ------------------------------- Fix Version/s: (was: 5-Tracking) > Duplicate id problem in ExtendedDatatable with dynamic columns > -------------------------------------------------------------- > > Key: RF-12762 > URL: https://issues.jboss.org/browse/RF-12762 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.0.CR1 > Environment: Windows 7 , weblogic10.4.3, Myfaces 2.1.10, IE 9, FireFox 14.0.1 > Reporter: blam lam > > When the ExtendedDataTable contains dynamic columns (i.e. using for:each), "java.lang.IllegalStateException: component with duplicate id" will occur after the second submit from a commandButton. > The problem does not appear in 4.2.3 Final but found in 4.3 CR1 > Sample source code: > {code} > > > value="#{updateMarkBean.studentVoMarkAmends}" > var="studVo" > selectionMode="none" > height="100%"> > > > > Status > > > > > > > > > > value="#{studVo.getTaskMarkMap().get(tvo.task.taskId).amendedMark}" > size="1" maxlength="3"/> > > > > > action="#{updateMarkBean.doBeforeSave}" > styleClass="button blue"> > > > > > {code} -- 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 From issues at jboss.org Wed Feb 12 16:11:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 12 Feb 2014 16:11:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12762) Duplicate id problem in ExtendedDatatable with dynamic columns In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12762?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12762: ---------------------------------- Assignee: Pavol Pitonak QE, please verify on both mojarra and myfaces. > Duplicate id problem in ExtendedDatatable with dynamic columns > -------------------------------------------------------------- > > Key: RF-12762 > URL: https://issues.jboss.org/browse/RF-12762 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.0.CR1 > Environment: Windows 7 , weblogic10.4.3, Myfaces 2.1.10, IE 9, FireFox 14.0.1 > Reporter: blam lam > Assignee: Pavol Pitonak > > When the ExtendedDataTable contains dynamic columns (i.e. using for:each), "java.lang.IllegalStateException: component with duplicate id" will occur after the second submit from a commandButton. > The problem does not appear in 4.2.3 Final but found in 4.3 CR1 > Sample source code: > {code} > > > value="#{updateMarkBean.studentVoMarkAmends}" > var="studVo" > selectionMode="none" > height="100%"> > > > > Status > > > > > > > > > > value="#{studVo.getTaskMarkMap().get(tvo.task.taskId).amendedMark}" > size="1" maxlength="3"/> > > > > > action="#{updateMarkBean.doBeforeSave}" > styleClass="button blue"> > > > > > {code} -- 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 From issues at jboss.org Wed Feb 12 16:27:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 12 Feb 2014 16:27:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11992) cache bug in portlet In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11992?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-11992. -------------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Out of Date > cache bug in portlet > -------------------- > > Key: RF-11992 > URL: https://issues.jboss.org/browse/RF-11992 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Affects Versions: 3.3.3.Final, 4.2.0.CR1 > Environment: jboss portal 2.7.2; Gatein portal > Reporter: Ivan Ravin > Assignee: Brian Leathem > Priority: Minor > > On Jboss and Gatein portal richfaces cant be cached when user is logged in. > Bug is found for richfaces 3.3.3 but i think can be reproduced for 4.x because org.richfaces.resource.AbstractCacheableResource has similar code. > The steps for reproduce bug are: > download portlet bridge 2.2 archive > deploy richFacesPortlet.war from portlet bridge archive (i used jboss portal 2.7.2 bundle and GateIn-3.1.0-FINAL-jbossas) > look at network activity (i did with firefox + firebug, the same result on any other browser). Just open page with richfaces portlet. > When user is not logged in, all richfaces resources are caching well, and this is headers returned by server: > |Cache-Control |max-age=86400| > |Content-Type |text/javascript| > |Date |Thu, 26 Jan 2012 17:57:39 GMT| > |Expires |27 Jan 2012 17:57:39 GMT| > |Last-Modified |26 Jan 2012 17:42:17 GMT| > |Server |Apache-Coyote/1.1| > |X-Powered-By |Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)/JBossWeb-2.0| > But when user is logged in all richfaces stuff come from network every time (more than 1.3 mb). > This is headers returned by portal 2.7.2 when user logged in: > |Cache-Control |{color:red}no-cache,{color} max-age=86400| > |Content-Type |text/javascript| > |Date |Thu, 26 Jan 2012 18:26:49 GMT| > |Expires |{color:red}Thu, 01 Jan 1970 03:00:00 MSK,{color} 27 Jan 2012 18:26:49 GMT| > |Last-Modified |26 Jan 2012 18:05:56 GMT| > |{color:red}Pragma{color} |{color:red}No-cache{color}| > |Server |Apache-Coyote/1.1| > |Transfer-Encoding |chunked| > |X-Powered-By |Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)/JBossWeb-2.0| > The same problem with GateIn-3.1.0-FINAL-jbossas bundle, but now only one wrong header: > |Cache-Control |max-age=86400| > |Content-Type |text/javascript;charset=UTF-8| > |Date |Sat, 28 Jan 2012 08:54:14 GMT| > |Expires |29 Jan 2012 08:54:14 GMT| > |Last-Modified |28 Jan 2012 08:51:11 GMT| > |{color:red}Pragma{color} |{color:red}No-cache{color}| > |Server |Apache-Coyote/1.1| > |Transfer-Encoding |chunked| > |X-Powered-By |Servlet 2.5; JBoss-5.0/JBossWeb-2.1| > This header (Pragma) appears only when user is logged in, and again, all richfaces resources come through network. > I did some debug and found that richfaces create good headers, but there is some code in portal which put wrong values into real response before richfaces. I cant find this code in portal sources, so maybe it is JBoss AS problem, or third party component. > In Gatein portal problem was partially resolved: it overwrites 2 wrong headers with values provided by richfaces, but "pragma" header is absent in richfaces response, and this way in secured portlets richfaces generate too much unnesessary traffic. > To solve problem for GateIn there is enough to provide empty Pragma header; To solve problem for JBoss Portal its required to fix resource headers processing in portal code, like it done in gatein. -- 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 From issues at jboss.org Wed Feb 12 17:11:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 12 Feb 2014 17:11:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12897) ExtendedPartialViewContextImpl swallows exceptions In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12897?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944059#comment-12944059 ] Brian Leathem commented on RF-12897: ------------------------------------ [~lfryc] is this still an issue with your proposed EPVC rewrite? > ExtendedPartialViewContextImpl swallows exceptions > -------------------------------------------------- > > Key: RF-12897 > URL: https://issues.jboss.org/browse/RF-12897 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Affects Versions: 4.2.2.Final > Environment: Windows 7, JDK 1.6 > Reporter: Cristian Cerb > Assignee: Luk?? Fry? > Labels: richfaces > Fix For: 5-Tracking > > Original Estimate: 4 hours > Remaining Estimate: 4 hours > > Method public VisitResult visit(VisitContext context, UIComponent target) of class ExtendedPartialViewContextImpl swallows exceptions. I think exceptions should be wrapped inside a FaceException and propagated. This class http://java.net/projects/mojarra/sources/svn/content/trunk/jsf-ri/src/main/java/com/sun/faces/context/PartialViewContextImpl.java seems to have served as a model for the RF one, but the RF class inadvertently chose to swallow exceptions instead of propagating them up. This causes unpredictable behaviour, such as system being stuck in the browser. > I just found an older version of Sun's Mojarra where they had the same issue, but the newer versions seem to have fixed it. See this taken from jsf 2.1.4: > {code} > public VisitResult visit(VisitContext context, UIComponent comp) { > try { > if (curPhase == PhaseId.APPLY_REQUEST_VALUES) { > // RELEASE_PENDING handle immediate request(s) > // If the user requested an immediate request > // Make sure to set the immediate flag here. > comp.processDecodes(ctx); > } else if (curPhase == PhaseId.PROCESS_VALIDATIONS) { > comp.processValidators(ctx); > } else if (curPhase == PhaseId.UPDATE_MODEL_VALUES) { > comp.processUpdates(ctx); > } else if (curPhase == PhaseId.RENDER_RESPONSE) { > PartialResponseWriter writer = ctx.getPartialViewContext().getPartialResponseWriter(); > writer.startUpdate(comp.getClientId(ctx)); > try { > // do the default behavior... > comp.encodeAll(ctx); > } > catch (Exception ce) { > if (LOGGER.isLoggable(Level.SEVERE)) { > LOGGER.severe(ce.toString()); > } > if (LOGGER.isLoggable(Level.FINE)) { > LOGGER.log(Level.FINE, > ce.toString(), > ce); > } > } > writer.endUpdate(); > } > else { > throw new IllegalStateException("I18N: Unexpected " + > "PhaseId passed to " + > " PhaseAwareContextCallback: " + > curPhase.toString()); > } > } > catch (IOException ex) { > ex.printStackTrace(); > } > // Once we visit a component, there is no need to visit > // its children, since processDecodes/Validators/Updates and > // encodeAll() already traverse the subtree. We return > // VisitResult.REJECT to supress the subtree visit. > return VisitResult.REJECT; > } > } > {code} -- 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 From issues at jboss.org Wed Feb 12 17:21:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 12 Feb 2014 17:21:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13539) r:fileUpload doesn't have the attribute fileUploadListener anymore In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13539?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13539: ------------------------------- Fix Version/s: 5.0.0.Alpha4 > r:fileUpload doesn't have the attribute fileUploadListener anymore > ------------------------------------------------------------------ > > Key: RF-13539 > URL: https://issues.jboss.org/browse/RF-13539 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 5.0.0.Alpha3 > Reporter: Juergen Zimmermann > Fix For: 5.0.0.Alpha4 > > > In RF 4.x and 5.0.0.Alpha1 the tag r:fileUpload had an attribute fileUploadListener to provide a listener which received the uploaded byte array. This attribute is gone. How shall one receive the uploaded bytes? -- 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 From issues at jboss.org Wed Feb 12 17:23:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 12 Feb 2014 17:23:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13458) CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13458. -------------------------------- Resolution: Rejected Great work [~jhuska]! > CommandLink Javassist Compatibility Failures (richfaces-5.0.0.Alpha2) > --------------------------------------------------------------------- > > Key: RF-13458 > URL: https://issues.jboss.org/browse/RF-13458 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Steven W. > Attachments: ExampleRefactoredRichNamespace.war > > > There appear to be compatibility issues with the richfaces-5.0.0.Alpha2 release and the javassist package. Using older versions of the package lead to failures stating that new javassist methods are not available. > When using the newer libraries (3.14 -> javassist-3.18.0-GA) exceptions are generated on the use of previously functioning command links (the corresponding methods are still the same signatures i.e. return String and take no parameters) > {code} > value="#{messages['listByUnit']}" > title="#{messages['titleListByUnit']}" > action="#{appController.selectCurrSelectionUnit}"/> > {code} > with > {code} > public String selectCurrSelectionUnit() > {code} > yields: > {code} > 2014-01-03 13:57:57,597 ERROR [org.jboss.seam.exception.Exceptions] - handled and logged exception > javax.servlet.ServletException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:606) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:374) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:83) > at org.jboss.seam.web.LoggingFilter.doFilter(LoggingFilter.java:60) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.IdentityFilter.doFilter(IdentityFilter.java:40) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.MultipartFilter.doFilter(MultipartFilter.java:90) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.ExceptionFilter.doFilter(ExceptionFilter.java:64) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.web.RedirectFilter.doFilter(RedirectFilter.java:45) > at org.jboss.seam.servlet.SeamFilter$FilterChainImpl.doFilter(SeamFilter.java:69) > at org.jboss.seam.servlet.SeamFilter.doFilter(SeamFilter.java:158) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1008) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:312) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) > at java.lang.Thread.run(Thread.java:619) > Caused by: javax.el.ELException: /layout/controller-selections.xhtml: Property 'selectCurrSelectionUnit' not found on type com.integrits.bean.Controller_$$_javassist_seam_2 > at com.sun.faces.facelets.compiler.AttributeInstruction.write(AttributeInstruction.java:94) > at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82) > at com.sun.faces.facelets.compiler.UILeaf.encodeAll(UILeaf.java:207) > at javax.faces.render.Renderer.encodeChildren(Renderer.java:168) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:105) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:304) > at com.sun.faces.renderkit.html_basic.GridRenderer.renderRow(GridRenderer.java:185) > at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:129) > at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:847) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1819) > at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1822) > at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:447) > at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) > at org.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:188) > at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:286) > at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:120) > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) > ... 33 more > {code} -- 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 From issues at jboss.org Wed Feb 12 17:27:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 12 Feb 2014 17:27:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13543) When r:ajax nested in r:select and event=keyup then error is thrown In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13543?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13543: ------------------------------- Fix Version/s: 5.0.0.Alpha4 > When r:ajax nested in r:select and event=keyup then error is thrown > ------------------------------------------------------------------- > > Key: RF-13543 > URL: https://issues.jboss.org/browse/RF-13543 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-a4j-core > Affects Versions: 5.0.0.Alpha2, 5.0.0.Alpha3 > Reporter: Juraj H?ska > Labels: regression > Fix For: 5.0.0.Alpha4 > > > Nested {{r:ajax}} with event set to {{keyup}} in {{r:select}} component causes this error being thrown when rendering such a page: > {code} > javax.faces.view.facelets.TagException: /index.xhtml @21,62 keyupevent is not supported for the UISelect > org.richfaces.ui.ajax.ajax.AjaxHandler.resolveEventName(AjaxHandler.java:209) > org.richfaces.ui.ajax.ajax.AjaxHandler.applyNested(AjaxHandler.java:190) > org.richfaces.ui.ajax.ajax.AjaxHandler.apply(AjaxHandler.java:133) > javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) > javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) > org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) > com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) > javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) > javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) > org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) > com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) > javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) > javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) > com.sun.faces.facelets.tag.ui.DefineHandler.applyDefinition(DefineHandler.java:106) > com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:201) > com.sun.faces.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:395) > com.sun.faces.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:366) > com.sun.faces.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:111) > javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:137) > org.richfaces.ui.behavior.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:53) > com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:190) > javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:120) > javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:95) > com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93) > com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:87) > com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:312) > com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:371) > com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:350) > com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:199) > com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:169) > com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:93) > com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:87) > com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:161) > com.sun.faces.application.view.FaceletViewHandlingStrategy.buildView(FaceletViewHandlingStrategy.java:980) > com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:99) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) > com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:219) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:647) > {code} > Issue is regression in 5.0.0.Alpha2, in other words it worked in older releases. -- 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 From issues at jboss.org Thu Feb 13 00:29:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Thu, 13 Feb 2014 00:29:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944093#comment-12944093 ] Brian Leathem commented on RF-13531: ------------------------------------ Sorry, I missed that the keyboard was broken to when reading the description. I've removed use of the keypress event for listening for "special" keys. I tested in recent Chrome, Firefox and IE and it works. There is a chance this breaks in old Firefox, but I don't have access to it. @QE please take this into consideration when testing the fix. > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11 > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Thu Feb 13 00:29:28 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Thu, 13 Feb 2014 00:29:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13531: ------------------------------- Labels: IE11 needs-qe (was: IE11) > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11, needs-qe > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Thu Feb 13 00:45:29 2014 From: issues at jboss.org (Kaveh A. (JIRA)) Date: Thu, 13 Feb 2014 00:45:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12682) extendedDataTable render issue with rich:tabPanel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12682?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944096#comment-12944096 ] Kaveh A. commented on RF-12682: ------------------------------- Hi Pavol There is really no need to create another issue. This issue was never fixed. With every new release of RichFaces we have to open the jars and make the above modifications to get it to work for us. This issue is more of a display issue for extended data table where some columns (usually non-forzen columns) will disappear. This only happens when the table is hidden during the load and then it is made visible. Feel free to use the attached program to reproduce. In this particular case the extended data table is hidden in one of the tabs of tabPanel but any parent component that hides the extended data table during the load and then un-hides it will have this issue. It is critical to note that extended data table should be empty to reproduce this error. > extendedDataTable render issue with rich:tabPanel > ------------------------------------------------- > > Key: RF-12682 > URL: https://issues.jboss.org/browse/RF-12682 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.3.Final, 4.3.0.M3, 4.3.0.CR1, 4.3.0.Final > Reporter: Kaveh A. > Labels: extendedDataTable, render, richfaces, tabpanel, testcase_provided > Attachments: richfacesBug2.zip, RichFacesBugEclipseProject.zip > > > This issue is not just specific to tabPanel. Anytime the extendedDataTable is hidden (when the page loads) and then it is made visible later the table can not display the data (table is empty at the load time). > In this particular case if we load a page with two tabs. Furthermore if we have one extendedDataTable in each tab (the first tab shows and the second tab is not shown at first). In this case once the user clicks on the second tab and tries to populate the extendedDataTable (via any action). Then the table is not rendered properly. A sample project has been provided at the following link that further describe this issue. You can download the eclipse project attached at the end of the following message to reproduce this issue. > https://community.jboss.org/message/783787 -- 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 From issues at jboss.org Thu Feb 13 02:13:28 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Thu, 13 Feb 2014 02:13:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12762) Duplicate id problem in ExtendedDatatable with dynamic columns In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12762?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-12762: ---------------------------------- Assignee: Matej Novotny (was: Pavol Pitonak) > Duplicate id problem in ExtendedDatatable with dynamic columns > -------------------------------------------------------------- > > Key: RF-12762 > URL: https://issues.jboss.org/browse/RF-12762 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.0.CR1 > Environment: Windows 7 , weblogic10.4.3, Myfaces 2.1.10, IE 9, FireFox 14.0.1 > Reporter: blam lam > Assignee: Matej Novotny > > When the ExtendedDataTable contains dynamic columns (i.e. using for:each), "java.lang.IllegalStateException: component with duplicate id" will occur after the second submit from a commandButton. > The problem does not appear in 4.2.3 Final but found in 4.3 CR1 > Sample source code: > {code} > > > value="#{updateMarkBean.studentVoMarkAmends}" > var="studVo" > selectionMode="none" > height="100%"> > > > > Status > > > > > > > > > > value="#{studVo.getTaskMarkMap().get(tvo.task.taskId).amendedMark}" > size="1" maxlength="3"/> > > > > > action="#{updateMarkBean.doBeforeSave}" > styleClass="button blue"> > > > > > {code} -- 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 From issues at jboss.org Thu Feb 13 03:21:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:21:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13545) Simpleapp: Support for servlets/Java EE containers at generation time In-Reply-To: References: Message-ID: Juraj H?ska created RF-13545: -------------------------------- Summary: Simpleapp: Support for servlets/Java EE containers at generation time Key: RF-13545 URL: https://issues.jboss.org/browse/RF-13545 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Components: archetype Affects Versions: 5.0.0.Alpha3 Environment: simpleapp archetype Reporter: Juraj H?ska In [this|https://community.jboss.org/message/857393#857393] discussion [~bleathem] wrote: {quote} I'd like to see us support both servlet and EE containers with our archetypes at generation time. We'd build in the archetype conditional asking the user if the generated project should target EE or servlet containers. This should also be done in our Forge plugin. {quote} {quote} Taking a profile approach leaves a lot of unnecessary clutter in their pom.xml. whereas asking at archetype evaluation time we can trim the unnecessary pieces out of the pom.xml. {quote} -- 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 From issues at jboss.org Thu Feb 13 03:29:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:29:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13546) Forge plugin: support for Servlet or JavaEE containers In-Reply-To: References: Message-ID: Juraj H?ska created RF-13546: -------------------------------- Summary: Forge plugin: support for Servlet or JavaEE containers Key: RF-13546 URL: https://issues.jboss.org/browse/RF-13546 Project: RichFaces Issue Type: Feature Request Security Level: Public (Everyone can see) Affects Versions: 5.0.0.Alpha3 Reporter: Juraj H?ska Priority: Minor There should be taken similar approach as in RF-13545 for RichFaces Forge plugin. That is to ask whether an user wants Servlet or Java EE container, and then create a profile for it. -- 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 From issues at jboss.org Thu Feb 13 03:29:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:29:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13545) Simpleapp: Support for servlets/Java EE containers at generation time In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13545: ----------------------------- Priority: Minor (was: Major) > Simpleapp: Support for servlets/Java EE containers at generation time > --------------------------------------------------------------------- > > Key: RF-13545 > URL: https://issues.jboss.org/browse/RF-13545 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: archetype > Affects Versions: 5.0.0.Alpha3 > Environment: simpleapp archetype > Reporter: Juraj H?ska > Priority: Minor > > In [this|https://community.jboss.org/message/857393#857393] discussion [~bleathem] wrote: > {quote} > I'd like to see us support both servlet and EE containers with our archetypes at generation time. We'd build in the archetype conditional asking the user if the generated project should target EE or servlet containers. This should also be done in our Forge plugin. > {quote} > {quote} > Taking a profile approach leaves a lot of unnecessary clutter in their pom.xml. whereas asking at archetype evaluation time we can trim the unnecessary pieces out of the pom.xml. > {quote} -- 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 From issues at jboss.org Thu Feb 13 03:39:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:39:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource doesn't throw an exception In-Reply-To: References: Message-ID: Luk?? Macko created RF-13547: -------------------------------- Summary: @ResourceDependency with missing resource doesn't throw an exception Key: RF-13547 URL: https://issues.jboss.org/browse/RF-13547 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: cdk Reporter: Luk?? Macko If there is an annotation {{@ResourceDependency}} with not existing resource such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Thu Feb 13 03:49:28 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:49:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13548) Clean using of guava dependency across framework In-Reply-To: References: Message-ID: Juraj H?ska created RF-13548: -------------------------------- Summary: Clean using of guava dependency across framework Key: RF-13548 URL: https://issues.jboss.org/browse/RF-13548 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: compatibility, core, third-party Affects Versions: 5.0.0.Alpha3 Environment: Guava dependency and Tomcat 8 Reporter: Juraj H?ska As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. * We should investigate whether _maven shade_ plugin will for any good * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} It seems that this blocks using of Tomcat 8 properly. -- 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 From issues at jboss.org Thu Feb 13 03:51:29 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:51:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13545) Simpleapp: Support for servlets/Java EE containers at generation time In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13545?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13545: ----------------------------- Forum Reference: https://community.jboss.org/thread/236741 > Simpleapp: Support for servlets/Java EE containers at generation time > --------------------------------------------------------------------- > > Key: RF-13545 > URL: https://issues.jboss.org/browse/RF-13545 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: archetype > Affects Versions: 5.0.0.Alpha3 > Environment: simpleapp archetype > Reporter: Juraj H?ska > Priority: Minor > > In [this|https://community.jboss.org/message/857393#857393] discussion [~bleathem] wrote: > {quote} > I'd like to see us support both servlet and EE containers with our archetypes at generation time. We'd build in the archetype conditional asking the user if the generated project should target EE or servlet containers. This should also be done in our Forge plugin. > {quote} > {quote} > Taking a profile approach leaves a lot of unnecessary clutter in their pom.xml. whereas asking at archetype evaluation time we can trim the unnecessary pieces out of the pom.xml. > {quote} -- 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 From issues at jboss.org Thu Feb 13 03:51:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:51:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource doesn't throw an exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13547: ---------------------------- Priority: Minor (was: Major) > @ResourceDependency with missing resource doesn't throw an exception > -------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: cdk > Reporter: Luk?? Macko > Priority: Minor > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Thu Feb 13 03:51:29 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:51:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13548) Clean using of guava dependency across framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraj H?ska updated RF-13548: ----------------------------- Description: As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. * We should investigate whether _maven shade_ plugin will be for any good * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} It seems that this blocks using of Tomcat 8 properly. was: As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. * We should investigate whether _maven shade_ plugin will for any good * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} It seems that this blocks using of Tomcat 8 properly. > Clean using of guava dependency across framework > ------------------------------------------------ > > Key: RF-13548 > URL: https://issues.jboss.org/browse/RF-13548 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: compatibility, core, third-party > Affects Versions: 5.0.0.Alpha3 > Environment: Guava dependency and Tomcat 8 > Reporter: Juraj H?ska > > As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. > * We should investigate whether _maven shade_ plugin will be for any good > * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} > It seems that this blocks using of Tomcat 8 properly. -- 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 From issues at jboss.org Thu Feb 13 03:55:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:55:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource should throw meaningful exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Macko updated RF-13547: ----------------------------- Summary: @ResourceDependency with missing resource should throw meaningful exception (was: @ResourceDependency with missing resource doesn't throw an exception) > @ResourceDependency with missing resource should throw meaningful exception > --------------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: cdk > Reporter: Luk?? Macko > Priority: Minor > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Thu Feb 13 03:57:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Macko_=28JIRA=29?=) Date: Thu, 13 Feb 2014 03:57:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource should throw meaningful exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944125#comment-12944125 ] Luk?? Macko commented on RF-13547: ---------------------------------- com.google.common.cache.CacheLoader$InvalidCacheLoadException: CacheLoader returned null for key org.richfaces:base-component. at com.google.common.cache.LocalCache$Segment.getAndRecordStats(LocalCache.java:2407) at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2375) at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2337) at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2252) at com.google.common.cache.LocalCache.get(LocalCache.java:3990) at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3994) at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4878) at org.richfaces.resource.ResourceLibraryFactoryImpl.getResourceLibrary(ResourceLibraryFactoryImpl.java:85) at org.richfaces.ui.core.ResourceLibraryRenderer.encodeEnd(ResourceLibraryRenderer.java:67) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) at com.sun.faces.renderkit.html_basic.HeadRenderer.encodeHeadResources(HeadRenderer.java:105) at com.sun.faces.renderkit.html_basic.HeadRenderer.encodeEnd(HeadRenderer.java:92) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402) at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) at java.lang.Thread.run(Thread.java:724) > @ResourceDependency with missing resource should throw meaningful exception > --------------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: cdk > Reporter: Luk?? Macko > Priority: Minor > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Thu Feb 13 04:07:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 13 Feb 2014 04:07:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource should throw meaningful exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944125#comment-12944125 ] Luk?? Fry? edited comment on RF-13547 at 2/13/14 4:06 AM: ---------------------------------------------------------- {code} com.google.common.cache.CacheLoader$InvalidCacheLoadException: CacheLoader returned null for key org.richfaces:base-component. at com.google.common.cache.LocalCache$Segment.getAndRecordStats(LocalCache.java:2407) at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2375) at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2337) at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2252) at com.google.common.cache.LocalCache.get(LocalCache.java:3990) at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3994) at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4878) at org.richfaces.resource.ResourceLibraryFactoryImpl.getResourceLibrary(ResourceLibraryFactoryImpl.java:85) at org.richfaces.ui.core.ResourceLibraryRenderer.encodeEnd(ResourceLibraryRenderer.java:67) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) at com.sun.faces.renderkit.html_basic.HeadRenderer.encodeHeadResources(HeadRenderer.java:105) at com.sun.faces.renderkit.html_basic.HeadRenderer.encodeEnd(HeadRenderer.java:92) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402) at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) at java.lang.Thread.run(Thread.java:724) {code} was (Author: lukindo): com.google.common.cache.CacheLoader$InvalidCacheLoadException: CacheLoader returned null for key org.richfaces:base-component. at com.google.common.cache.LocalCache$Segment.getAndRecordStats(LocalCache.java:2407) at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2375) at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2337) at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2252) at com.google.common.cache.LocalCache.get(LocalCache.java:3990) at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3994) at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4878) at org.richfaces.resource.ResourceLibraryFactoryImpl.getResourceLibrary(ResourceLibraryFactoryImpl.java:85) at org.richfaces.ui.core.ResourceLibraryRenderer.encodeEnd(ResourceLibraryRenderer.java:67) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) at com.sun.faces.renderkit.html_basic.HeadRenderer.encodeHeadResources(HeadRenderer.java:105) at com.sun.faces.renderkit.html_basic.HeadRenderer.encodeEnd(HeadRenderer.java:92) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:875) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1786) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1782) at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:402) at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:125) at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:288) at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:121) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) at java.lang.Thread.run(Thread.java:724) > @ResourceDependency with missing resource should throw meaningful exception > --------------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: cdk > Reporter: Luk?? Macko > Priority: Minor > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Thu Feb 13 06:09:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Thu, 13 Feb 2014 06:09:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13549) Photoalbum: cannot upload image In-Reply-To: References: Message-ID: Ji?? ?tefek created RF-13549: -------------------------------- Summary: Photoalbum: cannot upload image Key: RF-13549 URL: https://issues.jboss.org/browse/RF-13549 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: examples Reporter: Ji?? ?tefek Assignee: Michal Petrov Fix For: 4.3.6 The uploaded image is not saved to db. After this [commit|https://github.com/richfaces4/dev-examples/commit/0c787a307f6cdba9329b76eba020df80d6a0f02d#diff-1] -- 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 From issues at jboss.org Thu Feb 13 06:11:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Thu, 13 Feb 2014 06:11:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13549) Photoalbum: cannot upload image In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13549?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944197#comment-12944197 ] Ji?? ?tefek commented on RF-13549: ---------------------------------- Same as [RF-13257|https://issues.jboss.org/browse/RF-13257] > Photoalbum: cannot upload image > ------------------------------- > > Key: RF-13549 > URL: https://issues.jboss.org/browse/RF-13549 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Reporter: Ji?? ?tefek > Assignee: Michal Petrov > Labels: photoalbum > Fix For: 4.3.6 > > > The uploaded image is not saved to db. > After this [commit|https://github.com/richfaces4/dev-examples/commit/0c787a307f6cdba9329b76eba020df80d6a0f02d#diff-1] -- 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 From issues at jboss.org Thu Feb 13 06:21:28 2014 From: issues at jboss.org (Pavel Slegr (JIRA)) Date: Thu, 13 Feb 2014 06:21:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13247) Upgrade the RichFaces guava dependency to the latest version In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944199#comment-12944199 ] Pavel Slegr commented on RF-13247: ---------------------------------- Do we need to use guava lib at all ? I mean, RF 5.x is intended to be used with WildFly 8, which requires Java SE7 at minimum... while RF states as requirements JDK6 (http://docs.jboss.org/richfaces/latest_5_X/Developer_Guide/en-US/html_single/#sect-Developer_Guide-Getting_started_with_RichFaces-Technical_Requirements) which is EOLed anyway... 1. Aren't the majority of guava features covered with JDK7 already ? Is there a desperate need to use it ? 2. Shouldn't RF5 jump to minimum Java SE7 ? just asking... > Upgrade the RichFaces guava dependency to the latest version > ------------------------------------------------------------ > > Key: RF-13247 > URL: https://issues.jboss.org/browse/RF-13247 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Jeremy Landis > Assignee: Brian Leathem > Priority: Minor > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Upgrading to guava 15 from 14.0.1 causes this richfaces error. I have not looked into this further but wanted to put it out there as an issue. > Caused by: java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(Lcom/google/common/base/Function;)Ljava/util/concurrent/ConcurrentMap; from class org.richfaces.resource.ResourceLibraryFactoryImpl -- 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 From issues at jboss.org Thu Feb 13 06:41:28 2014 From: issues at jboss.org (Thorsten Richter (JIRA)) Date: Thu, 13 Feb 2014 06:41:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13247) Upgrade the RichFaces guava dependency to the latest version In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944205#comment-12944205 ] Thorsten Richter commented on RF-13247: --------------------------------------- [~lfryc] I think I used the "jboss-as-kitchensink-rf" project as a template for setting up the project. > Upgrade the RichFaces guava dependency to the latest version > ------------------------------------------------------------ > > Key: RF-13247 > URL: https://issues.jboss.org/browse/RF-13247 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Jeremy Landis > Assignee: Brian Leathem > Priority: Minor > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Upgrading to guava 15 from 14.0.1 causes this richfaces error. I have not looked into this further but wanted to put it out there as an issue. > Caused by: java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(Lcom/google/common/base/Function;)Ljava/util/concurrent/ConcurrentMap; from class org.richfaces.resource.ResourceLibraryFactoryImpl -- 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 From issues at jboss.org Thu Feb 13 07:23:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Thu, 13 Feb 2014 07:23:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek updated RF-13531: ----------------------------- Labels: IE11 (was: IE11 needs-qe) > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11 > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Thu Feb 13 07:25:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Thu, 13 Feb 2014 07:25:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13531) selects: cannot select option on IE11 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13531?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944222#comment-12944222 ] Ji?? ?tefek commented on RF-13531: ---------------------------------- Verified, leaving opened for verification in RF 4.5 and 5 > selects: cannot select option on IE11 > ------------------------------------- > > Key: RF-13531 > URL: https://issues.jboss.org/browse/RF-13531 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5, 4.5.0.Alpha2, 5.0.0.Alpha3 > Environment: IE 11 > Reporter: Ji?? ?tefek > Assignee: Brian Leathem > Labels: IE11 > Fix For: 4.3.6 > > > Components: autocomplete, select, inplaceSelect. > Works on IE 10. > ---- > Issues: > * User cannot visually select an option from the popup list == moving mouse over the items in the list will not change theirs class. > ** however clicking on the item will select the option correctly. {color:red}EXCEPT autocomplete (RF4), where it will not select anything{color}. > ** workaround: the item can be selected, when moving off the list and back to it on the correct item, but the cursor should not move through scroller. > * User cannot select option with keyboard. -- 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 From issues at jboss.org Thu Feb 13 07:33:28 2014 From: issues at jboss.org (Michal Petrov (JIRA)) Date: Thu, 13 Feb 2014 07:33:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13549) Photoalbum: cannot upload image In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13549?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michal Petrov resolved RF-13549. -------------------------------- Resolution: Done > Photoalbum: cannot upload image > ------------------------------- > > Key: RF-13549 > URL: https://issues.jboss.org/browse/RF-13549 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Reporter: Ji?? ?tefek > Assignee: Michal Petrov > Labels: photoalbum > Fix For: 4.3.6 > > > The uploaded image is not saved to db. > After this [commit|https://github.com/richfaces4/dev-examples/commit/0c787a307f6cdba9329b76eba020df80d6a0f02d#diff-1] -- 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 From issues at jboss.org Thu Feb 13 08:21:28 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Thu, 13 Feb 2014 08:21:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13492) Photoalbum: cancel selection in other r:trees when browsing an album navigation panel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13492?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek closed RF-13492. ---------------------------- verified, closing > Photoalbum: cancel selection in other r:trees when browsing an album navigation panel > ------------------------------------------------------------------------------------- > > Key: RF-13492 > URL: https://issues.jboss.org/browse/RF-13492 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: examples > Affects Versions: 4.3.5 > Reporter: Luk?? Fry? > Assignee: Michal Petrov > Labels: photoalbum > Fix For: 4.3.6 > > Attachments: screenshot02.png > > > When we have several album categories opened, we can select a current album from each of them. > Only one is an opened one (visible in the main page content area), but the r:tree components show current selection for each album shelf separately. > Look at the attached screenshot. -- 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 From issues at jboss.org Thu Feb 13 08:23:29 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Thu, 13 Feb 2014 08:23:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13549) Photoalbum: cannot upload image In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13549?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek closed RF-13549. ---------------------------- verified, closing > Photoalbum: cannot upload image > ------------------------------- > > Key: RF-13549 > URL: https://issues.jboss.org/browse/RF-13549 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Reporter: Ji?? ?tefek > Assignee: Michal Petrov > Labels: photoalbum > Fix For: 4.3.6 > > > The uploaded image is not saved to db. > After this [commit|https://github.com/richfaces4/dev-examples/commit/0c787a307f6cdba9329b76eba020df80d6a0f02d#diff-1] -- 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 From issues at jboss.org Thu Feb 13 09:15:32 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Thu, 13 Feb 2014 09:15:32 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13317) ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13317?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944271#comment-12944271 ] Steve Oh commented on RF-13317: ------------------------------- backporting to 4.3 would be great ;) see my SO question: http://stackoverflow.com/questions/21726718/can-i-use-fixviewstate-js-from-omnifaces-with-richfaces-a4jajax-rf4jsf2-2-mo regards > ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() > ----------------------------------------------------------------------------------------------- > > Key: RF-13317 > URL: https://issues.jboss.org/browse/RF-13317 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: Wildfly-8.0.0.Beta1, jsf-impl-2.2.3-jbossorg-1 > Reporter: Matti Bickel > Assignee: Luk?? Fry? > Priority: Critical > Labels: backport, jsf22 > Fix For: 5.0.0.Alpha3 > > > I'm using several {{}} fields in a {{}}, but have noticed the issue with several other AJAX requests: > When the response comes back, the data is fine but I get a JSF error saying > bq. During update: javax.faces.ViewState not found > Following that, no componentData is available to the Autocomplete component and no suggestions get displayed. > For reference the [javadoc for ResponseStateManager.VIEW_STATE_PARAM|https://javaserverfaces.java.net/nonav/docs/2.2/javadocs/javax/faces/render/ResponseStateManager.html#VIEW_STATE_PARAM] says: > {quote} > Implementations must use this constant field value as the name of the client parameter in which to save the state between requests. The id attribute must be a concatenation of the return from UIComponent.getContainerClientId(javax.faces.context.FacesContext), the return from UINamingContainer.getSeparatorChar(javax.faces.context.FacesContext), this constant field value, the separator char, and a number that is guaranteed to be unique with respect to all the other instances of this kind of client parameter in the view. > {quote} -- 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 From issues at jboss.org Thu Feb 13 11:39:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 13 Feb 2014 11:39:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12897) ExtendedPartialViewContextImpl swallows exceptions In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12897?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12897: ---------------------------- Fix Version/s: (was: 5-Tracking) I will check - un-assigning for assessment and scheduling. > ExtendedPartialViewContextImpl swallows exceptions > -------------------------------------------------- > > Key: RF-12897 > URL: https://issues.jboss.org/browse/RF-12897 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Affects Versions: 4.2.2.Final > Environment: Windows 7, JDK 1.6 > Reporter: Cristian Cerb > Assignee: Luk?? Fry? > Labels: richfaces > Original Estimate: 4 hours > Remaining Estimate: 4 hours > > Method public VisitResult visit(VisitContext context, UIComponent target) of class ExtendedPartialViewContextImpl swallows exceptions. I think exceptions should be wrapped inside a FaceException and propagated. This class http://java.net/projects/mojarra/sources/svn/content/trunk/jsf-ri/src/main/java/com/sun/faces/context/PartialViewContextImpl.java seems to have served as a model for the RF one, but the RF class inadvertently chose to swallow exceptions instead of propagating them up. This causes unpredictable behaviour, such as system being stuck in the browser. > I just found an older version of Sun's Mojarra where they had the same issue, but the newer versions seem to have fixed it. See this taken from jsf 2.1.4: > {code} > public VisitResult visit(VisitContext context, UIComponent comp) { > try { > if (curPhase == PhaseId.APPLY_REQUEST_VALUES) { > // RELEASE_PENDING handle immediate request(s) > // If the user requested an immediate request > // Make sure to set the immediate flag here. > comp.processDecodes(ctx); > } else if (curPhase == PhaseId.PROCESS_VALIDATIONS) { > comp.processValidators(ctx); > } else if (curPhase == PhaseId.UPDATE_MODEL_VALUES) { > comp.processUpdates(ctx); > } else if (curPhase == PhaseId.RENDER_RESPONSE) { > PartialResponseWriter writer = ctx.getPartialViewContext().getPartialResponseWriter(); > writer.startUpdate(comp.getClientId(ctx)); > try { > // do the default behavior... > comp.encodeAll(ctx); > } > catch (Exception ce) { > if (LOGGER.isLoggable(Level.SEVERE)) { > LOGGER.severe(ce.toString()); > } > if (LOGGER.isLoggable(Level.FINE)) { > LOGGER.log(Level.FINE, > ce.toString(), > ce); > } > } > writer.endUpdate(); > } > else { > throw new IllegalStateException("I18N: Unexpected " + > "PhaseId passed to " + > " PhaseAwareContextCallback: " + > curPhase.toString()); > } > } > catch (IOException ex) { > ex.printStackTrace(); > } > // Once we visit a component, there is no need to visit > // its children, since processDecodes/Validators/Updates and > // encodeAll() already traverse the subtree. We return > // VisitResult.REJECT to supress the subtree visit. > return VisitResult.REJECT; > } > } > {code} -- 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 From issues at jboss.org Thu Feb 13 12:09:28 2014 From: issues at jboss.org (=?UTF-8?Q?Marcel_=C5=A0ebek_=28JIRA=29?=) Date: Thu, 13 Feb 2014 12:09:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944368#comment-12944368 ] Marcel ?ebek commented on RF-13250: ----------------------------------- I'll try to answer your questions and describe the environment in which I see the leaking behavior. I also present some ideas what could be the cause. The first thing is that 'old-version' atmosphere requests seem to be one way how to rapidly create a huge number (in our case 700 000) of AtomicBoolean instances. However, even without such requests, heap gets exhausted. I suspect a relation to RFPL-2345 - problem with dead sessions. With RF 4.3.3, heap gets filled with MessageData classes, even with org.atmosphere.cpr.CometSupport.maxInactiveActivity = 60000 and org.richfaces.push.session.maxInactiveInterval = 60000 parameters. However, with RF 4.3.5, heap gets filled with AtomicBoolean and char[] instances (and possibly other classes). The heap growth in both cases is similar and very non-linear. In the beginning, the number is 0 (for MessageData) or low (AtomicBoolean), but after some time, it starts to grow and the speed of grow increases. The application runs in non-critical production environment, so I cannot tell exactly what the clients are doing, but it seems that new dead session appears from time to time, and with each new dead session, the speed of memory exhaustion grows. I'm not sure if I'd be able to isolate a small testcase. However, I have a heap dump which I can provide you. I don't want to provide it publicly (it may contant some sensitive information), but if you are interested, I can provide it to you privately. It is about 70M gzipped. Finally, here are the answers for your questions. Except a few libraries, I don't use any framework that should affect the result. The application is deployed on jboss 7.1 (latest build from git) with default jsf (mojarra 2.1.16) and native ssl on 64-bit linux. Extreme memory usage was not my invention, this name was chosen by original bug reporter. However, in my case, the application exhausts 0.75 GB heap with quite low but continuous load in scope of days (like 1-3 days). Low load means something like at most 5 clients simultaneously, but often just one client. The application is pushing just "null" messages (requests for re-rendering) with no useful data. Any additional questions or suggestions what to try are welcome. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Pavol Pitonak > Labels: memoryleak > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Thu Feb 13 13:17:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 13 Feb 2014 13:17:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12897) ExtendedPartialViewContextImpl swallows exceptions In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12897?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944362#comment-12944362 ] Luk?? Fry? edited comment on RF-12897 at 2/13/14 1:16 PM: ---------------------------------------------------------- I will check - un-scheduling for assessment and re-scheduling. was (Author: lfryc): I will check - un-assigning for assessment and scheduling. > ExtendedPartialViewContextImpl swallows exceptions > -------------------------------------------------- > > Key: RF-12897 > URL: https://issues.jboss.org/browse/RF-12897 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Affects Versions: 4.2.2.Final > Environment: Windows 7, JDK 1.6 > Reporter: Cristian Cerb > Assignee: Luk?? Fry? > Labels: richfaces > Original Estimate: 4 hours > Remaining Estimate: 4 hours > > Method public VisitResult visit(VisitContext context, UIComponent target) of class ExtendedPartialViewContextImpl swallows exceptions. I think exceptions should be wrapped inside a FaceException and propagated. This class http://java.net/projects/mojarra/sources/svn/content/trunk/jsf-ri/src/main/java/com/sun/faces/context/PartialViewContextImpl.java seems to have served as a model for the RF one, but the RF class inadvertently chose to swallow exceptions instead of propagating them up. This causes unpredictable behaviour, such as system being stuck in the browser. > I just found an older version of Sun's Mojarra where they had the same issue, but the newer versions seem to have fixed it. See this taken from jsf 2.1.4: > {code} > public VisitResult visit(VisitContext context, UIComponent comp) { > try { > if (curPhase == PhaseId.APPLY_REQUEST_VALUES) { > // RELEASE_PENDING handle immediate request(s) > // If the user requested an immediate request > // Make sure to set the immediate flag here. > comp.processDecodes(ctx); > } else if (curPhase == PhaseId.PROCESS_VALIDATIONS) { > comp.processValidators(ctx); > } else if (curPhase == PhaseId.UPDATE_MODEL_VALUES) { > comp.processUpdates(ctx); > } else if (curPhase == PhaseId.RENDER_RESPONSE) { > PartialResponseWriter writer = ctx.getPartialViewContext().getPartialResponseWriter(); > writer.startUpdate(comp.getClientId(ctx)); > try { > // do the default behavior... > comp.encodeAll(ctx); > } > catch (Exception ce) { > if (LOGGER.isLoggable(Level.SEVERE)) { > LOGGER.severe(ce.toString()); > } > if (LOGGER.isLoggable(Level.FINE)) { > LOGGER.log(Level.FINE, > ce.toString(), > ce); > } > } > writer.endUpdate(); > } > else { > throw new IllegalStateException("I18N: Unexpected " + > "PhaseId passed to " + > " PhaseAwareContextCallback: " + > curPhase.toString()); > } > } > catch (IOException ex) { > ex.printStackTrace(); > } > // Once we visit a component, there is no need to visit > // its children, since processDecodes/Validators/Updates and > // encodeAll() already traverse the subtree. We return > // VisitResult.REJECT to supress the subtree visit. > return VisitResult.REJECT; > } > } > {code} -- 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 From issues at jboss.org Thu Feb 13 13:25:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 13 Feb 2014 13:25:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13317) ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13317?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944410#comment-12944410 ] Luk?? Fry? commented on RF-13317: --------------------------------- Backport issue opened here: https://issues.jboss.org/browse/RF-13507 > ExtendedPartialViewContextImpl should specify correct javax.faces.ViewState id in startUpdate() > ----------------------------------------------------------------------------------------------- > > Key: RF-13317 > URL: https://issues.jboss.org/browse/RF-13317 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: Wildfly-8.0.0.Beta1, jsf-impl-2.2.3-jbossorg-1 > Reporter: Matti Bickel > Assignee: Luk?? Fry? > Priority: Critical > Labels: backport, jsf22 > Fix For: 5.0.0.Alpha3 > > > I'm using several {{}} fields in a {{}}, but have noticed the issue with several other AJAX requests: > When the response comes back, the data is fine but I get a JSF error saying > bq. During update: javax.faces.ViewState not found > Following that, no componentData is available to the Autocomplete component and no suggestions get displayed. > For reference the [javadoc for ResponseStateManager.VIEW_STATE_PARAM|https://javaserverfaces.java.net/nonav/docs/2.2/javadocs/javax/faces/render/ResponseStateManager.html#VIEW_STATE_PARAM] says: > {quote} > Implementations must use this constant field value as the name of the client parameter in which to save the state between requests. The id attribute must be a concatenation of the return from UIComponent.getContainerClientId(javax.faces.context.FacesContext), the return from UINamingContainer.getSeparatorChar(javax.faces.context.FacesContext), this constant field value, the separator char, and a number that is guaranteed to be unique with respect to all the other instances of this kind of client parameter in the view. > {quote} -- 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 From issues at jboss.org Thu Feb 13 13:47:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 13 Feb 2014 13:47:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13247) Upgrade the RichFaces guava dependency to the latest version In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944419#comment-12944419 ] Luk?? Fry? commented on RF-13247: --------------------------------- [~pslegr], more on dropping Guava: https://community.jboss.org/message/857565#857565 > Upgrade the RichFaces guava dependency to the latest version > ------------------------------------------------------------ > > Key: RF-13247 > URL: https://issues.jboss.org/browse/RF-13247 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Jeremy Landis > Assignee: Brian Leathem > Priority: Minor > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Upgrading to guava 15 from 14.0.1 causes this richfaces error. I have not looked into this further but wanted to put it out there as an issue. > Caused by: java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(Lcom/google/common/base/Function;)Ljava/util/concurrent/ConcurrentMap; from class org.richfaces.resource.ResourceLibraryFactoryImpl -- 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 From issues at jboss.org Thu Feb 13 14:11:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 13 Feb 2014 14:11:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13544) Upgrade integration tests to WildFly 8.0.0.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13544. ----------------------------- Resolution: Done > Upgrade integration tests to WildFly 8.0.0.Final > ------------------------------------------------ > > Key: RF-13544 > URL: https://issues.jboss.org/browse/RF-13544 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha3 > > -- 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 From issues at jboss.org Thu Feb 13 14:21:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 13 Feb 2014 14:21:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13101) rich:select Method getSelectInputLabel is not working when using objects In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944430#comment-12944430 ] Luk?? Fry? commented on RF-13101: --------------------------------- [~jigg4], any chance you could provide a reproducer here? Or at least clarify how we could reproduce it? Matej [tried|https://github.com/richfaces4/components/pull/83#issuecomment-34970700] to reproduce it here, but with no luck. > rich:select Method getSelectInputLabel is not working when using objects > ------------------------------------------------------------------------ > > Key: RF-13101 > URL: https://issues.jboss.org/browse/RF-13101 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, component-selects > Affects Versions: 4.3.2, 5.0.0.Alpha1 > Reporter: J W > Labels: rich:select, select > Fix For: 4.5-Tracking > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > The condition of the if-statement in org.richfaces.renderkit.SelectHelper.getSelectInputLabel(FacesContext facesContext, UIComponent component) is not working with the string-representations of the items. If using cloned objects the equals method will return false, even if the items are the same, because the IDs are different. > The method should use only the strings of the objects, similiar to how MyFaces has solved this (check workarround). -- 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 From issues at jboss.org Fri Feb 14 02:31:29 2014 From: issues at jboss.org (Pavel Slegr (JIRA)) Date: Fri, 14 Feb 2014 02:31:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13247) Upgrade the RichFaces guava dependency to the latest version In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944506#comment-12944506 ] Pavel Slegr commented on RF-13247: ---------------------------------- Thanks Lukas, it shows like huge codebase to be reworked, which does not have suitable replacement in JDK7 anyway...Let's make sure to use proper version of guava then, not being in troubles at the end.... so 16.0.1 ... same as WF8 Final !? > Upgrade the RichFaces guava dependency to the latest version > ------------------------------------------------------------ > > Key: RF-13247 > URL: https://issues.jboss.org/browse/RF-13247 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Jeremy Landis > Assignee: Brian Leathem > Priority: Minor > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Upgrading to guava 15 from 14.0.1 causes this richfaces error. I have not looked into this further but wanted to put it out there as an issue. > Caused by: java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(Lcom/google/common/base/Function;)Ljava/util/concurrent/ConcurrentMap; from class org.richfaces.resource.ResourceLibraryFactoryImpl -- 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 From issues at jboss.org Fri Feb 14 03:07:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 14 Feb 2014 03:07:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13538) Closeables.closeQuietly() removed in Guava 16.0, but still used in RF In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13538?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13538: ---------------------------- Forum Reference: https://community.jboss.org/thread/237087 > Closeables.closeQuietly() removed in Guava 16.0, but still used in RF > --------------------------------------------------------------------- > > Key: RF-13538 > URL: https://issues.jboss.org/browse/RF-13538 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Affects Versions: 5.0.0.Alpha3 > Reporter: Juergen Zimmermann > Fix For: 5.0.0.Alpha4 > > > For instance in org.richfaces.resource.Java2DUserResourceWrapperImpl at line 73 is an invocation of Closeables.closeQuietly(...). However, this method is removed in Guava 16.0 which is now used in RF 5.0.0.Alpha3. > javadoc of Guava 14.0 already mentioned: > "Deprecated. Where possible, use the try-with-resources statement if using JDK7 or Closer on JDK6 to close one or more Closeable objects. This method is deprecated because it is easy to misuse and may swallow IO exceptions that really should be thrown and handled. See Guava issue 1118 for a more detailed explanation of the reasons for deprecation and see Closing Resources for more information on the problems with closing Closeable objects and some of the preferred solutions for handling it correctly. This method is scheduled to be removed in Guava 16.0." > Well, now the method is removed, but still invoked in RF 5.0.0.Alpha3. -- 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 From issues at jboss.org Fri Feb 14 03:07:29 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 14 Feb 2014 03:07:29 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13247) Upgrade the RichFaces guava dependency to the latest version In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13247: ---------------------------- Forum Reference: https://community.jboss.org/thread/237087 > Upgrade the RichFaces guava dependency to the latest version > ------------------------------------------------------------ > > Key: RF-13247 > URL: https://issues.jboss.org/browse/RF-13247 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Jeremy Landis > Assignee: Brian Leathem > Priority: Minor > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Upgrading to guava 15 from 14.0.1 causes this richfaces error. I have not looked into this further but wanted to put it out there as an issue. > Caused by: java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(Lcom/google/common/base/Function;)Ljava/util/concurrent/ConcurrentMap; from class org.richfaces.resource.ResourceLibraryFactoryImpl -- 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 From issues at jboss.org Fri Feb 14 13:01:28 2014 From: issues at jboss.org (=?UTF-8?Q?Marcel_=C5=A0ebek_=28JIRA=29?=) Date: Fri, 14 Feb 2014 13:01:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944817#comment-12944817 ] Marcel ?ebek commented on RF-13250: ----------------------------------- Well, I've done some more investigations on this issue. At least one way how to leak resources is to send a malformed atmosphere request to an application. For example, send GET to /__richfaces_push?X-Atmosphere-Transport=long-polling Then, with each such request, you should observe "Committed error code 400" and one leaked org.atmosphere.cpr.Meteor instance (it is leaked, because it is referenced from Meteor.cache). The error is probably produced by PushHandlerFilter - check for session == null. I think it is time to reopen the bug now. If you cannot reproduce it, now I think I should be able to find the missing piece of information. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Pavol Pitonak > Labels: memoryleak > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Fri Feb 14 14:28:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 14 Feb 2014 14:28:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13550) Refactor bridge-base so that it will allow bridges to extend widgets In-Reply-To: References: Message-ID: Luk?? Fry? created RF-13550: ------------------------------- Summary: Refactor bridge-base so that it will allow bridges to extend widgets Key: RF-13550 URL: https://issues.jboss.org/browse/RF-13550 Project: RichFaces Issue Type: Enhancement Security Level: Public (Everyone can see) Components: component Affects Versions: 5.0.0.Alpha3 Reporter: Luk?? Fry? This will allow bridges to extend widget API and make it more natural for JSF users, e.g.: Editor is now: {code} $.widget('rf.editorBridge', $.rf.bridgeBase, {code} but we want: {code} $.widget('rf.editorBridge', $.rich.editor, {code} On multiple inheritance in jQuery Widget Factory: https://forum.jquery.com/topic/how-to-extend-a-widget-factory-widget-with-multiple-base-widgets The way of extending API should be designed in that way that user calls e.g.: {code} #{r:component('editor')}.setValue(); {code} but editor has (or rather should have) only a method which is named in jQuery Widget Factory style: {code} data('editor').value() / data('editor').value(newValue) editor('value') / editor('value', newValue) {code} So, we want bridge to add the setValue/getValue API: {code} $.extend(widget), { setValue: ..., getValue: ...}; {code} -- 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 From issues at jboss.org Fri Feb 14 14:30:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 14 Feb 2014 14:30:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13550) Refactor bridge-base so that it will allow bridges to extend widgets In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13550?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12944840#comment-12944840 ] Luk?? Fry? commented on RF-13550: --------------------------------- One of the caveats: bridge is usually called on component root, but widget can be instantiated on inner element: {code}
{code} {code} $('#editor').editorBridge(); ---> internally calls $("#editor" + 'Input').editor(); {code} > Refactor bridge-base so that it will allow bridges to extend widgets > -------------------------------------------------------------------- > > Key: RF-13550 > URL: https://issues.jboss.org/browse/RF-13550 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: component > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > > This will allow bridges to extend widget API and make it more natural for JSF users, e.g.: > Editor is now: > {code} > $.widget('rf.editorBridge', $.rf.bridgeBase, > {code} > but we want: > {code} > $.widget('rf.editorBridge', $.rich.editor, > {code} > On multiple inheritance in jQuery Widget Factory: > https://forum.jquery.com/topic/how-to-extend-a-widget-factory-widget-with-multiple-base-widgets > The way of extending API should be designed in that way that user calls e.g.: > {code} > #{r:component('editor')}.setValue(); > {code} > but editor has (or rather should have) only a method which is named in jQuery Widget Factory style: > {code} > data('editor').value() / data('editor').value(newValue) > editor('value') / editor('value', newValue) > {code} > So, we want bridge to add the setValue/getValue API: > {code} > $.extend(widget), { setValue: ..., getValue: ...}; > {code} -- 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 From issues at jboss.org Fri Feb 14 15:06:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 14 Feb 2014 15:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13436) Upgrade CKEditor to 4.3 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13436?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13436. ----------------------------- Labels: needs-qe (was: rich_editor) Resolution: Done The CKEditor was switched to use CKEditor 4 distributed in RichWidgets project. [~ppitonak] could you please start QE process for the component upgrade? Note that the whole component underwent general re-implementation using jQuery Widget Factory, etc. but the API stays same. We need to cover and expand test suite: * re-test with Metamer * [expand RichWidgets tests suite|https://github.com/richwidgets/richwidgets/issues/179] (just few basic tests there) * add few basic framework tests (should use Page Fragment) Pavol, could you please open appropriate RFPL/QE JIRAs? > Upgrade CKEditor to 4.3 > ----------------------- > > Key: RF-13436 > URL: https://issues.jboss.org/browse/RF-13436 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: barbara b > Assignee: Luk?? Fry? > Labels: needs-qe > Fix For: 5.0.0.Alpha4 > > > All current versions of Richfaces are working with CKEditor 3.6.6. Would it be possible to make an upgrade of CKEditor to a version 4.3? Some plugins for CKEditor are only working with the 4.X versions of the editor. -- 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 From issues at jboss.org Fri Feb 14 15:06:28 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Fri, 14 Feb 2014 15:06:28 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13436) Upgrade CKEditor to 4.3 (and switch code to jQuery Widget Factory) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13436?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13436: ---------------------------- Summary: Upgrade CKEditor to 4.3 (and switch code to jQuery Widget Factory) (was: Upgrade CKEditor to 4.3) > Upgrade CKEditor to 4.3 (and switch code to jQuery Widget Factory) > ------------------------------------------------------------------ > > Key: RF-13436 > URL: https://issues.jboss.org/browse/RF-13436 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: barbara b > Assignee: Luk?? Fry? > Labels: needs-qe > Fix For: 5.0.0.Alpha4 > > > All current versions of Richfaces are working with CKEditor 3.6.6. Would it be possible to make an upgrade of CKEditor to a version 4.3? Some plugins for CKEditor are only working with the 4.X versions of the editor. -- 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 From issues at jboss.org Mon Feb 17 00:51:47 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 17 Feb 2014 00:51:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13550) Refactor bridge-base so that it will allow bridges to extend widgets In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13550?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945068#comment-12945068 ] Brian Leathem commented on RF-13550: ------------------------------------ I spent some time playing with this in various scenarios and I've concluded it's not a good idea. We end up losing what is currently a good encapsulation of concerns and end up polluting our widget object with bridge functionality. I much prefer keeping these ideas separate. Going back to the original problem of providing legacy functions without polluting the widget, this /can/ instead be done by "monkey patching" the widget prototype in the bridge js file. However this presents it's own concerns in terms of properly documenting the widget capabilities. Instead we should just make take a clean start with the js API for 5.0 and do things correctly. The RF 4 js API was not well standardized across components and was poorly documented. I don't believe we will break many applications with any naming changed in the RF 5 js API. > Refactor bridge-base so that it will allow bridges to extend widgets > -------------------------------------------------------------------- > > Key: RF-13550 > URL: https://issues.jboss.org/browse/RF-13550 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: component > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > > This will allow bridges to extend widget API and make it more natural for JSF users, e.g.: > Editor is now: > {code} > $.widget('rf.editorBridge', $.rf.bridgeBase, > {code} > but we want: > {code} > $.widget('rf.editorBridge', $.rich.editor, > {code} > On multiple inheritance in jQuery Widget Factory: > https://forum.jquery.com/topic/how-to-extend-a-widget-factory-widget-with-multiple-base-widgets > The way of extending API should be designed in that way that user calls e.g.: > {code} > #{r:component('editor')}.setValue(); > {code} > but editor has (or rather should have) only a method which is named in jQuery Widget Factory style: > {code} > data('editor').value() / data('editor').value(newValue) > editor('value') / editor('value', newValue) > {code} > So, we want bridge to add the setValue/getValue API: > {code} > $.extend(widget), { setValue: ..., getValue: ...}; > {code} -- 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 From issues at jboss.org Mon Feb 17 03:23:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Mon, 17 Feb 2014 03:23:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13550) Refactor bridge-base so that it will allow bridges to extend widgets In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13550?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13550. ----------------------------- Assignee: Brian Leathem Resolution: Rejected Ok, agree, I'm rejecting this request then. > Refactor bridge-base so that it will allow bridges to extend widgets > -------------------------------------------------------------------- > > Key: RF-13550 > URL: https://issues.jboss.org/browse/RF-13550 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: component > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Brian Leathem > > This will allow bridges to extend widget API and make it more natural for JSF users, e.g.: > Editor is now: > {code} > $.widget('rf.editorBridge', $.rf.bridgeBase, > {code} > but we want: > {code} > $.widget('rf.editorBridge', $.rich.editor, > {code} > On multiple inheritance in jQuery Widget Factory: > https://forum.jquery.com/topic/how-to-extend-a-widget-factory-widget-with-multiple-base-widgets > The way of extending API should be designed in that way that user calls e.g.: > {code} > #{r:component('editor')}.setValue(); > {code} > but editor has (or rather should have) only a method which is named in jQuery Widget Factory style: > {code} > data('editor').value() / data('editor').value(newValue) > editor('value') / editor('value', newValue) > {code} > So, we want bridge to add the setValue/getValue API: > {code} > $.extend(widget), { setValue: ..., getValue: ...}; > {code} -- 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 From issues at jboss.org Mon Feb 17 05:33:47 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 17 Feb 2014 05:33:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reopened RF-13250: -------------------------------- Assignee: Juraj H?ska (was: Pavol Pitonak) [~sebek64], thanks for all the information you provided. We'll try to reproduce it. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Mon Feb 17 05:33:48 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 17 Feb 2014 05:33:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13250: ------------------------------- Affects Version/s: 4.3.5 > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Mon Feb 17 06:41:47 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 17 Feb 2014 06:41:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13436) Upgrade CKEditor to 4.3 (and switch code to jQuery Widget Factory) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13436?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945154#comment-12945154 ] Pavol Pitonak commented on RF-13436: ------------------------------------ I created a new task RFPL-3269. > Upgrade CKEditor to 4.3 (and switch code to jQuery Widget Factory) > ------------------------------------------------------------------ > > Key: RF-13436 > URL: https://issues.jboss.org/browse/RF-13436 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: barbara b > Assignee: Luk?? Fry? > Labels: needs-qe > Fix For: 5.0.0.Alpha4 > > > All current versions of Richfaces are working with CKEditor 3.6.6. Would it be possible to make an upgrade of CKEditor to a version 4.3? Some plugins for CKEditor are only working with the 4.X versions of the editor. -- 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 From issues at jboss.org Mon Feb 17 06:41:48 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Mon, 17 Feb 2014 06:41:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13436) Upgrade CKEditor to 4.3 (and switch code to jQuery Widget Factory) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13436?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-13436: ------------------------------- Labels: (was: needs-qe) > Upgrade CKEditor to 4.3 (and switch code to jQuery Widget Factory) > ------------------------------------------------------------------ > > Key: RF-13436 > URL: https://issues.jboss.org/browse/RF-13436 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.3.4, 5.0.0.Alpha1 > Reporter: barbara b > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > All current versions of Richfaces are working with CKEditor 3.6.6. Would it be possible to make an upgrade of CKEditor to a version 4.3? Some plugins for CKEditor are only working with the 4.X versions of the editor. -- 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 From issues at jboss.org Mon Feb 17 07:51:48 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Mon, 17 Feb 2014 07:51:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945186#comment-12945186 ] Steve Oh commented on RF-12033: ------------------------------- I observed the problem with 4.3.4.FINAL on IE8. > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Fix For: 5-Tracking > > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 17 14:13:47 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 17 Feb 2014 14:13:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945351#comment-12945351 ] Brian Leathem commented on RF-12033: ------------------------------------ [~cc2000] do you observe it /only/ in IE8? > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Fix For: 5-Tracking > > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 17 14:13:47 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 17 Feb 2014 14:13:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13101) rich:select Method getSelectInputLabel is not working when using objects In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13101: ------------------------------- Labels: rich:select select waiting_on_user (was: rich:select select) > rich:select Method getSelectInputLabel is not working when using objects > ------------------------------------------------------------------------ > > Key: RF-13101 > URL: https://issues.jboss.org/browse/RF-13101 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, component-selects > Affects Versions: 4.3.2, 5.0.0.Alpha1 > Reporter: J W > Labels: rich:select, select, waiting_on_user > Fix For: 4.5-Tracking > > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > The condition of the if-statement in org.richfaces.renderkit.SelectHelper.getSelectInputLabel(FacesContext facesContext, UIComponent component) is not working with the string-representations of the items. If using cloned objects the equals method will return false, even if the items are the same, because the IDs are different. > The method should use only the strings of the objects, similiar to how MyFaces has solved this (check workarround). -- 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 From issues at jboss.org Mon Feb 17 14:15:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 17 Feb 2014 14:15:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13101) rich:select Method getSelectInputLabel is not working when using objects In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13101: ------------------------------- Fix Version/s: (was: 4.5-Tracking) > rich:select Method getSelectInputLabel is not working when using objects > ------------------------------------------------------------------------ > > Key: RF-13101 > URL: https://issues.jboss.org/browse/RF-13101 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, component-selects > Affects Versions: 4.3.2, 5.0.0.Alpha1 > Reporter: J W > Labels: rich:select, select, waiting_on_user > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > The condition of the if-statement in org.richfaces.renderkit.SelectHelper.getSelectInputLabel(FacesContext facesContext, UIComponent component) is not working with the string-representations of the items. If using cloned objects the equals method will return false, even if the items are the same, because the IDs are different. > The method should use only the strings of the objects, similiar to how MyFaces has solved this (check workarround). -- 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 From issues at jboss.org Mon Feb 17 14:17:47 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 17 Feb 2014 14:17:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource should throw meaningful exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13547: ------------------------------- Fix Version/s: cdk-Tracking > @ResourceDependency with missing resource should throw meaningful exception > --------------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: cdk > Reporter: Luk?? Macko > Priority: Minor > Fix For: cdk-Tracking > > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Mon Feb 17 14:17:47 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 17 Feb 2014 14:17:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13548) Clean using of guava dependency across framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13548: ------------------------------- Fix Version/s: 4.3.6 > Clean using of guava dependency across framework > ------------------------------------------------ > > Key: RF-13548 > URL: https://issues.jboss.org/browse/RF-13548 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: compatibility, core, third-party > Affects Versions: 5.0.0.Alpha3 > Environment: Guava dependency and Tomcat 8 > Reporter: Juraj H?ska > Fix For: 4.3.6 > > > As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. > * We should investigate whether _maven shade_ plugin will be for any good > * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} > It seems that this blocks using of Tomcat 8 properly. -- 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 From issues at jboss.org Mon Feb 17 14:17:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 17 Feb 2014 14:17:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13548) Clean using of guava dependency across framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-13548: ------------------------------- Fix Version/s: 5.0.0.Alpha4 (was: 4.3.6) > Clean using of guava dependency across framework > ------------------------------------------------ > > Key: RF-13548 > URL: https://issues.jboss.org/browse/RF-13548 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: compatibility, core, third-party > Affects Versions: 5.0.0.Alpha3 > Environment: Guava dependency and Tomcat 8 > Reporter: Juraj H?ska > Fix For: 5.0.0.Alpha4 > > > As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. > * We should investigate whether _maven shade_ plugin will be for any good > * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} > It seems that this blocks using of Tomcat 8 properly. -- 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 From issues at jboss.org Tue Feb 18 02:05:47 2014 From: issues at jboss.org (Tobias Seppenhauser (JIRA)) Date: Tue, 18 Feb 2014 02:05:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945409#comment-12945409 ] Tobias Seppenhauser commented on RF-13250: ------------------------------------------ This bug has also been seen on our customer systems (using RF 4.3.5 and JBoss 7.1). Thanks to Marcel I was able to reproduce this issue with a small bash script {code} #!/bin/bash echo "Starting the 'long poll of death'! - $(date)" while true do curl http://localhost/ws/__richfaces_push?X-Atmosphere-Transport=long-polling &> /dev/null sleep 0.1 done {code} The used JBoss instance had a max heap size of 2GB. After running the script round about 12hours the server crashed with {{java.lang.OutOfMemoryError: Java heap space}} > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Tue Feb 18 02:41:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 02:41:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource should throw meaningful exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13547: ---------------------------- Component/s: core (was: cdk) > @ResourceDependency with missing resource should throw meaningful exception > --------------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Reporter: Luk?? Macko > Priority: Minor > Fix For: cdk-Tracking > > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Tue Feb 18 02:41:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 02:41:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource should throw meaningful exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13547: ---------------------------- Fix Version/s: (was: cdk-Tracking) > @ResourceDependency with missing resource should throw meaningful exception > --------------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Reporter: Luk?? Macko > Priority: Minor > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Tue Feb 18 02:43:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 02:43:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource should throw meaningful exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945413#comment-12945413 ] Luk?? Fry? commented on RF-13547: --------------------------------- I missed it during review - this is not a CDK issue, it's core framework concern. > @ResourceDependency with missing resource should throw meaningful exception > --------------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Reporter: Luk?? Macko > Priority: Minor > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Tue Feb 18 02:43:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 02:43:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13548) Clean using of guava dependency across framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? reassigned RF-13548: ------------------------------- Assignee: Luk?? Fry? > Clean using of guava dependency across framework > ------------------------------------------------ > > Key: RF-13548 > URL: https://issues.jboss.org/browse/RF-13548 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: compatibility, core, third-party > Affects Versions: 5.0.0.Alpha3 > Environment: Guava dependency and Tomcat 8 > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. > * We should investigate whether _maven shade_ plugin will be for any good > * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} > It seems that this blocks using of Tomcat 8 properly. -- 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 From issues at jboss.org Tue Feb 18 03:43:47 2014 From: issues at jboss.org (J W (JIRA)) Date: Tue, 18 Feb 2014 03:43:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13101) rich:select Method getSelectInputLabel is not working when using objects In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945426#comment-12945426 ] J W commented on RF-13101: -------------------------- I fear i will not be able to provide a reproducer, but let me try to explain what is going wrong here (unfortunately the Person who noticed and fixed this Bug is not available anymore for us): The if statement in the loop of the mentioned Method looks like this {code} if (value.equals(item.getValue())) { {code} Whenever we use Cloned Objects this if-statement would return false, although the objects are equal. To solve this issue we are now comparing the actual String-Values - not the object values, like the current {{item.getValue()}} does - in this method to get the actual label. Apperently our workarround was updated and i have missed to update it in this issue. Sorry for that. Here is the actual code of this Method: {code} public static String getSelectInputLabel(FacesContext facesContext, UIComponent component) { //RF-Issue: https://issues.jboss.org/browse/RF-13101 //FIX BEGIN String label = null; String selectedValue = InputUtils.getInputValue(facesContext, component); if (selectedValue != null) { List convertedSelectItems = getConvertedSelectItems(facesContext, component); for (ClientSelectItem clientSelectItem : convertedSelectItems) { if (selectedValue.equals(clientSelectItem.getConvertedValue())) { label = clientSelectItem.getLabel(); break; } } } return label; //FIX END } {code} I hope the Problem is a bit clearer now. > rich:select Method getSelectInputLabel is not working when using objects > ------------------------------------------------------------------------ > > Key: RF-13101 > URL: https://issues.jboss.org/browse/RF-13101 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, component-selects > Affects Versions: 4.3.2, 5.0.0.Alpha1 > Reporter: J W > Labels: rich:select, select, waiting_on_user > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > The condition of the if-statement in org.richfaces.renderkit.SelectHelper.getSelectInputLabel(FacesContext facesContext, UIComponent component) is not working with the string-representations of the items. If using cloned objects the equals method will return false, even if the items are the same, because the IDs are different. > The method should use only the strings of the objects, similiar to how MyFaces has solved this (check workarround). -- 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 From issues at jboss.org Tue Feb 18 04:15:49 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Tue, 18 Feb 2014 04:15:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945434#comment-12945434 ] Steve Oh commented on RF-12033: ------------------------------- I did not test with the attached testcase. With my application, I oberserved it at least on IE9. I can do more testing on IE9-compat, IE10, IE10-compat after setting up the testcase. regards > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Fix For: 5-Tracking > > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Tue Feb 18 04:47:48 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Tue, 18 Feb 2014 04:47:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945451#comment-12945451 ] Steve Oh commented on RF-12033: ------------------------------- Hello, I run a few tests with the attached testcase: IE9+IE10 Tab Two contains only a thin horizontal line, but no table IE8+IE8compat+IE10compat: Tab Two shows table correctly switching between tabs works IE9-compat 1. switch to Tab Two 2. table is shown 3. switch to Tab One 4. ERROR javascript "invalid argument" Benutzer-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E; MS-RTC LM 8) Meldung: Ung?ltiges Argument. Zeile: 294 Zeichen: 25 Code: 0 URI: .../richfaces-test/javax.faces.resource/extendedDataTable.js.xhtml?ln=org.richfaces seems like IE8 looks fine with the testcase but is broken with my application ... too bad HTH > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Fix For: 5-Tracking > > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Tue Feb 18 04:47:48 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Tue, 18 Feb 2014 04:47:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945451#comment-12945451 ] Steve Oh edited comment on RF-12033 at 2/18/14 4:47 AM: -------------------------------------------------------- Hello, I run a few tests with the attached testcase: (testing was done with RF 4.3.4) IE9+IE10 Tab Two contains only a thin horizontal line, but no table IE8+IE8compat+IE10compat: Tab Two shows table correctly switching between tabs works IE9-compat 1. switch to Tab Two 2. table is shown 3. switch to Tab One 4. ERROR javascript "invalid argument" Benutzer-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E; MS-RTC LM 8) Meldung: Ung?ltiges Argument. Zeile: 294 Zeichen: 25 Code: 0 URI: .../richfaces-test/javax.faces.resource/extendedDataTable.js.xhtml?ln=org.richfaces seems like IE8 looks fine with the testcase but is broken with my application ... too bad HTH was (Author: cc2000): Hello, I run a few tests with the attached testcase: IE9+IE10 Tab Two contains only a thin horizontal line, but no table IE8+IE8compat+IE10compat: Tab Two shows table correctly switching between tabs works IE9-compat 1. switch to Tab Two 2. table is shown 3. switch to Tab One 4. ERROR javascript "invalid argument" Benutzer-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E; MS-RTC LM 8) Meldung: Ung?ltiges Argument. Zeile: 294 Zeichen: 25 Code: 0 URI: .../richfaces-test/javax.faces.resource/extendedDataTable.js.xhtml?ln=org.richfaces seems like IE8 looks fine with the testcase but is broken with my application ... too bad HTH > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Fix For: 5-Tracking > > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Tue Feb 18 09:39:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 09:39:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource should throw meaningful exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13547: ---------------------------- Fix Version/s: 5.0.0.Alpha4 > @ResourceDependency with missing resource should throw meaningful exception > --------------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Reporter: Luk?? Macko > Priority: Minor > Fix For: 5.0.0.Alpha4 > > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Tue Feb 18 09:39:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 09:39:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13547) @ResourceDependency with missing resource should throw meaningful exception In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13547?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? reassigned RF-13547: ------------------------------- Assignee: Luk?? Fry? > @ResourceDependency with missing resource should throw meaningful exception > --------------------------------------------------------------------------- > > Key: RF-13547 > URL: https://issues.jboss.org/browse/RF-13547 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Reporter: Luk?? Macko > Assignee: Luk?? Fry? > Priority: Minor > Fix For: 5.0.0.Alpha4 > > > If there is an annotation {{@ResourceDependency}} with not existing resource > such as {{@ResourceDependency(library = "org.richfaces", name = "base-component.reslib")}} > It doesn't throw an exception. However, exception CacheLoader returned null for key org.richfaces:base-component. -- 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 From issues at jboss.org Tue Feb 18 09:51:48 2014 From: issues at jboss.org (=?UTF-8?Q?Marcel_=C5=A0ebek_=28JIRA=29?=) Date: Tue, 18 Feb 2014 09:51:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel ?ebek updated RF-13250: ------------------------------ Attachment: rf.patch I would suggest the attached patch to fix this leak, for me it seems to resolve the leak and not introduce any regression. However, somebody more familiar with richfaces code should review it. The idea is to delay Meteor creation until it is explicitly used, in particular after session validity check. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Tue Feb 18 09:59:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Tue, 18 Feb 2014 09:59:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945581#comment-12945581 ] Juraj H?ska commented on RF-13250: ---------------------------------- Great Marcel, thank you for the patch. I am currently trying to reproduce the issue. Once it is reproduced, some of our developers will take a look into your patch. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Tue Feb 18 10:01:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Tue, 18 Feb 2014 10:01:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945581#comment-12945581 ] Juraj H?ska edited comment on RF-13250 at 2/18/14 10:00 AM: ------------------------------------------------------------ Great Marcel, thank you for the patch. I am currently trying to reproduce the issue. Once it is reproduced, some of our developers will take a look into your patch and we will check it for regressions. was (Author: jhuska): Great Marcel, thank you for the patch. I am currently trying to reproduce the issue. Once it is reproduced, some of our developers will take a look into your patch. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Tue Feb 18 11:27:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 11:27:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13548) Clean using of guava dependency across framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13548?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945629#comment-12945629 ] Luk?? Fry? commented on RF-13548: --------------------------------- Juraj, you report that it prevents Tomcat 8 to work properly. But this means that either: a) Tomcat 8 itself makes use of Guava.jar b) you used improper versions of Guava.jar in your WAR Could you try and report here? > Clean using of guava dependency across framework > ------------------------------------------------ > > Key: RF-13548 > URL: https://issues.jboss.org/browse/RF-13548 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: compatibility, core, third-party > Affects Versions: 5.0.0.Alpha3 > Environment: Guava dependency and Tomcat 8 > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. > * We should investigate whether _maven shade_ plugin will be for any good > * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} > It seems that this blocks using of Tomcat 8 properly. -- 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 From issues at jboss.org Tue Feb 18 11:41:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 18 Feb 2014 11:41:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12033: ------------------------------- Fix Version/s: (was: 5-Tracking) > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Tue Feb 18 11:41:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Tue, 18 Feb 2014 11:41:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12033: ---------------------------------- Assignee: Pavol Pitonak QE, can you please confirm? > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Pavol Pitonak > Labels: lazy-loaded > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Tue Feb 18 14:27:47 2014 From: issues at jboss.org (Sande Gilda (JIRA)) Date: Tue, 18 Feb 2014 14:27:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13551) kitchensink-rf quickstart - WFK version does not match RichFaces version In-Reply-To: References: Message-ID: Sande Gilda created RF-13551: -------------------------------- Summary: kitchensink-rf quickstart - WFK version does not match RichFaces version Key: RF-13551 URL: https://issues.jboss.org/browse/RF-13551 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: examples Reporter: Sande Gilda The 'kitchensink-rf' quickstart application runtime page is out of sync between the RichFaces and WFK versions. There is an extra section in the WFK version that should be removed: Learn more about JBoss EAP 6. Getting Started Developing Applications Guide Community Project Information The version in the RichFaces project is correct. -- 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 From issues at jboss.org Tue Feb 18 14:29:47 2014 From: issues at jboss.org (Sande Gilda (JIRA)) Date: Tue, 18 Feb 2014 14:29:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13551) kitchensink-rf quickstart - WFK version does not match RichFaces version In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13551?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sande Gilda updated RF-13551: ----------------------------- Attachment: kitchensink-rf-wfkproject.png kitchensink-rf-richfacesproject.png Scrrenshots of correct richfaces project version and incorrect wfk project version. > kitchensink-rf quickstart - WFK version does not match RichFaces version > ------------------------------------------------------------------------ > > Key: RF-13551 > URL: https://issues.jboss.org/browse/RF-13551 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Reporter: Sande Gilda > Attachments: kitchensink-rf-richfacesproject.png, kitchensink-rf-wfkproject.png > > > The 'kitchensink-rf' quickstart application runtime page is out of sync between the RichFaces and WFK versions. > There is an extra section in the WFK version that should be removed: > Learn more about JBoss EAP 6. > Getting Started Developing Applications Guide > Community Project Information > The version in the RichFaces project is correct. -- 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 From issues at jboss.org Tue Feb 18 18:09:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 18:09:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13247) Upgrade the Guava dependency to the 16.0.1 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13247: ---------------------------- Summary: Upgrade the Guava dependency to the 16.0.1 (was: Upgrade the RichFaces guava dependency to the latest version) > Upgrade the Guava dependency to the 16.0.1 > ------------------------------------------ > > Key: RF-13247 > URL: https://issues.jboss.org/browse/RF-13247 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Jeremy Landis > Assignee: Brian Leathem > Priority: Minor > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Upgrading to guava 15 from 14.0.1 causes this richfaces error. I have not looked into this further but wanted to put it out there as an issue. > Caused by: java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(Lcom/google/common/base/Function;)Ljava/util/concurrent/ConcurrentMap; from class org.richfaces.resource.ResourceLibraryFactoryImpl -- 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 From issues at jboss.org Tue Feb 18 18:11:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 18:11:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13247) Upgrade the Guava dependency to the 16.0.1 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945773#comment-12945773 ] Luk?? Fry? commented on RF-13247: --------------------------------- The pull request that removes all @Beta APIs was merged: https://github.com/richfaces/richfaces/pull/80 > Upgrade the Guava dependency to the 16.0.1 > ------------------------------------------ > > Key: RF-13247 > URL: https://issues.jboss.org/browse/RF-13247 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: third-party > Reporter: Jeremy Landis > Assignee: Cody Lerum > Priority: Minor > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Upgrading to guava 15 from 14.0.1 causes this richfaces error. I have not looked into this further but wanted to put it out there as an issue. > Caused by: java.lang.IllegalAccessError: tried to access method com.google.common.collect.MapMaker.makeComputingMap(Lcom/google/common/base/Function;)Ljava/util/concurrent/ConcurrentMap; from class org.richfaces.resource.ResourceLibraryFactoryImpl -- 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 From issues at jboss.org Tue Feb 18 18:13:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 18:13:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13538) Closeables.closeQuietly() removed in Guava 16.0, but still used in RF In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13538?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13538. ----------------------------- Assignee: Luk?? Fry? Fix Version/s: (was: 5.0.0.Alpha4) Resolution: Duplicate Issue > Closeables.closeQuietly() removed in Guava 16.0, but still used in RF > --------------------------------------------------------------------- > > Key: RF-13538 > URL: https://issues.jboss.org/browse/RF-13538 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: core > Affects Versions: 5.0.0.Alpha3 > Reporter: Juergen Zimmermann > Assignee: Luk?? Fry? > > For instance in org.richfaces.resource.Java2DUserResourceWrapperImpl at line 73 is an invocation of Closeables.closeQuietly(...). However, this method is removed in Guava 16.0 which is now used in RF 5.0.0.Alpha3. > javadoc of Guava 14.0 already mentioned: > "Deprecated. Where possible, use the try-with-resources statement if using JDK7 or Closer on JDK6 to close one or more Closeable objects. This method is deprecated because it is easy to misuse and may swallow IO exceptions that really should be thrown and handled. See Guava issue 1118 for a more detailed explanation of the reasons for deprecation and see Closing Resources for more information on the problems with closing Closeable objects and some of the preferred solutions for handling it correctly. This method is scheduled to be removed in Guava 16.0." > Well, now the method is removed, but still invoked in RF 5.0.0.Alpha3. -- 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 From issues at jboss.org Tue Feb 18 18:15:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 18 Feb 2014 18:15:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13548) Clean using of guava dependency across framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13548?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13548. ----------------------------- Fix Version/s: (was: 5.0.0.Alpha4) Resolution: Duplicate Issue > Clean using of guava dependency across framework > ------------------------------------------------ > > Key: RF-13548 > URL: https://issues.jboss.org/browse/RF-13548 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: compatibility, core, third-party > Affects Versions: 5.0.0.Alpha3 > Environment: Guava dependency and Tomcat 8 > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > > As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. > * We should investigate whether _maven shade_ plugin will be for any good > * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} > It seems that this blocks using of Tomcat 8 properly. -- 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 From issues at jboss.org Wed Feb 19 03:31:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 19 Feb 2014 03:31:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13101) rich:select Method getSelectInputLabel is not working when using objects In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945836#comment-12945836 ] Luk?? Fry? commented on RF-13101: --------------------------------- So the problem is that methods are cloned and should be cleaner, but they aren't as their #equals method implementation does not consider them equal, am I right? I think your current approach - use of converter - is a correct one. > rich:select Method getSelectInputLabel is not working when using objects > ------------------------------------------------------------------------ > > Key: RF-13101 > URL: https://issues.jboss.org/browse/RF-13101 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, component-selects > Affects Versions: 4.3.2, 5.0.0.Alpha1 > Reporter: J W > Labels: rich:select, select, waiting_on_user > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > The condition of the if-statement in org.richfaces.renderkit.SelectHelper.getSelectInputLabel(FacesContext facesContext, UIComponent component) is not working with the string-representations of the items. If using cloned objects the equals method will return false, even if the items are the same, because the IDs are different. > The method should use only the strings of the objects, similiar to how MyFaces has solved this (check workarround). -- 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 From issues at jboss.org Wed Feb 19 04:51:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 19 Feb 2014 04:51:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13548) Clean using of guava dependency across framework In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13548?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12945858#comment-12945858 ] Juraj H?ska commented on RF-13548: ---------------------------------- Showcase and Metamer can not be deployed to Tomcat 8, that is what I have noticed. I can not find the root cause of the problem, since there is no meaningful error logged to Tomcat log files (_catalina.out_, _localhost.log_) - I have also tried to increase logging level in apache-tomcat-8.0.3/conf/logging.properties. But still there is only: {code} 19-Feb-2014 10:19:00.168 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal Error listenerStart 19-Feb-2014 10:19:00.177 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal Context [/richfaces-showcase-tomcat6] startup failed due to previous errors {code} Which says basically nothing. The behavior is slightly different (have no clue why) when I am trying to deploy showcase via Arquillian test to Tomcat 8. Error described in [this|https://community.jboss.org/thread/236951] thread is thrown. You said that it is related to guava, but IMHO it is related to something else because: * Tomcat 8 does not bundle guava.jar and does not contain classes from that library. I have used: {code} find -name "*.java" -exec grep "import com.google.common" {} \; | sort | uniq -c find -name "*.java" -exec grep "ListeningExecutorService" {} \; | sort | uniq -c {code} over Tomcat 8 sources with no results. * I have tried to deploy showcase with various guava libraries bundled (16, 15, 13), but still the same error. Should I file another issue specifically for Showcase deployment ? > Clean using of guava dependency across framework > ------------------------------------------------ > > Key: RF-13548 > URL: https://issues.jboss.org/browse/RF-13548 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: compatibility, core, third-party > Affects Versions: 5.0.0.Alpha3 > Environment: Guava dependency and Tomcat 8 > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > > As per [this|https://community.jboss.org/message/857397?et=watches.email.thread#857397] discussion we should do something with _Guava_ dependency. > * We should investigate whether _maven shade_ plugin will be for any good > * Investigate on refactoring the code so it does not contain dependencies from Guava marked as {{@Beta}} > It seems that this blocks using of Tomcat 8 properly. -- 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 From issues at jboss.org Wed Feb 19 10:35:51 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 19 Feb 2014 10:35:51 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946020#comment-12946020 ] Juraj H?ska commented on RF-13250: ---------------------------------- I have reproduced the issue with the description provided by community. The reproducer can be found at [this|https://github.com/richfaces/richfaces/tree/RF-13250] branch. Test script will start an Arquillian test, which will start JBoss AS 7.1.1.Final instance with 256Mb max heap size. It will then try to simulate 4 users (not simultaneous), receiving push events. Another script is in the meantime making invalid push requests causing the heap exceeding its allowed size. Steps to reproduce: # checkout referenced branch # issue: {code} cd examples/push-demo/ mvn clean verify -Dtest.timeout=2160000 {code} # from another terminal window issue: {code} cd examples/push-demo/ bash malformedPushRequestScript.sh {code} # where {{-Dtest.timeout}} is timeout for running the test in milliseconds, e.g. 2160000 == 6 hours, I was able to reproduce it in 4 hours # after e.g. 4 hours check that the test output contains {{OOM exception}} This OOM exceptions which can be found in the server log: {code} 16:05:28,635 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/push].[Faces Servlet]] (http--127.0.0.1-8080-3) Servlet.service() for servlet Faces Servlet threw exception: java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.Arrays.copyOfRange(Arrays.java:2694) [rt.jar:1.7.0_45] at java.lang.String.(String.java:203) [rt.jar:1.7.0_45] at java.lang.String.substring(String.java:1913) [rt.jar:1.7.0_45] at java.lang.String.trim(String.java:2732) [rt.jar:1.7.0_45] at com.sun.faces.facelets.util.DevTools.writeStart(DevTools.java:419) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.writeComponent(DevTools.java:245) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.writeComponent(DevTools.java:264) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.writeComponent(DevTools.java:264) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.debugHtml(DevTools.java:128) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.renderkit.RenderKitUtils.renderHtmlErrorPage(RenderKitUtils.java:1159) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.context.ExceptionHandlerImpl.throwIt(ExceptionHandlerImpl.java:273) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.context.ExceptionHandlerImpl.handle(ExceptionHandlerImpl.java:142) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:119) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] {code} and {code} 6:07:41,281 WARN [org.hornetq.core.remoting.server.impl.RemotingServiceImpl] (hornetq-failure-check-thread) GC overhead limit exceeded: java.lang.OutOfMemoryError: GC overhead limit exceeded {code}. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Wed Feb 19 10:37:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 19 Feb 2014 10:37:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946026#comment-12946026 ] Juraj H?ska commented on RF-13250: ---------------------------------- [~lfryc] could you please check my testing approach and suggest improvements ? What else/differently can be tested ? > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Wed Feb 19 11:59:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Wed, 19 Feb 2014 11:59:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946020#comment-12946020 ] Juraj H?ska edited comment on RF-13250 at 2/19/14 11:58 AM: ------------------------------------------------------------ I have reproduced the issue with the description provided by community also with RichFaces 5.x version. The reproducer can be found at [this|https://github.com/richfaces/richfaces/tree/RF-13250] branch. Test script will start an Arquillian test, which will start JBoss AS 7.1.1.Final instance with 256Mb max heap size. It will then try to simulate 4 users (not simultaneous), receiving push events. Another script is in the meantime making invalid push requests causing the heap exceeding its allowed size. Steps to reproduce: # checkout referenced branch # issue: {code} cd examples/push-demo/ mvn clean verify -Dtest.timeout=2160000 {code} # from another terminal window issue: {code} cd examples/push-demo/ bash malformedPushRequestScript.sh {code} # where {{-Dtest.timeout}} is timeout for running the test in milliseconds, e.g. 2160000 == 6 hours, I was able to reproduce it in 4 hours # after e.g. 4 hours check that the test output contains {{OOM exception}} This OOM exceptions which can be found in the server log: {code} 16:05:28,635 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/push].[Faces Servlet]] (http--127.0.0.1-8080-3) Servlet.service() for servlet Faces Servlet threw exception: java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.Arrays.copyOfRange(Arrays.java:2694) [rt.jar:1.7.0_45] at java.lang.String.(String.java:203) [rt.jar:1.7.0_45] at java.lang.String.substring(String.java:1913) [rt.jar:1.7.0_45] at java.lang.String.trim(String.java:2732) [rt.jar:1.7.0_45] at com.sun.faces.facelets.util.DevTools.writeStart(DevTools.java:419) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.writeComponent(DevTools.java:245) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.writeComponent(DevTools.java:264) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.writeComponent(DevTools.java:264) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.debugHtml(DevTools.java:128) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.renderkit.RenderKitUtils.renderHtmlErrorPage(RenderKitUtils.java:1159) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.context.ExceptionHandlerImpl.throwIt(ExceptionHandlerImpl.java:273) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.context.ExceptionHandlerImpl.handle(ExceptionHandlerImpl.java:142) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:119) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] {code} and {code} 6:07:41,281 WARN [org.hornetq.core.remoting.server.impl.RemotingServiceImpl] (hornetq-failure-check-thread) GC overhead limit exceeded: java.lang.OutOfMemoryError: GC overhead limit exceeded {code}. was (Author: jhuska): I have reproduced the issue with the description provided by community. The reproducer can be found at [this|https://github.com/richfaces/richfaces/tree/RF-13250] branch. Test script will start an Arquillian test, which will start JBoss AS 7.1.1.Final instance with 256Mb max heap size. It will then try to simulate 4 users (not simultaneous), receiving push events. Another script is in the meantime making invalid push requests causing the heap exceeding its allowed size. Steps to reproduce: # checkout referenced branch # issue: {code} cd examples/push-demo/ mvn clean verify -Dtest.timeout=2160000 {code} # from another terminal window issue: {code} cd examples/push-demo/ bash malformedPushRequestScript.sh {code} # where {{-Dtest.timeout}} is timeout for running the test in milliseconds, e.g. 2160000 == 6 hours, I was able to reproduce it in 4 hours # after e.g. 4 hours check that the test output contains {{OOM exception}} This OOM exceptions which can be found in the server log: {code} 16:05:28,635 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/push].[Faces Servlet]] (http--127.0.0.1-8080-3) Servlet.service() for servlet Faces Servlet threw exception: java.lang.OutOfMemoryError: GC overhead limit exceeded at java.util.Arrays.copyOfRange(Arrays.java:2694) [rt.jar:1.7.0_45] at java.lang.String.(String.java:203) [rt.jar:1.7.0_45] at java.lang.String.substring(String.java:1913) [rt.jar:1.7.0_45] at java.lang.String.trim(String.java:2732) [rt.jar:1.7.0_45] at com.sun.faces.facelets.util.DevTools.writeStart(DevTools.java:419) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.writeComponent(DevTools.java:245) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.writeComponent(DevTools.java:264) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.writeComponent(DevTools.java:264) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.facelets.util.DevTools.debugHtml(DevTools.java:128) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.renderkit.RenderKitUtils.renderHtmlErrorPage(RenderKitUtils.java:1159) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.context.ExceptionHandlerImpl.throwIt(ExceptionHandlerImpl.java:273) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.context.ExceptionHandlerImpl.handle(ExceptionHandlerImpl.java:142) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:119) [jsf-impl-2.1.7-jbossorg-2.jar:] at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) [jsf-impl-2.1.7-jbossorg-2.jar:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594) [jboss-jsf-api_2.1_spec-2.0.1.Final.jar:2.0.1.Final] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.13.Final.jar:] at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:153) [jboss-as-web-7.1.1.Final.jar:7.1.1.Final] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.13.Final.jar:] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.13.Final.jar:] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.13.Final.jar:] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.13.Final.jar:] at java.lang.Thread.run(Thread.java:744) [rt.jar:1.7.0_45] {code} and {code} 6:07:41,281 WARN [org.hornetq.core.remoting.server.impl.RemotingServiceImpl] (hornetq-failure-check-thread) GC overhead limit exceeded: java.lang.OutOfMemoryError: GC overhead limit exceeded {code}. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Wed Feb 19 13:47:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 19 Feb 2014 13:47:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946116#comment-12946116 ] Luk?? Fry? edited comment on RF-13250 at 2/19/14 1:46 PM: ---------------------------------------------------------- Thanks for reproducing this [~jhuska]. One thing that should be certainly done differently is using javax.faces.ProjectStage=Production. Have you verified whether attached patch fixes the issue? > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Wed Feb 19 17:13:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 19 Feb 2014 17:13:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13552) EPVC includes tag twice when JRebel is used In-Reply-To: References: Message-ID: Luk?? Fry? created RF-13552: ------------------------------- Summary: EPVC includes tag twice 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 Reporter: Luk?? Fry? 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 From issues at jboss.org Wed Feb 19 17:15:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 19 Feb 2014 17:15:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13552) EPVC includes tag twice when JRebel is used In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13552: ---------------------------- Description: {code} alert('oncomplete')messages alert('oncomplete')messages {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. was: 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. > EPVC includes tag twice 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 > Reporter: Luk?? Fry? > > {code} > > > alert('oncomplete')messages > alert('oncomplete')messages > > > {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 From issues at jboss.org Wed Feb 19 17:15:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 19 Feb 2014 17:15:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13552) EPVC includes twice in when JRebel is used In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13552: ---------------------------- Summary: EPVC includes twice in when JRebel is used (was: EPVC includes tag twice when JRebel is used) > EPVC includes twice in 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 > Reporter: Luk?? Fry? > > {code} > > > alert('oncomplete')messages > alert('oncomplete')messages > > > {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 From issues at jboss.org Wed Feb 19 17:19:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 19 Feb 2014 17:19:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13552) EPVC includes twice in when JRebel is used In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13552: ---------------------------- Affects Version/s: 4.3.5 5.0.0.Alpha4 > EPVC includes twice in 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 > Reporter: Luk?? Fry? > > {code} > > > alert('oncomplete')messages > alert('oncomplete')messages > > > {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 From issues at jboss.org Wed Feb 19 17:19:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 19 Feb 2014 17:19:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13552) EPVC includes twice in when JRebel is used In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13552: ---------------------------- Environment: WildFly 8.0.0.Final JRebel 5.5.1-SNAPSHOT (201401071651) > EPVC includes twice in 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} > > > alert('oncomplete')messages > alert('oncomplete')messages > > > {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 From issues at jboss.org Wed Feb 19 17:21:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 19 Feb 2014 17:21:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13552) EPVC includes twice in when JRebel is used In-Reply-To: References: Message-ID: [ 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 twice in 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} > > > alert('oncomplete')messages > alert('oncomplete')messages > > > {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 From issues at jboss.org Thu Feb 20 03:37:48 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Thu, 20 Feb 2014 03:37:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-12033: ---------------------------------- Assignee: Ji?? ?tefek (was: Pavol Pitonak) > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Thu Feb 20 06:51:47 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Thu, 20 Feb 2014 06:51:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946319#comment-12946319 ] Ji?? ?tefek commented on RF-12033: ---------------------------------- [~bleathem] I cannot reproduce this. Tried it with attached project with RF 4.3.4.Final in IE 8-11, FF 27 on EAP 6.2 and GlassFish 3.1.2.2. > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Thu Feb 20 10:43:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 20 Feb 2014 10:43:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946454#comment-12946454 ] Juraj H?ska commented on RF-13250: ---------------------------------- I can confirm that the patch is fixing the issue. For now I have reproduced the issue for RichFaces 5-SNAPSHOT and same for the fix. But I guess that it will be the same for all the other RF versions. However, I am gonna try. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Thu Feb 20 10:43:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 20 Feb 2014 10:43:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946454#comment-12946454 ] Juraj H?ska edited comment on RF-13250 at 2/20/14 10:42 AM: ------------------------------------------------------------ I can confirm that the patch is fixing the issue. For now I have reproduced the issue for RichFaces 5-SNAPSHOT and same for the fix. But I guess that it will be the same for all the other RF versions (AFAIK the affected class is same in all version). However, I am gonna try. was (Author: jhuska): I can confirm that the patch is fixing the issue. For now I have reproduced the issue for RichFaces 5-SNAPSHOT and same for the fix. But I guess that it will be the same for all the other RF versions. However, I am gonna try. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Thu Feb 20 10:47:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 20 Feb 2014 10:47:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946454#comment-12946454 ] Juraj H?ska edited comment on RF-13250 at 2/20/14 10:46 AM: ------------------------------------------------------------ I can confirm that the patch is fixing the issue. There are no memory issues when running the tests with application in {{javax.faces.ProjectStage = PRODUCTION}}. When the mode is {{DEVELOPMENT}} then the issue still persists even when the patch is used. But I guess that it is right ? [~lfryc] For now I have reproduced the issue for RichFaces 5-SNAPSHOT and same for the fix. But I guess that it will be the same for all the other RF versions (AFAIK the affected class is same in all version). However, I am gonna try. was (Author: jhuska): I can confirm that the patch is fixing the issue. For now I have reproduced the issue for RichFaces 5-SNAPSHOT and same for the fix. But I guess that it will be the same for all the other RF versions (AFAIK the affected class is same in all version). However, I am gonna try. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Thu Feb 20 10:47:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Thu, 20 Feb 2014 10:47:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946454#comment-12946454 ] Juraj H?ska edited comment on RF-13250 at 2/20/14 10:47 AM: ------------------------------------------------------------ I can confirm that the patch is fixing the issue. There are no memory issues when running the tests with application in {{javax.faces.ProjectStage = PRODUCTION}}. When the mode is {{DEVELOPMENT}} then the issue still persists even when the patch is used. But I guess that it ok. Right, [~lfryc] ? For now I have reproduced the issue for RichFaces 5-SNAPSHOT and same for the fix. But I guess that it will be the same for all the other RF versions (AFAIK the affected class is same in all version). However, I am gonna try. was (Author: jhuska): I can confirm that the patch is fixing the issue. There are no memory issues when running the tests with application in {{javax.faces.ProjectStage = PRODUCTION}}. When the mode is {{DEVELOPMENT}} then the issue still persists even when the patch is used. But I guess that it is right ? [~lfryc] For now I have reproduced the issue for RichFaces 5-SNAPSHOT and same for the fix. But I guess that it will be the same for all the other RF versions (AFAIK the affected class is same in all version). However, I am gonna try. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Fri Feb 21 02:15:50 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Fri, 21 Feb 2014 02:15:50 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946689#comment-12946689 ] Brian Leathem commented on RF-12033: ------------------------------------ [~cc2000] can you describe the environment in which you were able to reproduce this behviour? What version of JSF? Was it with MyFaces perhaps? > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Fri Feb 21 02:17:47 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Fri, 21 Feb 2014 02:17:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13101) rich:select Method getSelectInputLabel is not working when using objects In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946691#comment-12946691 ] Brian Leathem commented on RF-13101: ------------------------------------ If the objects should be equal, but your equals method does not consider them to be equal, then perhaps something is wrong with your equals method? +1 for using a converter. The _select_ component allows you to use a converter directly: http://docs.jboss.org/richfaces/latest_4_X/vdldoc/rich/select.html > rich:select Method getSelectInputLabel is not working when using objects > ------------------------------------------------------------------------ > > Key: RF-13101 > URL: https://issues.jboss.org/browse/RF-13101 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, component-selects > Affects Versions: 4.3.2, 5.0.0.Alpha1 > Reporter: J W > Labels: rich:select, select, waiting_on_user > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > The condition of the if-statement in org.richfaces.renderkit.SelectHelper.getSelectInputLabel(FacesContext facesContext, UIComponent component) is not working with the string-representations of the items. If using cloned objects the equals method will return false, even if the items are the same, because the IDs are different. > The method should use only the strings of the objects, similiar to how MyFaces has solved this (check workarround). -- 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 From issues at jboss.org Fri Feb 21 03:49:48 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Fri, 21 Feb 2014 03:49:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946728#comment-12946728 ] Steve Oh commented on RF-12033: ------------------------------- The only difference in terms of environment, that i see is the JSF implementation. I use mojarra 2.1.20, that I manually updated in glassfish 3.1.2.2 (which ships with 2.1.6). > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Fri Feb 21 03:53:48 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Fri, 21 Feb 2014 03:53:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946728#comment-12946728 ] Steve Oh edited comment on RF-12033 at 2/21/14 3:53 AM: -------------------------------------------------------- The only difference in terms of environment, that i see is the JSF implementation. I use mojarra 2.1.20, that I manually updated in glassfish 3.1.2.2 (which ships with 2.1.6). If you can confirm this to be the issue, we could compare in a next step our HTML output, that is rendered from the server. was (Author: cc2000): The only difference in terms of environment, that i see is the JSF implementation. I use mojarra 2.1.20, that I manually updated in glassfish 3.1.2.2 (which ships with 2.1.6). > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Fri Feb 21 07:23:47 2014 From: issues at jboss.org (Sergiusz Kierat (JIRA)) Date: Fri, 21 Feb 2014 07:23:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-10998) High CPU Utilization in Richfaces application In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-10998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946808#comment-12946808 ] Sergiusz Kierat commented on RF-10998: -------------------------------------- Currently, we are struggling with the same issue on prd env. {code} "http-/0.0.0.0:12080-101" daemon prio=10 tid=0x00007f29f2db1000 nid=0xf84f runnable [0x00007f29dfb78000] java.lang.Thread.State: RUNNABLE at org.apache.catalina.connector.RequestFacade.getAttribute(RequestFacade.java:264) at javax.servlet.ServletRequestWrapper.getAttribute(ServletRequestWrapper.java:116) at javax.servlet.ServletRequestWrapper.getAttribute(ServletRequestWrapper.java:116) at com.sun.faces.context.RequestMap.put(ExternalContextImpl.java:1086) at org.ajax4jsf.event.AjaxPhaseListener.afterPhase(AjaxPhaseListener.java:81) at com.sun.faces.lifecycle.Phase.handleAfterPhase(Phase.java:175) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:114) at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:103) at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) {code} Do you mind me asking whether you have a solution? Our environment: jboss-as-7.2.0.Final, jdk 1.7.0_25, jsf 1.2_15, facelets 1.1.15, richfaces 3.3.3.Final > High CPU Utilization in Richfaces application > --------------------------------------------- > > Key: RF-10998 > URL: https://issues.jboss.org/browse/RF-10998 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 3.3.2.SR1 > Environment: Jboss 4.3.0.GA_CP03, jdk 1.6.0_05,jsf 1.2,facelets 1.1.14 > Reporter: Shah EM > Labels: richfaces > Fix For: 3.Future > > > We have an application running on 3 node > cluster.After running normally for some time one node CPU spikes to 80% from > the normal usage of 6% and stays like that. meanwhile other nodes are working > fine. > We had contacted Redhat and they had advised to downgrad richfaces version to 3.3.1 sp2 to fix the issue. > We have a doubt if the solution provided by Redhat to downgrade the rich faces version to 3.3.1-SP2 will solve the issue or not. > The 3.3.1-SP2 release note says that the following issue is fixed - [RF-7248] - a4j creates infinite HashMap.get loop > When we looked into more details of this issue that they fixed in the JBoss JIRA for this defect, the logs say that the issue is with a specific component in the a4j. Please have a look at the following trace from the issue logs. > Stack trace: > java.util.HashMap.get(HashMap.java:303) > org.ajax4jsf.component.UIDataAdaptor.restoreChildState(UIDataAdaptor.java:965) > org.ajax4jsf.component.UIDataAdaptor.restoreChildState(UIDataAdaptor.java:984) > org.ajax4jsf.component.UIDataAdaptor.restoreChildState(UIDataAdaptor.java:943) > In our case even though the issue is with the HashMap infinite loop, the cause of the issue does not seem to be this particular component. Our stack traces point to a different place where the infinite loop is happening. > Thread: http-10.20.81.200-17180-31 : priority:5, demon:true, threadId:337, threadState:RUNNABLE, lockName:null > java.util.HashMap.get(HashMap.java:305) > org.apache.catalina.connector.Request.getAttribute(Request.java:878) > org.apache.catalina.connector.RequestFacade.getAttribute(RequestFacade.java:263) > com.sun.faces.application.WebappLifecycleListener.attributeReplaced(WebappLifecycleListener.java:168) > com.sun.faces.config.ConfigureListener.attributeReplaced(ConfigureListener.java:318) > org.apache.catalina.connector.Request.setAttribute(Request.java:1435) > org.apache.catalina.connector.RequestFacade.setAttribute(RequestFacade.java:503) > javax.servlet.ServletRequestWrapper.setAttribute(ServletRequestWrapper.java:284) > com.sun.faces.context.RequestMap.put(ExternalContextImpl.java:1087) > org.ajax4jsf.event.AjaxPhaseListener.afterPhase(AjaxPhaseListener.java:81) > com.sun.faces.lifecycle.Phase.handleAfterPhase(Phase.java:175) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:114) > com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:104) > com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206 -- 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 From issues at jboss.org Fri Feb 21 11:49:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Fri, 21 Feb 2014 11:49:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-10998) High CPU Utilization in Richfaces application In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-10998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12946974#comment-12946974 ] Brian Leathem commented on RF-10998: ------------------------------------ RichFaces 3.3.3.Final and JSF 1.2 are incredibly out-of-date and are no longer being developed. Many improvements have been made in RichFaces 4 and JSF 2 including some performance improvements. I recommend you upgrade to a modern and supported framework. > High CPU Utilization in Richfaces application > --------------------------------------------- > > Key: RF-10998 > URL: https://issues.jboss.org/browse/RF-10998 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 3.3.2.SR1 > Environment: Jboss 4.3.0.GA_CP03, jdk 1.6.0_05,jsf 1.2,facelets 1.1.14 > Reporter: Shah EM > Labels: richfaces > Fix For: 3.Future > > > We have an application running on 3 node > cluster.After running normally for some time one node CPU spikes to 80% from > the normal usage of 6% and stays like that. meanwhile other nodes are working > fine. > We had contacted Redhat and they had advised to downgrad richfaces version to 3.3.1 sp2 to fix the issue. > We have a doubt if the solution provided by Redhat to downgrade the rich faces version to 3.3.1-SP2 will solve the issue or not. > The 3.3.1-SP2 release note says that the following issue is fixed - [RF-7248] - a4j creates infinite HashMap.get loop > When we looked into more details of this issue that they fixed in the JBoss JIRA for this defect, the logs say that the issue is with a specific component in the a4j. Please have a look at the following trace from the issue logs. > Stack trace: > java.util.HashMap.get(HashMap.java:303) > org.ajax4jsf.component.UIDataAdaptor.restoreChildState(UIDataAdaptor.java:965) > org.ajax4jsf.component.UIDataAdaptor.restoreChildState(UIDataAdaptor.java:984) > org.ajax4jsf.component.UIDataAdaptor.restoreChildState(UIDataAdaptor.java:943) > In our case even though the issue is with the HashMap infinite loop, the cause of the issue does not seem to be this particular component. Our stack traces point to a different place where the infinite loop is happening. > Thread: http-10.20.81.200-17180-31 : priority:5, demon:true, threadId:337, threadState:RUNNABLE, lockName:null > java.util.HashMap.get(HashMap.java:305) > org.apache.catalina.connector.Request.getAttribute(Request.java:878) > org.apache.catalina.connector.RequestFacade.getAttribute(RequestFacade.java:263) > com.sun.faces.application.WebappLifecycleListener.attributeReplaced(WebappLifecycleListener.java:168) > com.sun.faces.config.ConfigureListener.attributeReplaced(ConfigureListener.java:318) > org.apache.catalina.connector.Request.setAttribute(Request.java:1435) > org.apache.catalina.connector.RequestFacade.setAttribute(RequestFacade.java:503) > javax.servlet.ServletRequestWrapper.setAttribute(ServletRequestWrapper.java:284) > com.sun.faces.context.RequestMap.put(ExternalContextImpl.java:1087) > org.ajax4jsf.event.AjaxPhaseListener.afterPhase(AjaxPhaseListener.java:81) > com.sun.faces.lifecycle.Phase.handleAfterPhase(Phase.java:175) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:114) > com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:104) > com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206 -- 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 From issues at jboss.org Fri Feb 21 13:53:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Fri, 21 Feb 2014 13:53:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947013#comment-12947013 ] Brian Leathem commented on RF-13250: ------------------------------------ [~sebek64] would you like to formulate your patch as a Pull Request on github? https://community.jboss.org/wiki/GuideToUsePullRequestsWithGitHubAndJIRA Don't forget to sign the CLA: https://cla.jboss.org/index.seam Note: You do not have to create the PR, but it is the best way to assign and track appropriate attribution. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Fri Feb 21 20:29:49 2014 From: issues at jboss.org (Kalyan M (JIRA)) Date: Fri, 21 Feb 2014 20:29:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-9485) IE9 Beta - AJAX broken In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947051#comment-12947051 ] Kalyan M commented on RF-9485: ------------------------------ Will the solution suggested by Nicolas Daniels work for IE 10? > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, AJAX.js, IE9.txt, JSFAJAX.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown in the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf, line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 2373 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 issue or a RichFaces issue. -- 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 From issues at jboss.org Fri Feb 21 20:33:49 2014 From: issues at jboss.org (Kalyan M (JIRA)) Date: Fri, 21 Feb 2014 20:33:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-9485) IE9 Beta - AJAX broken In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947051#comment-12947051 ] Kalyan M edited comment on RF-9485 at 2/21/14 8:32 PM: ------------------------------------------------------- I am facing the same issue described above and felt excited to know that the fix suggested by Nicolas Daniels is working for some users on IE 9. Can i know if it will work in IE 10 too? was (Author: kalyancm): Will the solution suggested by Nicolas Daniels work for IE 10? > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, AJAX.js, IE9.txt, JSFAJAX.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown in the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf, line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 2373 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 issue or a RichFaces issue. -- 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 From issues at jboss.org Sun Feb 23 04:49:49 2014 From: issues at jboss.org (Nicolas Daniels (JIRA)) Date: Sun, 23 Feb 2014 04:49:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-9485) IE9 Beta - AJAX broken In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-9485?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947093#comment-12947093 ] Nicolas Daniels commented on RF-9485: ------------------------------------- I haven't tried it under IE10 but I think it should work. Best is probably to test it :-) > IE9 Beta - AJAX broken > ---------------------- > > Key: RF-9485 > URL: https://issues.jboss.org/browse/RF-9485 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: compatibility > Affects Versions: 3.3.2.SR1, 3.3.3.Final > Environment: Windows Vista SP2 (Virtual PC VM), IE9 Beta > Reporter: Andrew May > Labels: ie9 > Fix For: 3.Future > > Attachments: AJAX.js, AJAX.js, AJAX.js, IE9.txt, JSFAJAX.txt, sarissa.js > > > In the Rich Faces Demo (3.3.3 Final) there are a couple of errors shown in the JavaScript Console in IE9, and the Ajax demos do not work. > On loading a section: > SCRIPT5007: 'undefined' is null or not an object - framework.pack.js.jsf, line 1870 character 65 > On trying one of the AJAX demos (e.g. the CommandButton demo): > SCRIPT16386: No such interface supported - framework.pack.js.jsf, line 2373 character 3 > In our applications (3.2.SR1), we see an error for every Ajax request: > SCRIPT16386: No such interface supported - 3_3_2.SR1org.ajax4jsf.javascript.AjaxScript, line 120 character 1 > For both the SCRIPT16386 errors, the JavaScript is assigning A.outerHTML = new XMLSerializer().serializeToString(C) > I believe that this is the first version of IE9 to include XMLSerializer. > I don't know enough about XMLSerializer to know whether this is an IE9 issue or a RichFaces issue. -- 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 From issues at jboss.org Mon Feb 24 02:41:48 2014 From: issues at jboss.org (Pavel Slegr (JIRA)) Date: Mon, 24 Feb 2014 02:41:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947165#comment-12947165 ] Pavel Slegr commented on RF-13250: ---------------------------------- sent https://github.com/richfaces4/core/pull/21 for 4.3.x > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Mon Feb 24 03:43:48 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Mon, 24 Feb 2014 03:43:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947189#comment-12947189 ] Ji?? ?tefek commented on RF-12033: ---------------------------------- Manually updated JSF implementation in Glassfish 3.1.2.2 to 2.1.20. Tried with RF 4.3.4.Final on IE 9,10,11 and FF 27 and I still can't reproduce it. > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 03:47:47 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Mon, 24 Feb 2014 03:47:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek updated RF-12033: ----------------------------- Attachment: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm Attached screenshot and source of what I get with configuration used by Steve Oh. > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 05:29:47 2014 From: issues at jboss.org (Kristina Chyzhewska (JIRA)) Date: Mon, 24 Feb 2014 05:29:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-2494) Multiple clicks on a particular Tree node doesn't fire nodeSelectListener method for each click (only for the first time) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-2494?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947262#comment-12947262 ] Kristina Chyzhewska commented on RF-2494: ----------------------------------------- I solved this problem in our project as follows: For the corresponding uses which calls which processes such action like nodeSelectListener {code:title=treeNode.xhtml|borderStyle=solid} {code} > Multiple clicks on a particular Tree node doesn't fire nodeSelectListener method for each click (only for the first time) > ------------------------------------------------------------------------------------------------------------------------- > > Key: RF-2494 > URL: https://issues.jboss.org/browse/RF-2494 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 3.1.4 > Reporter: Mareks Malnacs > > Here is the problem: > -construct Tree with recursiveTreeNodesAdaptor, switchType="client" and ajaxSubmitSelection="true" > -add method binding to nodeSelectListener so that every click on tree node executes some business method (for tests - simple log message displaying clicked node id for example) > Result: > -tree is rendered fine, clicks on different node elements in a tree executes specified nodeSelectListener method also fine, BUT when user clicks same tree node twice, nodeSelectListener method is not fired - to get it fired for this particular node again You have to click some other node in a tree and then click back on desired one. Shouldn't nodeSelectListener be fired on each click on a tree node even though user is clicking on the same node multiple times ? -- 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 From issues at jboss.org Mon Feb 24 06:53:47 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Mon, 24 Feb 2014 06:53:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Steve Oh updated RF-12033: -------------------------- Attachment: rf12033_IE9_error.png IE9, mojarra 2.1.20 > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 06:53:48 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Mon, 24 Feb 2014 06:53:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Steve Oh updated RF-12033: -------------------------- Attachment: rf12033_IE10_OK_resizing_window.png IE9, mojarra 2.1.20, same setup, but after resizing the browser window > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 06:57:47 2014 From: issues at jboss.org (Steve Oh (JIRA)) Date: Mon, 24 Feb 2014 06:57:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947301#comment-12947301 ] Steve Oh commented on RF-12033: ------------------------------- Jiri, I have added two screenshots from my setup. one showing the problem and the second one, that looks just like yours. I just resized the browser window in between. how can I help? regards > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 09:01:49 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Mon, 24 Feb 2014 09:01:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947361#comment-12947361 ] Ji?? ?tefek commented on RF-12033: ---------------------------------- Oh, now I see. It doesn't matter which JSF version, browser or container you are using. The important part is: resizing the window before opening the tab with EDT. Tried with RF 4.3.4.Final and RF 5.0 and 4.3.x Snapshots. Steps to reproduce: # unzip, build and deploy the richfaces-test.zip attached here and open in browser # {color:red}resize the browser window{color} # open the second tab ** have: gray bar instead of EDT or can be reproduced with Metamer: # deploy Metamer and open http://localhost:8080/metamer/faces/components/richExtendedDataTable/simple.xhtml?templates=richTabPanel # open the second tab # resize the browser window # open the third tab ** have: only the borders of EDT are visible > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Ji?? ?tefek > Labels: lazy-loaded > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 09:01:50 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Mon, 24 Feb 2014 09:01:50 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ji?? ?tefek reassigned RF-12033: -------------------------------- Assignee: Brian Leathem (was: Ji?? ?tefek) > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Brian Leathem > Labels: lazy-loaded > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 09:03:47 2014 From: issues at jboss.org (=?UTF-8?Q?Ji=C5=99=C3=AD_=C5=A0tefek_=28JIRA=29?=) Date: Mon, 24 Feb 2014 09:03:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947361#comment-12947361 ] Ji?? ?tefek edited comment on RF-12033 at 2/24/14 9:03 AM: ----------------------------------------------------------- Oh, now I see. It doesn't matter which JSF version, browser or container you are using. The important part is: resizing the window before opening the tab with EDT. Tried with: RF 4.3.4.Final, RF 5.0 and 4.3.x Snapshots. FF 27, IE9. GlassFish 3.1.2.2 vanilla and with JSF 2.1.20, EAP 6.2. Steps to reproduce: # unzip, build and deploy the richfaces-test.zip attached here and open in browser # {color:red}resize the browser window{color} # open the second tab ** have: gray bar instead of EDT or can be reproduced with Metamer: # deploy Metamer and open http://localhost:8080/metamer/faces/components/richExtendedDataTable/simple.xhtml?templates=richTabPanel # open the second tab # resize the browser window # open the third tab ** have: only the borders of EDT are visible was (Author: jstefek): Oh, now I see. It doesn't matter which JSF version, browser or container you are using. The important part is: resizing the window before opening the tab with EDT. Tried with RF 4.3.4.Final and RF 5.0 and 4.3.x Snapshots. Steps to reproduce: # unzip, build and deploy the richfaces-test.zip attached here and open in browser # {color:red}resize the browser window{color} # open the second tab ** have: gray bar instead of EDT or can be reproduced with Metamer: # deploy Metamer and open http://localhost:8080/metamer/faces/components/richExtendedDataTable/simple.xhtml?templates=richTabPanel # open the second tab # resize the browser window # open the third tab ** have: only the borders of EDT are visible > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Brian Leathem > Labels: lazy-loaded > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 10:53:47 2014 From: issues at jboss.org (Sande Gilda (JIRA)) Date: Mon, 24 Feb 2014 10:53:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13553) Kitchensink-rf: several unused imports In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sande Gilda moved JDF-664 to RF-13553: -------------------------------------- Project: RichFaces (was: JBoss Developer Framework) Key: RF-13553 (was: JDF-664) Component/s: examples (was: quickstarts) Security: Public > Kitchensink-rf: several unused imports > -------------------------------------- > > Key: RF-13553 > URL: https://issues.jboss.org/browse/RF-13553 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Environment: WFK 2.5.0.ER1 > Reporter: Pavol Pitonak > Assignee: Sande Gilda > > Class org.jboss.as.quickstarts.kitchensinkrf.util.UserAgent in jboss-kitchensink-rf contains 3 unused imports which can be safely removed: > * import javax.faces.bean.ManagedBean; > * import javax.faces.bean.SessionScoped; > * import javax.inject.Inject; > Class org.jboss.as.quickstarts.kitchensinkrf.util.RewriteConfigurationProvider contain one unused import: > * import javax.inject.Inject; -- 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 From issues at jboss.org Mon Feb 24 10:53:48 2014 From: issues at jboss.org (Sande Gilda (JIRA)) Date: Mon, 24 Feb 2014 10:53:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13553) Kitchensink-rf: several unused imports In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sande Gilda updated RF-13553: ----------------------------- Assignee: (was: Sande Gilda) > Kitchensink-rf: several unused imports > -------------------------------------- > > Key: RF-13553 > URL: https://issues.jboss.org/browse/RF-13553 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Environment: WFK 2.5.0.ER1 > Reporter: Pavol Pitonak > > Class org.jboss.as.quickstarts.kitchensinkrf.util.UserAgent in jboss-kitchensink-rf contains 3 unused imports which can be safely removed: > * import javax.faces.bean.ManagedBean; > * import javax.faces.bean.SessionScoped; > * import javax.inject.Inject; > Class org.jboss.as.quickstarts.kitchensinkrf.util.RewriteConfigurationProvider contain one unused import: > * import javax.inject.Inject; -- 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 From issues at jboss.org Mon Feb 24 13:03:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 24 Feb 2014 13:03:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13554) RichFaces validation demo contains invalid navigation rules In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13554?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem moved WFK2-498 to RF-13554: ----------------------------------------- Project: RichFaces (was: JBoss WFK 2) Key: RF-13554 (was: WFK2-498) Workflow: GIT Pull Request workflow (was: CDW v1) Affects Version/s: 4.3.5 (was: 2.5.0.ER1) Component/s: examples (was: RichFaces) Target Release: (was: 2.5.0.GA) > RichFaces validation demo contains invalid navigation rules > ----------------------------------------------------------- > > Key: RF-13554 > URL: https://issues.jboss.org/browse/RF-13554 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Affects Versions: 4.3.5 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Minor > > There are two invalid JSF navigation rules in faces-config.xml of richfaces-validation demo. These rules can be safely removed because the application doesn't use them. > {code} > > /index.xhtml > > #{auth.authenticate(username)} > #{auth.logged} > /tasks.xhtml > > > > > > /tasks.xhtml > > #{auth.logout} > #{!auth.logged} > /index.xhtml > > > > {code} -- 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 From issues at jboss.org Mon Feb 24 13:15:49 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 24 Feb 2014 13:15:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13555) RichFaces validation demo contains invalid navigation rules In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem moved to : ----------------------------- > RichFaces validation demo contains invalid navigation rules > ----------------------------------------------------------- > > Key: RF-13555 > URL: https://issues.jboss.org/browse/RF-13555 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Affects Versions: 4.3.5 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Minor > > There are two invalid JSF navigation rules in faces-config.xml of richfaces-validation demo. These rules can be safely removed because the application doesn't use them. > {code} > > /index.xhtml > > #{auth.authenticate(username)} > #{auth.logged} > /tasks.xhtml > > > > > > /tasks.xhtml > > #{auth.logout} > #{!auth.logged} > /index.xhtml > > > > {code} -- 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 From issues at jboss.org Mon Feb 24 13:15:49 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 24 Feb 2014 13:15:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13555) RichFaces validation demo contains invalid navigation rules In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem deleted RF-13555: ------------------------------- > RichFaces validation demo contains invalid navigation rules > ----------------------------------------------------------- > > Key: RF-13555 > URL: https://issues.jboss.org/browse/RF-13555 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Minor > > There are two invalid JSF navigation rules in faces-config.xml of richfaces-validation demo. These rules can be safely removed because the application doesn't use them. > {code} > > /index.xhtml > > #{auth.authenticate(username)} > #{auth.logged} > /tasks.xhtml > > > > > > /tasks.xhtml > > #{auth.logout} > #{!auth.logged} > /index.xhtml > > > > {code} -- 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 From issues at jboss.org Mon Feb 24 13:39:48 2014 From: issues at jboss.org (Sande Gilda (JIRA)) Date: Mon, 24 Feb 2014 13:39:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13553) Kitchensink-rf: several unused imports In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sande Gilda updated RF-13553: ----------------------------- Description: Class org.jboss.as.quickstarts.kitchensinkrf.util.UserAgent in jboss-kitchensink-rf contains 3 unused imports which can be safely removed: * import javax.faces.bean.ManagedBean; * import javax.faces.bean.SessionScoped; * import javax.inject.Inject; Class org.jboss. fromas.quickstarts.kitchensinkrf.util.RewriteConfigurationProvider contain one unused import: * import javax.inject.Inject; was: Class org.jboss.as.quickstarts.kitchensinkrf.util.UserAgent in jboss-kitchensink-rf contains 3 unused imports which can be safely removed: * import javax.faces.bean.ManagedBean; * import javax.faces.bean.SessionScoped; * import javax.inject.Inject; Class org.jboss.as.quickstarts.kitchensinkrf.util.RewriteConfigurationProvider contain one unused import: * import javax.inject.Inject; > Kitchensink-rf: several unused imports > -------------------------------------- > > Key: RF-13553 > URL: https://issues.jboss.org/browse/RF-13553 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Environment: WFK 2.5.0.ER1 > Reporter: Pavol Pitonak > Assignee: Sande Gilda > > Class org.jboss.as.quickstarts.kitchensinkrf.util.UserAgent in jboss-kitchensink-rf contains 3 unused imports which can be safely removed: > * import javax.faces.bean.ManagedBean; > * import javax.faces.bean.SessionScoped; > * import javax.inject.Inject; > Class org.jboss. fromas.quickstarts.kitchensinkrf.util.RewriteConfigurationProvider contain one unused import: > * import javax.inject.Inject; -- 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 From issues at jboss.org Mon Feb 24 13:39:48 2014 From: issues at jboss.org (Sande Gilda (JIRA)) Date: Mon, 24 Feb 2014 13:39:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13553) Kitchensink-rf: several unused imports In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13553?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sande Gilda reassigned RF-13553: -------------------------------- Assignee: Sande Gilda > Kitchensink-rf: several unused imports > -------------------------------------- > > Key: RF-13553 > URL: https://issues.jboss.org/browse/RF-13553 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Environment: WFK 2.5.0.ER1 > Reporter: Pavol Pitonak > Assignee: Sande Gilda > > Class org.jboss.as.quickstarts.kitchensinkrf.util.UserAgent in jboss-kitchensink-rf contains 3 unused imports which can be safely removed: > * import javax.faces.bean.ManagedBean; > * import javax.faces.bean.SessionScoped; > * import javax.inject.Inject; > Class org.jboss. fromas.quickstarts.kitchensinkrf.util.RewriteConfigurationProvider contain one unused import: > * import javax.inject.Inject; -- 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 From issues at jboss.org Mon Feb 24 13:41:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 24 Feb 2014 13:41:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947543#comment-12947543 ] Brian Leathem commented on RF-13250: ------------------------------------ [~jhuska] can you please share the results of your testing of the patch against RF 4.3? Or we ready to resolve this issue? > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Mon Feb 24 14:01:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 24 Feb 2014 14:01:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13554) RichFaces validation demo contains invalid navigation rules In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13554?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem resolved RF-13554. -------------------------------- Fix Version/s: 4.3.5 Resolution: Done > RichFaces validation demo contains invalid navigation rules > ----------------------------------------------------------- > > Key: RF-13554 > URL: https://issues.jboss.org/browse/RF-13554 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: examples > Affects Versions: 4.3.5 > Reporter: Pavol Pitonak > Assignee: Brian Leathem > Priority: Minor > Fix For: 4.3.5 > > > There are two invalid JSF navigation rules in faces-config.xml of richfaces-validation demo. These rules can be safely removed because the application doesn't use them. > {code} > > /index.xhtml > > #{auth.authenticate(username)} > #{auth.logged} > /tasks.xhtml > > > > > > /tasks.xhtml > > #{auth.logout} > #{!auth.logged} > /index.xhtml > > > > {code} -- 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 From issues at jboss.org Mon Feb 24 15:33:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 24 Feb 2014 15:33:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12033: ------------------------------- Description: ExtendedDataTable doesn't show up in tabpanel with switchType="client" when the browser window is resized. Facelet file from the attached testcase: {code} Test One

Extended datatable inside tabpanel with switchType "client"

Tab One Tab One Tab Two Column 1 #{color}
{code} was: ExtendedDataTable doesn't show up in tabpanel with switchType="client" Facelet file from the attached testcase: {code} Test One

Extended datatable inside tabpanel with switchType "client"

Tab One Tab One Tab Two Column 1 #{color}
{code} > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Brian Leathem > Labels: lazy-loaded > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" when the browser window is resized. > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 15:35:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 24 Feb 2014 15:35:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem updated RF-12033: ------------------------------- Fix Version/s: 5-Tracking > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Assignee: Brian Leathem > Labels: lazy-loaded > Fix For: 5-Tracking > > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" when the browser window is resized. > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 15:35:49 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 24 Feb 2014 15:35:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brian Leathem reassigned RF-12033: ---------------------------------- Assignee: (was: Brian Leathem) > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Fix For: 5-Tracking > > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" when the browser window is resized. > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 15:37:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Mon, 24 Feb 2014 15:37:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12033) ExtendedDataTable doesn't show up in tabpanel with switchType="client" In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12033?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947632#comment-12947632 ] Brian Leathem commented on RF-12033: ------------------------------------ Thanks for your persistence in reproducing [~jstefek] and [~cc2000]. > ExtendedDataTable doesn't show up in tabpanel with switchType="client" > ---------------------------------------------------------------------- > > Key: RF-12033 > URL: https://issues.jboss.org/browse/RF-12033 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-tables > Affects Versions: 4.2.0.Final > Environment: FireFox 10.0.2 (works in IE7) > GlassFish 3.1 > Reporter: Josh Hill > Labels: lazy-loaded > Fix For: 5-Tracking > > Attachments: rf-12033-jsf2.1.20-glassfish3.1.2.2-ie-source-OK.htm, rf-12033-jsf2.1.20-glassfish3.1.2.2-ie9-OK.png, rf12033_IE10_OK_resizing_window.png, rf12033_IE9_error.png, richfaces-test.zip > > > ExtendedDataTable doesn't show up in tabpanel with switchType="client" when the browser window is resized. > Facelet file from the attached testcase: > {code} > > > xmlns:h="http://java.sun.com/jsf/html" > xmlns:rich="http://richfaces.org/rich" > xmlns:f="http://java.sun.com/jsf/core"> > > Test One > > >

Extended datatable inside tabpanel with switchType "client"

> > > > > Tab One > > Tab One > > > > Tab Two > > > > > Column 1 > > #{color} > > > > > >
> > {code} -- 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 From issues at jboss.org Mon Feb 24 18:31:48 2014 From: issues at jboss.org (=?UTF-8?Q?Juraj_H=C3=BAska_=28JIRA=29?=) Date: Mon, 24 Feb 2014 18:31:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947688#comment-12947688 ] Juraj H?ska commented on RF-13250: ---------------------------------- I can confirm that with 4.3.x the patch work as well. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Mon Feb 24 23:33:47 2014 From: issues at jboss.org (Shah EM (JIRA)) Date: Mon, 24 Feb 2014 23:33:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-10998) High CPU Utilization in Richfaces application In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-10998?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947714#comment-12947714 ] Shah EM commented on RF-10998: ------------------------------ This issue happens because of concurrent access of same request object in some weird cases. To avoid this we have implemented the queue. We have defined Global queue in the web.xml. Please note that the Global queue can have a bit performance hit. If you know which page is causing the issue then in that case you can define queue at page level. Global queue : A global queue is used by all the pages in the application. A global queue is defined in the web.xml file: org.richfaces.queue.global.enabled true The above is equivalent to adding the following to every page in your application: The global queue name is org.richfaces.queue.global. To set attributes on the queue, we use the queue name like this: Request delay will be set for the current page only. If you need to disable the global on any particular page, then the disabled attribute can be used: > High CPU Utilization in Richfaces application > --------------------------------------------- > > Key: RF-10998 > URL: https://issues.jboss.org/browse/RF-10998 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 3.3.2.SR1 > Environment: Jboss 4.3.0.GA_CP03, jdk 1.6.0_05,jsf 1.2,facelets 1.1.14 > Reporter: Shah EM > Labels: richfaces > Fix For: 3.Future > > > We have an application running on 3 node > cluster.After running normally for some time one node CPU spikes to 80% from > the normal usage of 6% and stays like that. meanwhile other nodes are working > fine. > We had contacted Redhat and they had advised to downgrad richfaces version to 3.3.1 sp2 to fix the issue. > We have a doubt if the solution provided by Redhat to downgrade the rich faces version to 3.3.1-SP2 will solve the issue or not. > The 3.3.1-SP2 release note says that the following issue is fixed - [RF-7248] - a4j creates infinite HashMap.get loop > When we looked into more details of this issue that they fixed in the JBoss JIRA for this defect, the logs say that the issue is with a specific component in the a4j. Please have a look at the following trace from the issue logs. > Stack trace: > java.util.HashMap.get(HashMap.java:303) > org.ajax4jsf.component.UIDataAdaptor.restoreChildState(UIDataAdaptor.java:965) > org.ajax4jsf.component.UIDataAdaptor.restoreChildState(UIDataAdaptor.java:984) > org.ajax4jsf.component.UIDataAdaptor.restoreChildState(UIDataAdaptor.java:943) > In our case even though the issue is with the HashMap infinite loop, the cause of the issue does not seem to be this particular component. Our stack traces point to a different place where the infinite loop is happening. > Thread: http-10.20.81.200-17180-31 : priority:5, demon:true, threadId:337, threadState:RUNNABLE, lockName:null > java.util.HashMap.get(HashMap.java:305) > org.apache.catalina.connector.Request.getAttribute(Request.java:878) > org.apache.catalina.connector.RequestFacade.getAttribute(RequestFacade.java:263) > com.sun.faces.application.WebappLifecycleListener.attributeReplaced(WebappLifecycleListener.java:168) > com.sun.faces.config.ConfigureListener.attributeReplaced(ConfigureListener.java:318) > org.apache.catalina.connector.Request.setAttribute(Request.java:1435) > org.apache.catalina.connector.RequestFacade.setAttribute(RequestFacade.java:503) > javax.servlet.ServletRequestWrapper.setAttribute(ServletRequestWrapper.java:284) > com.sun.faces.context.RequestMap.put(ExternalContextImpl.java:1087) > org.ajax4jsf.event.AjaxPhaseListener.afterPhase(AjaxPhaseListener.java:81) > com.sun.faces.lifecycle.Phase.handleAfterPhase(Phase.java:175) > com.sun.faces.lifecycle.Phase.doPhase(Phase.java:114) > com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:104) > com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) > javax.faces.webapp.FacesServlet.service(FacesServlet.java:265) > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206 -- 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 From issues at jboss.org Tue Feb 25 04:37:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 25 Feb 2014 04:37:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13552) EPVC includes twice in when JRebel is used In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13552?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13552. ----------------------------- Assignee: Luk?? Fry? Resolution: Rejected Fixed in JRebel 5.5.2-SNAPSHOT (201402211650) > EPVC includes twice in 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? > Assignee: Luk?? Fry? > > {code} > > > alert('oncomplete')messages > alert('oncomplete')messages > > > {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 From issues at jboss.org Tue Feb 25 06:59:47 2014 From: issues at jboss.org (Mohammad Weshah (JIRA)) Date: Tue, 25 Feb 2014 06:59:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13323) FileUploadEvent listener reset the list value with Viewscope In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13323?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947835#comment-12947835 ] Mohammad Weshah commented on RF-13323: -------------------------------------- the problem was : javax.faces.STATE_SAVING_METHOD client the file upload dose not work with view scope with javax.faces.STATE_SAVING_METHOD = client set the value to server it works > FileUploadEvent listener reset the list value with Viewscope > ------------------------------------------------------------ > > Key: RF-13323 > URL: https://issues.jboss.org/browse/RF-13323 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.3.4 > Environment: Jboss 7.1 > Richfaces 4.3.4 > JSF 2.1.9 > > Reporter: Mohammad Weshah > Assignee: Ji?? ?tefek > Labels: rich:fileUpload > Attachments: RF-13323-2.zip, RF-13323-SessionScoped.png, RF-13323-ViewScoped.png, RF-13323.zip, TestRichFacesWebProject.rar, TestRichFacesWebProject.war > > > Hello All, > i make an example of upload file from richfaces showcase it is working successfully , but i notice if i changed the backing bean to viewscope the files list inside the FileUploadEvent listener will be rest every time that i upload new file , the code as follow : > > {code} > protected List files = new ArrayList(); > > public void FileUploadlistener(FileUploadEvent event) throws Exception { > UploadedFile item = event.getUploadedFile(); > UploadedImage file = new UploadedImage(); > file.setLength(item.getData().length); > file.setName(item.getName()); > file.setData(item.getData()); > > files.add(file); > } > {code} > > but when i changed the scope to session the files still contain the old files, is it mandatory to the backing be session or there is something wrong ? > > Regards > Wish79 -- 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 From issues at jboss.org Tue Feb 25 08:31:48 2014 From: issues at jboss.org (=?UTF-8?Q?Marcel_=C5=A0ebek_=28JIRA=29?=) Date: Tue, 25 Feb 2014 08:31:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947864#comment-12947864 ] Marcel ?ebek commented on RF-13250: ----------------------------------- Sorry for late reply, I was out of office for a few days. Thanks to Pavel Slegr for creating pull request. I just want to note that the patch has been tested for a week in our production environment with no problems so far. For that time, we had hundreds of thousands messages "Committed error code 400" in log and jboss has still enough heap space. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Tue Feb 25 08:35:49 2014 From: issues at jboss.org (Pavel Slegr (JIRA)) Date: Tue, 25 Feb 2014 08:35:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12947869#comment-12947869 ] Pavel Slegr commented on RF-13250: ---------------------------------- Thank you [~sebek64] for the patch ! [~bleathem] please pull the patch to 4.3.x > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Tue Feb 25 11:39:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 25 Feb 2014 11:39:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13250: ---------------------------- Fix Version/s: 4.3.6 5.0.0.Alpha4 > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Fix For: 4.3.6, 5.0.0.Alpha4 > > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Tue Feb 25 11:39:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Tue, 25 Feb 2014 11:39:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13250) Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13250?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13250. ----------------------------- Resolution: Done The patch was applied to 4.3.6-SNAPSHOT and 5.0.0-SNAPSHOT. > Extreme memory usage in RF4.3.4.Final and not in RF4.3.3.Final > -------------------------------------------------------------- > > Key: RF-13250 > URL: https://issues.jboss.org/browse/RF-13250 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Affects Versions: 4.3.4, 4.3.5 > Environment: Gentoo Linux, Tomcat 7.0.39, MyFaces 2.1.12, Tomahawk 1.1.14, RichFaces 4.3.4, APR 1.4.5 > Reporter: Milo van der Zee > Assignee: Juraj H?ska > Labels: memoryleak > Fix For: 4.3.6, 5.0.0.Alpha4 > > Attachments: rf.patch > > > Hello, > I did an upgrade from RF 4.3.3.Final to 4.3.4.Final and the application started to crash with 'Out Off Memory' errors. I changed the POM back to 4.3.3.Final and the problem is gone. > I also started seeing this message lot's of times: > {{WARN org.atmosphere.cpr.AtmosphereResponse - Committed error code 400}} > I don't know if that has anything to do with the error. I set {{org.atmosphere.cpr.sessionSupport}} to {{true}} and I did not see the message again. But still the application went out-of-memory. > In the crashed system heap dump I see a lot of: > - AtomicBoolean (751.000, 15.0MB) > - ConcurrentLinkedQueue > - AtmospereRequest$Builder (60.042, 13.8MB) > To me it looks like it has something to do with Atmosphere. Any ideas? > Thanks, > Milo van der Zee -- 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 From issues at jboss.org Wed Feb 26 05:49:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:49:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12906) JavaDoc generation issues during build In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12906?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12906: ---------------------------- Summary: JavaDoc generation issues during build (was: JavaDoc issues) > JavaDoc generation issues during build > -------------------------------------- > > Key: RF-12906 > URL: https://issues.jboss.org/browse/RF-12906 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: doc > Affects Versions: 5.0.0.Alpha1 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5-Tracking > > Original Estimate: 4 hours > Remaining Estimate: 4 hours > > There are lot of JavaDoc issues: > {code} > [INFO] [WARNING] Javadoc Warnings > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/cache/CacheFactory.java:41: warning - @param argument "cacheLoader" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/cache/CacheFactory.java:41: warning - Tag @link: reference not found: CacheLoader > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/cache/CacheFactory.java:41: warning - @param argument "cacheConfigurationloader" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/event/MethodExpressionEventListener.java:114: warning - @inheritDoc used but processEvent(FacesEvent) does not override or implement any method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/event/MethodExpressionEventListener.java:114: warning - @inheritDoc used but processEvent(FacesEvent) does not override or implement any method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/ScriptString.java:36: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/JavaScriptService.java:59: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/JavaScriptServiceImpl.java:101: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/JSObject.java:35: warning - @param argument "parameter" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/ScriptUtils.java:233: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/validation/ClientValidatorRenderer.java:229: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/validation/ClientValidatorRenderer.java:251: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/input/AbstractFileUpload.java:209: warning - Tag @link: reference not found: org.richfaces.FileUploadEvent > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/input/AbstractFileUpload.java:209: warning - Tag @link: reference not found: org.richfaces.FileUploadEvent > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:193: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:218: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "58" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "47" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "47" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "47" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "47" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "45" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link: reference not found: https://issues.jboss.org/browse/RF-10695 > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link: reference not found: https://issues.jboss.org/browse/RF-10695 > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/common/ComponentAttribute.java:118: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/common/ComponentAttribute.java:135: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/common/ComponentAttribute.java:66: warning - @param argument "defaultValue" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/common/PartialStateHolderHelper.java:143: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/behavior/ClientValidatorImpl.java:177: warning - Tag @link: reference not found: org.richfaces.component.UIRichMessages > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/behavior/ClientValidatorImpl.java:177: warning - Tag @link: reference not found: org.richfaces.component.UIRichMessages > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/iteration/AbstractDataScroller.java:136: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/model/DataVisitor.java:40: warning - Tag @link: can't find walk(FacesContext, DataVisitor, Range) in org.richfaces.model.ExtendedDataModel > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/core/AjaxOutput.java:37: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/core/AjaxOutput.java:51: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/core/UIActionParameter.java:185: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/ajax/AjaxOutputPanelRenderer.java:101: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/AjaxRendererUtils.java:449: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/CoreRendererUtils.java:113: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/CoreRendererUtils.java:94: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:414: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:432: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:481: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:566: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:732: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:660: warning - Tag @link: reference not found: encodeId > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:566: warning - @return tag cannot be used in method with void return type. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:660: warning - Tag @link: reference not found: encodeId > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/request/MultipartRequestParser.java:119: warning - @param argument "uploadId" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/validator/GraphValidator.java:18: warning - Tag @link: reference not found: Validator > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/Skin.java:246: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/Skin.java:256: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/Skin.java:265: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/AbstractSkinFactory.java:119: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/SkinFactory.java:50: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/SkinFactory.java:58: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/SkinFactory.java:66: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/SkinFactory.java:73: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/AbstractSkinFactory.java:106: warning - @param argument "defaultProperties" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:143: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:152: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:161: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:170: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:179: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:188: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:101: warning - @param argument "c" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:149: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:158: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:167: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:176: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:185: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:194: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:53: warning - @param argument "bytes" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:107: warning - @param argument "c" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:66: warning - Tag @see: missing '#': "java.io.InputStream.read()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:66: warning - Tag @see: can't find java.io.InputStream.read() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:92: warning - Tag @see: missing '#': "java.io.InputStream.read(byte b[])" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:92: warning - Tag @see: can't find java.io.InputStream.read(byte b[]) in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:133: warning - Tag @see: missing '#': "java.io.InputStream.read(byte b[], int off, int len)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:133: warning - Tag @see: can't find java.io.InputStream.read(byte b[], int off, int len) in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:175: warning - Tag @see: missing '#': "java.io.InputStream.available()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:175: warning - Tag @see: can't find java.io.InputStream.available() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:194: warning - Tag @see: missing '#': "java.io.InputStream.mark()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:194: warning - Tag @see: can't find java.io.InputStream.mark() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:211: warning - Tag @see: missing '#': "java.io.InputStream.reset()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:211: warning - Tag @see: can't find java.io.InputStream.reset() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:231: warning - Tag @see: missing '#': "java.io.InputStream.skip()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:231: warning - Tag @see: can't find java.io.InputStream.skip() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:76: warning - Tag @see: missing '#': "java.io.OutputStream.write(int c)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:76: warning - Tag @see: can't find java.io.OutputStream.write(int c) in org.richfaces.io.FastBufferOutputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:84: warning - Tag @see: missing '#': "java.io.OutputStream.write(byte b[])" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:84: warning - Tag @see: can't find java.io.OutputStream.write(byte b[]) in org.richfaces.io.FastBufferOutputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:98: warning - Tag @see: missing '#': "java.io.OutputStream.write(byte[] b, int off, int len)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:98: warning - Tag @see: can't find java.io.OutputStream.write(byte[] b, int off, int len) in org.richfaces.io.FastBufferOutputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:116: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:125: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:195: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:221: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:70: warning - Tag @see: missing '#': "java.io.Reader.read()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:70: warning - Tag @see: can't find java.io.Reader.read() in org.richfaces.io.FastBufferReader > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:95: warning - Tag @see: missing '#': "java.io.Reader.read(char[] cbuf, int off, int len)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:95: warning - Tag @see: can't find java.io.Reader.read(char[] cbuf, int off, int len) in org.richfaces.io.FastBufferReader > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:138: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:160: warning - @param argument "out" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:77: warning - Tag @see: missing '#': "java.io.Writer.write(int c)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:77: warning - Tag @see: can't find java.io.Writer.write(int c) in org.richfaces.io.FastBufferWriter > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:85: warning - Tag @see: missing '#': "java.io.Writer.write(char cbuf[])" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:85: warning - Tag @see: can't find java.io.Writer.write(char cbuf[]) in org.richfaces.io.FastBufferWriter > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:97: warning - Tag @see: missing '#': "java.io.Writer.write(char cbuf[], int off, int len)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:97: warning - Tag @see: can't find java.io.Writer.write(char cbuf[], int off, int len) in org.richfaces.io.FastBufferWriter > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:117: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:126: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:202: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:228: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:144: warning - @param argument "out" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:177: warning - @param argument "out" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:43: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:101: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:153: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:205: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:258: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/LogFactory.java:47: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/LogFactory.java:59: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/model/DataComponentState.java:36: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/MediaOutputResource.java:102: warning - @param argument "uiMediaOutput" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/ResourceFactoryImpl.java:241: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/ResourceFactoryImpl.java:241: warning - Tag @link: can't find isResourceExists(String) in org.richfaces.resource.ResourceFactoryImpl > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/ResourceParameter.java:54: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/ResourceParameter.java:47: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/util/core/ServicesUtils.java:57: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/util/core/ServicesUtils.java:115: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/util/core/ServicesUtils.java:147: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/util/core/resource/URLToStreamHelper.java:76: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:47: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:57: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:68: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:79: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:90: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELContextWrapper.java:60: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELContextWrapper.java:68: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELContextWrapper.java:77: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ValueDescriptor.java:22: warning - @param argument "propertyType" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ValueDescriptor.java:22: warning - @param argument "readOnly" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/util/ELUtils.java:50: warning - @param argument "context" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/application/CacheProvider.java:53: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/application/CoreConfiguration.java:51: warning - Tag @link: reference not found: org.richfaces.Skin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/application/ServiceLoader.java:69: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/application/ServiceLoader.java:116: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] javadoc: warning - Multiple sources of package comments found for package "org.ajax4jsf.renderkit" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/validator/GraphValidator.java:18: warning - Tag @link: reference not found: Validator > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/input/AbstractFileUpload.java:209: warning - Tag @link: reference not found: org.richfaces.FileUploadEvent > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > /main/java/org/richfaces/validator/GraphValidator.java:18: warning - Tag @link: reference not found: Validator > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/input/AbstractFileUpload.java:209: warning - Tag @link: reference not found: org.richfaces.FileUploadEvent > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:660: warning - Tag @link: reference not found: encodeId > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/behavior/ClientValidatorImpl.java:177: warning - Tag @link: reference not found: org.richfaces.component.UIRichMessages > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link: reference not found: https://issues.jboss.org/browse/RF-10695 > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/validator/GraphValidator.java:18: warning - Tag @link: reference not found: Validator > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > {code} -- 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 From issues at jboss.org Wed Feb 26 05:49:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:49:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13130) Add Hamcrest for BDD-style assertions In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13130?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13130. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Out of Date The code base already contains Hamcrest in some tests and the artifacts version is managed in build/pom.xml and used in framework/pom.xml. > Add Hamcrest for BDD-style assertions > ------------------------------------- > > Key: RF-13130 > URL: https://issues.jboss.org/browse/RF-13130 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: tests - unit > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > https://code.google.com/p/hamcrest/ -- 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 From issues at jboss.org Wed Feb 26 05:51:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:51:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12906) JavaDoc generation issues during build In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12906?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12906: ---------------------------- Assignee: (was: Luk?? Fry?) > JavaDoc generation issues during build > -------------------------------------- > > Key: RF-12906 > URL: https://issues.jboss.org/browse/RF-12906 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: doc > Affects Versions: 5.0.0.Alpha1 > Reporter: Luk?? Fry? > Fix For: 5-Tracking > > Original Estimate: 4 hours > Remaining Estimate: 4 hours > > There are lot of JavaDoc issues: > {code} > [INFO] [WARNING] Javadoc Warnings > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/cache/CacheFactory.java:41: warning - @param argument "cacheLoader" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/cache/CacheFactory.java:41: warning - Tag @link: reference not found: CacheLoader > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/cache/CacheFactory.java:41: warning - @param argument "cacheConfigurationloader" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/event/MethodExpressionEventListener.java:114: warning - @inheritDoc used but processEvent(FacesEvent) does not override or implement any method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/event/MethodExpressionEventListener.java:114: warning - @inheritDoc used but processEvent(FacesEvent) does not override or implement any method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/ScriptString.java:36: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/JavaScriptService.java:59: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/JavaScriptServiceImpl.java:101: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/JSObject.java:35: warning - @param argument "parameter" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/javascript/ScriptUtils.java:233: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/validation/ClientValidatorRenderer.java:229: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/validation/ClientValidatorRenderer.java:251: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/input/AbstractFileUpload.java:209: warning - Tag @link: reference not found: org.richfaces.FileUploadEvent > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/input/AbstractFileUpload.java:209: warning - Tag @link: reference not found: org.richfaces.FileUploadEvent > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:193: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:218: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "58" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "47" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "47" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "47" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "47" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link:illegal character: "45" in "https://issues.jboss.org/browse/RF-10695" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link: reference not found: https://issues.jboss.org/browse/RF-10695 > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link: reference not found: https://issues.jboss.org/browse/RF-10695 > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/common/ComponentAttribute.java:118: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/common/ComponentAttribute.java:135: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/common/ComponentAttribute.java:66: warning - @param argument "defaultValue" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/common/PartialStateHolderHelper.java:143: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/behavior/ClientValidatorImpl.java:177: warning - Tag @link: reference not found: org.richfaces.component.UIRichMessages > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/behavior/ClientValidatorImpl.java:177: warning - Tag @link: reference not found: org.richfaces.component.UIRichMessages > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/iteration/AbstractDataScroller.java:136: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/model/DataVisitor.java:40: warning - Tag @link: can't find walk(FacesContext, DataVisitor, Range) in org.richfaces.model.ExtendedDataModel > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/core/AjaxOutput.java:37: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/core/AjaxOutput.java:51: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/core/UIActionParameter.java:185: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/ajax/AjaxOutputPanelRenderer.java:101: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/AjaxRendererUtils.java:449: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/CoreRendererUtils.java:113: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/CoreRendererUtils.java:94: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:414: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:432: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:481: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:566: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:732: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:660: warning - Tag @link: reference not found: encodeId > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:566: warning - @return tag cannot be used in method with void return type. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:660: warning - Tag @link: reference not found: encodeId > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/request/MultipartRequestParser.java:119: warning - @param argument "uploadId" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/validator/GraphValidator.java:18: warning - Tag @link: reference not found: Validator > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/Skin.java:246: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/Skin.java:256: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/Skin.java:265: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/AbstractSkinFactory.java:119: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/SkinFactory.java:50: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/SkinFactory.java:58: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/SkinFactory.java:66: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/SkinFactory.java:73: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/skin/AbstractSkinFactory.java:106: warning - @param argument "defaultProperties" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:143: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:152: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:161: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:170: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:179: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:188: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/ByteBuffer.java:101: warning - @param argument "c" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:149: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:158: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:167: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:176: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:185: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:194: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:53: warning - @param argument "bytes" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/CharBuffer.java:107: warning - @param argument "c" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:66: warning - Tag @see: missing '#': "java.io.InputStream.read()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:66: warning - Tag @see: can't find java.io.InputStream.read() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:92: warning - Tag @see: missing '#': "java.io.InputStream.read(byte b[])" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:92: warning - Tag @see: can't find java.io.InputStream.read(byte b[]) in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:133: warning - Tag @see: missing '#': "java.io.InputStream.read(byte b[], int off, int len)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:133: warning - Tag @see: can't find java.io.InputStream.read(byte b[], int off, int len) in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:175: warning - Tag @see: missing '#': "java.io.InputStream.available()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:175: warning - Tag @see: can't find java.io.InputStream.available() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:194: warning - Tag @see: missing '#': "java.io.InputStream.mark()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:194: warning - Tag @see: can't find java.io.InputStream.mark() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:211: warning - Tag @see: missing '#': "java.io.InputStream.reset()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:211: warning - Tag @see: can't find java.io.InputStream.reset() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:231: warning - Tag @see: missing '#': "java.io.InputStream.skip()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferInputStream.java:231: warning - Tag @see: can't find java.io.InputStream.skip() in org.richfaces.io.FastBufferInputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:76: warning - Tag @see: missing '#': "java.io.OutputStream.write(int c)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:76: warning - Tag @see: can't find java.io.OutputStream.write(int c) in org.richfaces.io.FastBufferOutputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:84: warning - Tag @see: missing '#': "java.io.OutputStream.write(byte b[])" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:84: warning - Tag @see: can't find java.io.OutputStream.write(byte b[]) in org.richfaces.io.FastBufferOutputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:98: warning - Tag @see: missing '#': "java.io.OutputStream.write(byte[] b, int off, int len)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:98: warning - Tag @see: can't find java.io.OutputStream.write(byte[] b, int off, int len) in org.richfaces.io.FastBufferOutputStream > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:116: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:125: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:195: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferOutputStream.java:221: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:70: warning - Tag @see: missing '#': "java.io.Reader.read()" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:70: warning - Tag @see: can't find java.io.Reader.read() in org.richfaces.io.FastBufferReader > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:95: warning - Tag @see: missing '#': "java.io.Reader.read(char[] cbuf, int off, int len)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:95: warning - Tag @see: can't find java.io.Reader.read(char[] cbuf, int off, int len) in org.richfaces.io.FastBufferReader > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:138: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferReader.java:160: warning - @param argument "out" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:77: warning - Tag @see: missing '#': "java.io.Writer.write(int c)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:77: warning - Tag @see: can't find java.io.Writer.write(int c) in org.richfaces.io.FastBufferWriter > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:85: warning - Tag @see: missing '#': "java.io.Writer.write(char cbuf[])" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:85: warning - Tag @see: can't find java.io.Writer.write(char cbuf[]) in org.richfaces.io.FastBufferWriter > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:97: warning - Tag @see: missing '#': "java.io.Writer.write(char cbuf[], int off, int len)" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:97: warning - Tag @see: can't find java.io.Writer.write(char cbuf[], int off, int len) in org.richfaces.io.FastBufferWriter > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:117: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:126: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:202: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:228: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:144: warning - @param argument "out" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/io/FastBufferWriter.java:177: warning - @param argument "out" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:43: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:101: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:153: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:205: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/Logger.java:258: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/LogFactory.java:47: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/log/LogFactory.java:59: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see: reference not found: decode > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:230: warning - Tag @see cannot be used in inline documentation. It can only be used in the following types of documentation: overview, package, class/interface, constructor, field, method. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/model/DataComponentState.java:36: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/MediaOutputResource.java:102: warning - @param argument "uiMediaOutput" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/ResourceFactoryImpl.java:241: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/ResourceFactoryImpl.java:241: warning - Tag @link: can't find isResourceExists(String) in org.richfaces.resource.ResourceFactoryImpl > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/ResourceParameter.java:54: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/resource/ResourceParameter.java:47: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/util/core/ServicesUtils.java:57: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/util/core/ServicesUtils.java:115: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/util/core/ServicesUtils.java:147: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/util/core/resource/URLToStreamHelper.java:76: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:47: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:57: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:68: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:79: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELResolverWrapper.java:90: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELContextWrapper.java:60: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELContextWrapper.java:68: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ELContextWrapper.java:77: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ValueDescriptor.java:22: warning - @param argument "propertyType" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/ValueDescriptor.java:22: warning - @param argument "readOnly" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/el/util/ELUtils.java:50: warning - @param argument "context" is not a parameter name. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/application/CacheProvider.java:53: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/application/CoreConfiguration.java:51: warning - Tag @link: reference not found: org.richfaces.Skin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/application/ServiceLoader.java:69: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/application/ServiceLoader.java:116: warning - @return tag has no arguments. > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:241: warning - Tag @link: reference not found: encodeBegin > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/renderkit/RendererBase.java:263: warning - Tag @link: reference not found: encodeEnd > [INFO] [WARNING] javadoc: warning - Multiple sources of package comments found for package "org.ajax4jsf.renderkit" > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/validator/GraphValidator.java:18: warning - Tag @link: reference not found: Validator > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/input/AbstractFileUpload.java:209: warning - Tag @link: reference not found: org.richfaces.FileUploadEvent > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > /main/java/org/richfaces/validator/GraphValidator.java:18: warning - Tag @link: reference not found: Validator > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/input/AbstractFileUpload.java:209: warning - Tag @link: reference not found: org.richfaces.FileUploadEvent > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/util/renderkit/RendererUtils.java:660: warning - Tag @link: reference not found: encodeId > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/behavior/ClientValidatorImpl.java:177: warning - Tag @link: reference not found: org.richfaces.component.UIRichMessages > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/FormFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#FORM > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/menu/MenuItemRendererBase.java:83: warning - Tag @link: reference not found: https://issues.jboss.org/browse/RF-10695 > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/validator/GraphValidator.java:18: warning - Tag @link: reference not found: Validator > [INFO] [WARNING] /richfaces5/target/checkout/framework/src/main/java/org/richfaces/ui/misc/focus/ViewFocusRenderStrategy.java:11: warning - Tag @link: reference not found: AbstractFocus.Mode#VIEW > {code} -- 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 From issues at jboss.org Wed Feb 26 05:51:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:51:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12339) CDK: generate methods from interfaces In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12339: ---------------------------- Assignee: (was: Luk?? Fry?) > CDK: generate methods from interfaces > ------------------------------------- > > Key: RF-12339 > URL: https://issues.jboss.org/browse/RF-12339 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: cdk > Environment: Any > Reporter: Paul Dijou > Fix For: 5-Tracking > > > Just like interfaces with @Attribute annotation on getters will generate new attributes for JSF components, it would be good to also have it for method so we can easily add util methods (like "boolean hasFacet(String facetName)") to our generated components or renderers. > For a first draft on how to do that, see : https://gist.github.com/2967186 -- 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 From issues at jboss.org Wed Feb 26 05:51:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:51:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12463) Fix tests failing in maven build In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12463?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-12463. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Out of Date This is no longer an issue. > Fix tests failing in maven build > -------------------------------- > > Key: RF-12463 > URL: https://issues.jboss.org/browse/RF-12463 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: build/distribution > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > The test suite passes in IDE (Eclipse), > but it is not stable in Maven build: > {code} > Failed tests: testDefaults(org.richfaces.component.RegionTest): expected: but was: > testExecuteRegion(org.richfaces.component.RegionTest): expected: but was: > testAjaxClick(org.richfaces.renderkit.html.DropDownMenuRendererTest): expected:<[action]> but was:<[none]> > testAjaxClick(org.richfaces.renderkit.html.MenuItemRendererTest): expected:<[action]> but was:<[none]> > testEditWithControls(org.richfaces.renderkit.InplaceInputRendererTest): expected: but was: > Tests run: 645, Failures: 5, Errors: 0, Skipped: 19 > {code} -- 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 From issues at jboss.org Wed Feb 26 05:53:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:53:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12178) Resource plugin: duplicate css atribute get twice the 1st one In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12178?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12178: ---------------------------- Assignee: (was: Luk?? Fry?) > Resource plugin: duplicate css atribute get twice the 1st one > ------------------------------------------------------------- > > Key: RF-12178 > URL: https://issues.jboss.org/browse/RF-12178 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: resource handling > Affects Versions: 4.2.0.Final > Reporter: Nicolas Daniels > Fix For: 5-Tracking > > > An parsed ecss containing: > background:"-moz-linear-gradient(center top, #CCCCCC, #CCCCCC 2%, #8E8E8E)" repeat scroll 0 0 transparent; > background:"-webkit-gradient(linear, left top, left bottom, from(#CCCCCC), to(#8E8E8E))"; > is resulting to: > background: "-moz-linear-gradient(center top, #CCCCCC, #CCCCCC 2%, #8E8E8E)" repeat scroll 0 0 transparent; > background: "-moz-linear-gradient(center top, #CCCCCC, #CCCCCC 2%, #8E8E8E)" repeat scroll 0 0 transparent; > The 1st background attribute is written twice while the webkit-gradient disapeared. I know I could use richfaces gradient but I want to be able to get css from anywhere and have the advantages of Richfaces resources optimization. > I tried with false or true with same result. -- 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 From issues at jboss.org Wed Feb 26 05:53:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:53:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12324) CDK: can't resolve description from component interfaces from compiled JAR In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12324?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948250#comment-12948250 ] Luk?? Fry? commented on RF-12324: --------------------------------- This is no longer an issue with RichFaces 5, since we have just one framework JAR artifact. > CDK: can't resolve description from component interfaces from compiled JAR > -------------------------------------------------------------------------- > > Key: RF-12324 > URL: https://issues.jboss.org/browse/RF-12324 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: cdk > Affects Versions: 4.2.0.Final > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5-Tracking > > > In RF-12261, we have discussed necessity to duplicate information about description, to be able to retrieve description from shared attribute interfaces (like {{CoreProps}} in {{richfaces-ui-commons-ui}} package). > Once solution could be adding one additional build step, which would use the comment on the interface and copy it to the @Description annotation inside @JsfComponent annotation - this would allow to retrieve description from compiled packages. > See the linked RF-12261 and [IRC log for more details|http://transcripts.jboss.org/channel/irc.freenode.org/%23richfaces/2012/%23richfaces.2012-06-13.log.html] -- 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 From issues at jboss.org Wed Feb 26 05:53:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:53:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12324) CDK: can't resolve description from component interfaces from compiled JAR In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-12324. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Won't Fix > CDK: can't resolve description from component interfaces from compiled JAR > -------------------------------------------------------------------------- > > Key: RF-12324 > URL: https://issues.jboss.org/browse/RF-12324 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: cdk > Affects Versions: 4.2.0.Final > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > In RF-12261, we have discussed necessity to duplicate information about description, to be able to retrieve description from shared attribute interfaces (like {{CoreProps}} in {{richfaces-ui-commons-ui}} package). > Once solution could be adding one additional build step, which would use the comment on the interface and copy it to the @Description annotation inside @JsfComponent annotation - this would allow to retrieve description from compiled packages. > See the linked RF-12261 and [IRC log for more details|http://transcripts.jboss.org/channel/irc.freenode.org/%23richfaces/2012/%23richfaces.2012-06-13.log.html] -- 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 From issues at jboss.org Wed Feb 26 05:55:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:55:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12308) CDK: format the generated sources according to JBoss community formatter In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12308?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? reassigned RF-12308: ------------------------------- Assignee: (was: Luk?? Fry?) > CDK: format the generated sources according to JBoss community formatter > ------------------------------------------------------------------------ > > Key: RF-12308 > URL: https://issues.jboss.org/browse/RF-12308 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: cdk > Affects Versions: 4.2.0.Final > Reporter: Luk?? Fry? > Fix For: 5-Tracking > > > Right now, sources generated by CDK are quite unreadable, since they do not follow any formatting rules. > The formatting of the sources could be configurable, but by default JBoss community formatter should be followed. -- 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 From issues at jboss.org Wed Feb 26 05:55:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:55:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12259) CDK: full support for iterative/dynamic components In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12259?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12259: ---------------------------- Assignee: Brian Leathem (was: Luk?? Fry?) > CDK: full support for iterative/dynamic components > -------------------------------------------------- > > Key: RF-12259 > URL: https://issues.jboss.org/browse/RF-12259 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: cdk > Affects Versions: 4.2.0.Final > Reporter: Luk?? Fry? > Assignee: Brian Leathem > Fix For: 5-Tracking > > > There are two kinds of iteration components: > * iterative out of the box > ** tables > ** trees > * iteration over children > ** tabs > ** panel menus > ** etc. > Both approaches should be supported by CDK -- 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 From issues at jboss.org Wed Feb 26 05:55:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:55:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12259) CDK: full support for iterative/dynamic components In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12259?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948254#comment-12948254 ] Luk?? Fry? commented on RF-12259: --------------------------------- I believe we have discussed reviewing this possibility post-5.0. > CDK: full support for iterative/dynamic components > -------------------------------------------------- > > Key: RF-12259 > URL: https://issues.jboss.org/browse/RF-12259 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: cdk > Affects Versions: 4.2.0.Final > Reporter: Luk?? Fry? > Assignee: Brian Leathem > Fix For: 5-Tracking > > > There are two kinds of iteration components: > * iterative out of the box > ** tables > ** trees > * iteration over children > ** tabs > ** panel menus > ** etc. > Both approaches should be supported by CDK -- 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 From issues at jboss.org Wed Feb 26 05:55:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:55:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-10989) Reimplement AbstractPanel.getActiveItem() more defensively In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-10989?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-10989. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Won't Fix > Reimplement AbstractPanel.getActiveItem() more defensively > ---------------------------------------------------------- > > Key: RF-10989 > URL: https://issues.jboss.org/browse/RF-10989 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-panels-layout-themes, optimization > Affects Versions: 4.0.0.Final > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > Based on the discussions in RF-10951, it will be good to implement AbstractPanel.getActiveItem(), because it will fail each time you remove the active tab. -- 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 From issues at jboss.org Wed Feb 26 05:57:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:57:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11871) Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first click In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11871?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11871: ---------------------------- Assignee: (was: Luk?? Fry?) > Mobile Showcase and a4j:poll demo: stop button doesn't respond on the first click > --------------------------------------------------------------------------------- > > Key: RF-11871 > URL: https://issues.jboss.org/browse/RF-11871 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: mobile, showcase > Affects Versions: 4.2.0.CR1, 4.2.3.CR1 > Environment: richfaces-showcase-4.1.1-20120106.230242-18 / richfaces-showcase-4.2.0-20120123.231757-13 > JBoss AS 7.0.2.Final / 7.1.0.Beta1 > Firefox 8.0 / Google Chrome 16.0.912.63 / Android 2.2 / iPhone 4.2.1 > Reporter: Jan Papousek > Fix For: 5-Tracking > > Attachments: richfaces-showcase-4.2.0-20120123.231757-13-jbas7.war > > -- 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 From issues at jboss.org Wed Feb 26 05:57:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:57:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11983) Showcase: can't connect to JMS on AS7.1 since it is secured In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11983?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11983. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Won't Fix Showcase in 4.3 built for JBAS 7.1 no longer exposes JMS demo. We are going to drop JMS support in Showcase 5.0. > Showcase: can't connect to JMS on AS7.1 since it is secured > ----------------------------------------------------------- > > Key: RF-11983 > URL: https://issues.jboss.org/browse/RF-11983 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-push/poll > Affects Versions: 4.2.3.CR1 > Environment: JBoos AS 7.0.2.Final (in default configuration) / JBoss AS 7.1.0.Final and Firefox 8.0 > Reporter: Jan Papousek > Assignee: Luk?? Fry? > > {code:title=JBoss AS 7.1.0.Final} > 13:13:03,702 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/showcase].[Faces Servlet]] (http--127.0.0.1-8080-1) Servlet.service() for servlet Faces Servlet threw exception: com.google.common.collect.ComputationException: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdapter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTopic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsContext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.createSubscriptions(SessionImpl.java:182) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.SessionImpl.subscribe(SessionImpl.java:177) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.PushResource.encode(PushResource.java:88) [richfaces-components-ui-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.UserResourceWrapperImpl.encode(UserResourceWrapperImpl.java:188) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.resource.ResourceHandlerImpl.handleResourceRequest(ResourceHandlerImpl.java:222) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:591) [jboss-jsf-api_2.1_spec-2.0.0.Final.jar:2.0.0.Final] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62) [weld-core-1.1.5.AS71.Final.jar:2012-02-10 15:31] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.10.Final.jar:] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmCloserValve.java:50) [jboss-as-jpa-7.1.0.Final.jar:7.1.0.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:154) [jboss-as-web-7.1.0.Final.jar:7.1.0.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:155) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.10.Final.jar:] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:368) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.10.Final.jar:] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:671) [jbossweb-7.0.10.Final.jar:] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:930) [jbossweb-7.0.10.Final.jar:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueReference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment.compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment.getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(ComputingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdapter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 25 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNamingStore.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1.6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopicContext.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopicContext.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > ... 31 more > 13:13:04,263 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (MessageProducerThread) javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory: com.google.common.collect.ComputationException: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdapter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTopic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsContext.java:48) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.java:69) [richfaces-core-api-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(TopicsContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRunnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [rt.jar:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueReference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment.compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment.getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(ComputingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdapter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNamingStore.java:97) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:177) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:113) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [rt.jar:1.6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopicContext.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopicContext.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:4.2.0.Final] > ... 12 more > {code} > {code:title=JBoss AS 7.0.2.Final using default configuration} > 13:16:26,372 WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycle] (http--0%3A0%3A0%3A0%3A0%3A0%3A0%3A0-8080-5) #{pushBean.sendMessage}: com.google.common.collect.ComputationException: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory: javax.faces.FacesException: #{pushBean.sendMessage}: com.google.common.collect.ComputationException: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.UICommand.broadcast(UICommand.java:315) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:794) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1259) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:81) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at org.richfaces.demo.arrangeablemodel.PersistenceLifecycle.execute(PersistenceLifecycle.java:58) [classes:] > at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:329) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:67) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:280) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:248) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:139) [jboss-as-web-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.web.NamingValve.invoke(NamingValve.java:57) [jboss-as-web-7.0.2.Final.jar:7.0.2.Final] > at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmCloserValve.java:49) [jboss-as-jpa-7.0.2.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:154) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:362) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:877) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:667) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:952) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.el.EvaluationException: com.google.common.collect.ComputationException: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > ... 26 more > Caused by: com.google.common.collect.ComputationException: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdapter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTopic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsContext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.java:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext$Proxy$_$$_WeldClientProxy.publish(TopicsContext$Proxy$_$$_WeldClientProxy.java) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.cdi.push.PushCDIExtension$PushObserverMethod.notify(PushCDIExtension.java:144) [richfaces-core-impl-4.2.0.Final.jar:] > at org.jboss.weld.manager.BeanManagerImpl.notifyObservers(BeanManagerImpl.java:635) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.manager.BeanManagerImpl.fireEvent(BeanManagerImpl.java:628) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.event.EventImpl.fire(EventImpl.java:75) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.richfaces.demo.push.PushBean.sendMessage(PushBean.java:65) [classes:] > at org.richfaces.demo.push.PushBean$Proxy$_$$_WeldClientProxy.sendMessage(PushBean$Proxy$_$$_WeldClientProxy.java) [classes:] > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) [:1.6.0_22] > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) [:1.6.0_22] > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) [:1.6.0_22] > at java.lang.reflect.Method.invoke(Method.java:597) [:1.6.0_22] > at org.apache.el.parser.AstValue.invoke(AstValue.java:196) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:276) [jbossweb-7.0.1.Final.jar:7.0.2.Final] > at org.jboss.weld.util.el.ForwardingMethodExpression.invoke(ForwardingMethodExpression.java:43) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at org.jboss.weld.el.WeldMethodExpression.invoke(WeldMethodExpression.java:56) [weld-core-1.1.2.Final.jar:2011-07-26 15:02] > at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105) [jsf-impl-2.1.3-b02-jbossorg-2.jar:2.1.3-SNAPSHOT] > at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88) [jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar:2.0.0.Beta1] > ... 27 more > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueReference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment.compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment.getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(ComputingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdapter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 47 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNamingStore.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopicContext.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopicContext.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 53 more > 13:16:28,949 SEVERE [org.richfaces.demo.push.MessageProducerRunnable] (MessageProducerThread) javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory: com.google.common.collect.ComputationException: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdapter.get(ComputingConcurrentHashMap.java:397) [guava-10.0.1.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl.createTopic(JMSTopicsContextImpl.java:281) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.getOrCreateTopic(TopicsContext.java:48) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.application.push.TopicsContext.publish(TopicsContext.java:69) [richfaces-core-api-4.2.0.Final.jar:] > at org.richfaces.demo.push.TopicsContextMessageProducer.sendMessage(TopicsContextMessageProducer.java:46) [classes:] > at org.richfaces.demo.push.MessageProducerRunnable.run(MessageProducerRunnable.java:57) [classes:] > at java.lang.Thread.run(Thread.java:662) [:1.6.0_22] > Caused by: javax.faces.FacesException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:207) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:195) [richfaces-core-impl-4.2.0.Final.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingValueReference.compute(ComputingConcurrentHashMap.java:355) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment.compute(ComputingConcurrentHashMap.java:184) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingSegment.getOrCompute(ComputingConcurrentHashMap.java:153) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap.getOrCompute(ComputingConcurrentHashMap.java:69) [guava-10.0.1.jar:] > at com.google.common.collect.ComputingConcurrentHashMap$ComputingMapAdapter.get(ComputingConcurrentHashMap.java:393) [guava-10.0.1.jar:] > ... 6 more > Caused by: javax.naming.NameNotFoundException: ConnectionFactory -- service jboss.naming.context.java.ConnectionFactory > at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNamingStore.java:87) > at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:173) > at org.jboss.as.naming.InitialContext.lookup(InitialContext.java:47) > at javax.naming.InitialContext.lookup(InitialContext.java:396) [:1.6.0_22] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopicContext.createConnection(JMSTopicsContextImpl.java:98) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$JMSTopicContext.start(JMSTopicsContextImpl.java:123) [richfaces-core-impl-4.2.0.Final.jar:] > at org.richfaces.application.push.impl.jms.JMSTopicsContextImpl$1.apply(JMSTopicsContextImpl.java:199) [richfaces-core-impl-4.2.0.Final.jar:] > ... 12 more > {code} > ---- > - Showcase on Openshift Express is working (yeah, there is a really big delay, but it's working). > - Sample in Metamer is also working. > - When the JBoss AS 7.0.2.Final is running with "--server-config standalone-preview.xml", the CDI push demo works correctly. -- 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 From issues at jboss.org Wed Feb 26 05:59:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:59:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11686) Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11686: ---------------------------- Fix Version/s: 5.0.0.Alpha4 (was: 5-Tracking) > Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work > --------------------------------------------------------------------------- > > Key: RF-11686 > URL: https://issues.jboss.org/browse/RF-11686 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.1.0.CR1 > Environment: RichFaces 4.1.0.20111111-CR1 > Metamer 4.1.0.20111111-CR1 r.22924 > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 8.0 @ Linux i686 > Reporter: J?n Jamrich > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > In Metamer demo for editor are buttons for editor's API testing. > All functions on editor seems ok, except functions for editor's readonly status access (isReadonly and setReadonly). > I'm getting following error in browser log when click on this button: > RichFaces.$("form:editor").isReadonly is not a function > [Break On This Error] if(typeof OpenAjax!=="undefined"&&type...){f.render=b}jsf.ajax.request(c,d,f)}; -- 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 From issues at jboss.org Wed Feb 26 05:59:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:59:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11686) Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948258#comment-12948258 ] Luk?? Fry? commented on RF-11686: --------------------------------- QE: could you please check whether this is still and issue with refactored Editor? > Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work > --------------------------------------------------------------------------- > > Key: RF-11686 > URL: https://issues.jboss.org/browse/RF-11686 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.1.0.CR1 > Environment: RichFaces 4.1.0.20111111-CR1 > Metamer 4.1.0.20111111-CR1 r.22924 > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 8.0 @ Linux i686 > Reporter: J?n Jamrich > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > In Metamer demo for editor are buttons for editor's API testing. > All functions on editor seems ok, except functions for editor's readonly status access (isReadonly and setReadonly). > I'm getting following error in browser log when click on this button: > RichFaces.$("form:editor").isReadonly is not a function > [Break On This Error] if(typeof OpenAjax!=="undefined"&&type...){f.render=b}jsf.ajax.request(c,d,f)}; -- 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 From issues at jboss.org Wed Feb 26 05:59:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:59:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11686) Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11686: ---------------------------- Assignee: Pavol Pitonak (was: Luk?? Fry?) > Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work > --------------------------------------------------------------------------- > > Key: RF-11686 > URL: https://issues.jboss.org/browse/RF-11686 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.1.0.CR1 > Environment: RichFaces 4.1.0.20111111-CR1 > Metamer 4.1.0.20111111-CR1 r.22924 > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 8.0 @ Linux i686 > Reporter: J?n Jamrich > Assignee: Pavol Pitonak > Fix For: 5.0.0.Alpha4 > > > In Metamer demo for editor are buttons for editor's API testing. > All functions on editor seems ok, except functions for editor's readonly status access (isReadonly and setReadonly). > I'm getting following error in browser log when click on this button: > RichFaces.$("form:editor").isReadonly is not a function > [Break On This Error] if(typeof OpenAjax!=="undefined"&&type...){f.render=b}jsf.ajax.request(c,d,f)}; -- 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 From issues at jboss.org Wed Feb 26 05:59:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 05:59:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11686) Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11686: ---------------------------- Labels: needs-qe (was: ) > Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work > --------------------------------------------------------------------------- > > Key: RF-11686 > URL: https://issues.jboss.org/browse/RF-11686 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.1.0.CR1 > Environment: RichFaces 4.1.0.20111111-CR1 > Metamer 4.1.0.20111111-CR1 r.22924 > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 8.0 @ Linux i686 > Reporter: J?n Jamrich > Assignee: Pavol Pitonak > Labels: needs-qe > Fix For: 5.0.0.Alpha4 > > > In Metamer demo for editor are buttons for editor's API testing. > All functions on editor seems ok, except functions for editor's readonly status access (isReadonly and setReadonly). > I'm getting following error in browser log when click on this button: > RichFaces.$("form:editor").isReadonly is not a function > [Break On This Error] if(typeof OpenAjax!=="undefined"&&type...){f.render=b}jsf.ajax.request(c,d,f)}; -- 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 From issues at jboss.org Wed Feb 26 07:29:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:29:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11708) Allow to use onbeforesubmit to cancel request from all components In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11708?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11708: ---------------------------- Assignee: (was: Luk?? Fry?) > Allow to use onbeforesubmit to cancel request from all components > ----------------------------------------------------------------- > > Key: RF-11708 > URL: https://issues.jboss.org/browse/RF-11708 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: core > Affects Versions: 4.1.0.CR1 > Reporter: Luk?? Fry? > Fix For: 5-Future > > > {{onbeforesubmit}} is attribute which is documented as follows: > {quote} > The onbeforesubmit event attribute invokes the event listener before the Ajax request is sent. The request is canceled if the event listener defined for the onsubmit event returns false. > {quote} > However there is only one behavior (from all components/behaviors) which has this attribute: {{a4j:ajax}}. > All ajax components should have this attribute. > Additionally {{a4j:queue}} and {{a4j:attachQueue}} should have it too to refuse requests on global/regional level. -- 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 From issues at jboss.org Wed Feb 26 07:31:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:31:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11793) Fix unstable test OsCacheTest.testExpiration In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11793?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11793. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Cannot Reproduce Bug I haven't seen this issue for a long time. > Fix unstable test OsCacheTest.testExpiration > -------------------------------------------- > > Key: RF-11793 > URL: https://issues.jboss.org/browse/RF-11793 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: tests - unit > Affects Versions: 4.1.0.CR2 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > Core test: org.richfaces.cache.OsCacheTest.testExpiration > {code} > expected: but was: > Stacktrace > junit.framework.AssertionFailedError: expected: but was: > at junit.framework.Assert.fail(Assert.java:47) > at junit.framework.Assert.failNotEquals(Assert.java:277) > at junit.framework.Assert.assertEquals(Assert.java:64) > at junit.framework.Assert.assertEquals(Assert.java:71) > at org.richfaces.cache.BaseCacheTest.testExpiration(BaseCacheTest.java:102) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at junit.framework.TestCase.runTest(TestCase.java:168) > at junit.framework.TestCase.runBare(TestCase.java:134) > at junit.framework.TestResult$1.protect(TestResult.java:110) > at junit.framework.TestResult.runProtected(TestResult.java:128) > at junit.framework.TestResult.run(TestResult.java:113) > at junit.framework.TestCase.run(TestCase.java:124) > at junit.framework.TestSuite.runTest(TestSuite.java:232) > at junit.framework.TestSuite.run(TestSuite.java:227) > at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83) > at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:59) > at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:115) > at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:102) > at org.apache.maven.surefire.Surefire.run(Surefire.java:180) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:350) > at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:1021) > {code} -- 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 From issues at jboss.org Wed Feb 26 07:31:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:31:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11797) Add shortcut for calling jQuery functions on components In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11797?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948304#comment-12948304 ] Luk?? Fry? edited comment on RF-11797 at 2/26/14 7:31 AM: ---------------------------------------------------------- One can use #{rich:jQuery('id')}: http://docs.jboss.org/richfaces/latest_5_X/vdldoc/r/jQuery.fn.html was (Author: lfryc): One can use #{rich:jQuery('id')}. > Add shortcut for calling jQuery functions on components > ------------------------------------------------------- > > Key: RF-11797 > URL: https://issues.jboss.org/browse/RF-11797 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component > Affects Versions: 4.1.0.CR2 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > Currently it's necessary to write > {code} > jQuery('#{rich:element('componentId')}).callSomething(...) > {code} > It would be great to provide shortcut: > {code} > #{rich:jquery('componentId')}.callSomething(...) > {code} > or provide JS function: > {code} > RichFaces.$('clientId') > {code} > to delegate to {{jQuery('clientId')}} -- 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 From issues at jboss.org Wed Feb 26 07:31:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:31:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11797) Add shortcut for calling jQuery functions on components In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11797?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11797. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Out of Date One can use #{rich:jQuery('id')}. > Add shortcut for calling jQuery functions on components > ------------------------------------------------------- > > Key: RF-11797 > URL: https://issues.jboss.org/browse/RF-11797 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: component > Affects Versions: 4.1.0.CR2 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > Currently it's necessary to write > {code} > jQuery('#{rich:element('componentId')}).callSomething(...) > {code} > It would be great to provide shortcut: > {code} > #{rich:jquery('componentId')}.callSomething(...) > {code} > or provide JS function: > {code} > RichFaces.$('clientId') > {code} > to delegate to {{jQuery('clientId')}} -- 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 From issues at jboss.org Wed Feb 26 07:33:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:33:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11608) Add Arquillian test to archetype-simpleapp In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11608?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11608: ---------------------------- Assignee: Pavol Pitonak (was: Luk?? Fry?) > Add Arquillian test to archetype-simpleapp > ------------------------------------------ > > Key: RF-11608 > URL: https://issues.jboss.org/browse/RF-11608 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: archetype > Affects Versions: 4.1.0.Milestone4 > Reporter: Marek Novotny > Assignee: Pavol Pitonak > Fix For: 5-Future > > > Currently two options here: > * Arquillian and JSFUnit (not stable currently, but preferable) > * Arquillian Drone extension (using HtmlUnitDriver) -- 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 From issues at jboss.org Wed Feb 26 07:33:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:33:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11470) Unit-tests for resource-loading strategies In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11470?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11470. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Out of Date https://github.com/richfaces/richfaces/tree/master/framework/src/test/java/org/richfaces/resource/mapping > Unit-tests for resource-loading strategies > ------------------------------------------ > > Key: RF-11470 > URL: https://issues.jboss.org/browse/RF-11470 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: tests - unit > Affects Versions: 4.1.0.Milestone3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > Framework parts introduced in RF-10927 needs to be covered by unit-tests properly, there were no space to do that in 4.1.0.M3. -- 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 From issues at jboss.org Wed Feb 26 07:35:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:35:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11488) Mobile Showcase and Android: tabs in rich:togglePanel In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11488?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11488: ---------------------------- Assignee: (was: Luk?? Fry?) > Mobile Showcase and Android: tabs in rich:togglePanel > ----------------------------------------------------- > > Key: RF-11488 > URL: https://issues.jboss.org/browse/RF-11488 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: mobile, showcase > Affects Versions: 4.1.0.Milestone3, 4.1.0.Milestone4 > Reporter: Jan Papousek > Fix For: 5-Tracking > > Attachments: android-rich_togglePanel.png, firefox-rich_togglePanel.png > > > The tabs on page http://10.0.2.2:8080/showcase/#togglePanel:simple looks very differently using Android and Firefox. -- 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 From issues at jboss.org Wed Feb 26 07:35:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:35:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11378) Consider skinning issues for rich:editor founded at RFPL-1633 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11378?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948308#comment-12948308 ] Luk?? Fry? commented on RF-11378: --------------------------------- This is no longer issue with RichFaces 5.0 editor that doesn't offer traditional skins from RichFaces 4.x. > Consider skinning issues for rich:editor founded at RFPL-1633 > ------------------------------------------------------------- > > Key: RF-11378 > URL: https://issues.jboss.org/browse/RF-11378 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: skinning > Affects Versions: 4.1.0.Milestone2 > Environment: rich:editor in Metamer > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > Fix For: 5-Tracking > > > Please consider skinning issues for rich:editor founded at RFPL-1633. -- 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 From issues at jboss.org Wed Feb 26 07:35:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:35:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11378) Consider skinning issues for rich:editor founded at RFPL-1633 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11378. ----------------------------- Resolution: Out of Date > Consider skinning issues for rich:editor founded at RFPL-1633 > ------------------------------------------------------------- > > Key: RF-11378 > URL: https://issues.jboss.org/browse/RF-11378 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: skinning > Affects Versions: 4.1.0.Milestone2 > Environment: rich:editor in Metamer > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > Fix For: 5-Tracking > > > Please consider skinning issues for rich:editor founded at RFPL-1633. -- 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 From issues at jboss.org Wed Feb 26 07:37:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:37:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11378) Consider skinning issues for rich:editor founded at RFPL-1633 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11378: ---------------------------- Fix Version/s: (was: 5-Tracking) > Consider skinning issues for rich:editor founded at RFPL-1633 > ------------------------------------------------------------- > > Key: RF-11378 > URL: https://issues.jboss.org/browse/RF-11378 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: skinning > Affects Versions: 4.1.0.Milestone2 > Environment: rich:editor in Metamer > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > > Please consider skinning issues for rich:editor founded at RFPL-1633. -- 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 From issues at jboss.org Wed Feb 26 07:37:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:37:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11378) Consider skinning issues for rich:editor founded at RFPL-1633 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? reopened RF-11378: ----------------------------- > Consider skinning issues for rich:editor founded at RFPL-1633 > ------------------------------------------------------------- > > Key: RF-11378 > URL: https://issues.jboss.org/browse/RF-11378 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: skinning > Affects Versions: 4.1.0.Milestone2 > Environment: rich:editor in Metamer > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > > Please consider skinning issues for rich:editor founded at RFPL-1633. -- 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 From issues at jboss.org Wed Feb 26 07:37:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:37:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11378) Consider skinning issues for rich:editor founded at RFPL-1633 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11378: ---------------------------- Component/s: (was: skinning) > Consider skinning issues for rich:editor founded at RFPL-1633 > ------------------------------------------------------------- > > Key: RF-11378 > URL: https://issues.jboss.org/browse/RF-11378 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Affects Versions: 4.1.0.Milestone2 > Environment: rich:editor in Metamer > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > > Please consider skinning issues for rich:editor founded at RFPL-1633. -- 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 From issues at jboss.org Wed Feb 26 07:37:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:37:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11378) Consider skinning issues for rich:editor founded at RFPL-1633 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11378?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11378. ----------------------------- Resolution: Rejected > Consider skinning issues for rich:editor founded at RFPL-1633 > ------------------------------------------------------------- > > Key: RF-11378 > URL: https://issues.jboss.org/browse/RF-11378 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Affects Versions: 4.1.0.Milestone2 > Environment: rich:editor in Metamer > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > > Please consider skinning issues for rich:editor founded at RFPL-1633. -- 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 From issues at jboss.org Wed Feb 26 07:37:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:37:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11190) Write server side unit tests for notify In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11190?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11190. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Out of Date > Write server side unit tests for notify > --------------------------------------- > > Key: RF-11190 > URL: https://issues.jboss.org/browse/RF-11190 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) > Components: tests - unit > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Original Estimate: 2 days > Remaining Estimate: 2 days > -- 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 From issues at jboss.org Wed Feb 26 07:37:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:37:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11189) qunit test development In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11189?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11189. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Won't Fix > qunit test development > ---------------------- > > Key: RF-11189 > URL: https://issues.jboss.org/browse/RF-11189 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) > Components: tests - unit > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Original Estimate: 2 days > Remaining Estimate: 2 days > -- 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 From issues at jboss.org Wed Feb 26 07:37:50 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:37:50 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11049) Write server side unit tests for Editor In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11049?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11049. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Won't Fix > Write server side unit tests for Editor > --------------------------------------- > > Key: RF-11049 > URL: https://issues.jboss.org/browse/RF-11049 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) > Components: component-input, tests - unit > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Original Estimate: 2 days > Remaining Estimate: 2 days > -- 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 From issues at jboss.org Wed Feb 26 07:39:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:39:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11048) Write QUnit tests for editor component In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11048?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11048. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Won't Fix Covered by tests in RichWidgets project. > Write QUnit tests for editor component > -------------------------------------- > > Key: RF-11048 > URL: https://issues.jboss.org/browse/RF-11048 > Project: RichFaces > Issue Type: Sub-task > Security Level: Public(Everyone can see) > Components: component-input, tests - unit > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Original Estimate: 4 days > Remaining Estimate: 4 days > -- 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 From issues at jboss.org Wed Feb 26 07:39:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:39:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-10697) Popup Panel - @keepVisualState isn't fully implemented In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-10697?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-10697: ---------------------------- Assignee: (was: Luk?? Fry?) > Popup Panel - @keepVisualState isn't fully implemented > ------------------------------------------------------ > > Key: RF-10697 > URL: https://issues.jboss.org/browse/RF-10697 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-panels-layout-themes > Affects Versions: 4.0.0.CR1 > Environment: RichFaces 4.0.0.20110227-CR1 r.21967 > Metamer 4.0.0.20110228-CR1 r.21993 > Apache MyFaces JSF-2.0 Core Impl 2.0.4 > JBoss AS 6.0.0.Final > OpenJDK Runtime Environment 1.6.0_20-b20 @Linux > Chrome 9.0.597.107 @ Linux x86_64 > Reporter: Luk?? Fry? > Fix For: 5-Tracking > > > Fix @keepVisualState attribute or remove it from taglib. -- 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 From issues at jboss.org Wed Feb 26 07:39:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:39:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12816) Push fundamental tests fails on TomEE and GlassFish In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12816?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12816: ---------------------------- Assignee: Pavol Pitonak (was: Luk?? Fry?) > Push fundamental tests fails on TomEE and GlassFish > --------------------------------------------------- > > Key: RF-12816 > URL: https://issues.jboss.org/browse/RF-12816 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-push/poll, tests - functional > Affects Versions: 4.3.1 > Reporter: Luk?? Fry? > Assignee: Pavol Pitonak > Fix For: 5-Tracking > > -- 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 From issues at jboss.org Wed Feb 26 07:39:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:39:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12783) Upgrade compiler plugin to >3.1 (once released) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12783: ---------------------------- Fix Version/s: (was: 5-Tracking) > Upgrade compiler plugin to >3.1 (once released) > ----------------------------------------------- > > Key: RF-12783 > URL: https://issues.jboss.org/browse/RF-12783 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: build/distribution > Affects Versions: 5.0.0.Alpha1 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > As tracked in JBBUILD-725, it was necessary to downgrade compiler plugin version from 3.0 to 2.3.2. > We need to upgrade to 3.1 (once released) or upgrade JBoss Parent (if upgrade will be available there). > Upstream issue: http://jira.codehaus.org/browse/MCOMPILER-187 -- 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 From issues at jboss.org Wed Feb 26 07:39:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:39:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12783) Upgrade compiler plugin to >3.1 (once released) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12783?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948313#comment-12948313 ] Luk?? Fry? commented on RF-12783: --------------------------------- We need to try whether this is still an issue with latest plugin version. > Upgrade compiler plugin to >3.1 (once released) > ----------------------------------------------- > > Key: RF-12783 > URL: https://issues.jboss.org/browse/RF-12783 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: build/distribution > Affects Versions: 5.0.0.Alpha1 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Original Estimate: 30 minutes > Remaining Estimate: 30 minutes > > As tracked in JBBUILD-725, it was necessary to downgrade compiler plugin version from 3.0 to 2.3.2. > We need to upgrade to 3.1 (once released) or upgrade JBoss Parent (if upgrade will be available there). > Upstream issue: http://jira.codehaus.org/browse/MCOMPILER-187 -- 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 From issues at jboss.org Wed Feb 26 07:41:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:41:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12744) Make the test suite log less verbose In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12744?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948314#comment-12948314 ] Luk?? Fry? commented on RF-12744: --------------------------------- https://github.com/richfaces/richfaces/tree/RF-12744-less-verbose-logging > Make the test suite log less verbose > ------------------------------------ > > Key: RF-12744 > URL: https://issues.jboss.org/browse/RF-12744 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: tests - functional , tests - unit > Affects Versions: 5.0.0.Alpha1 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Labels: rf5-build > Fix For: 5-Tracking > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > We could add logging.properties which will filter out unnecessary output (e.g. JSF container startup logging). > We should also remove any unnecessary System.out/logging from tests. -- 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 From issues at jboss.org Wed Feb 26 07:41:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:41:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12744) Make the test suite log less verbose In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12744?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12744: ---------------------------- Assignee: Pavol Pitonak (was: Luk?? Fry?) > Make the test suite log less verbose > ------------------------------------ > > Key: RF-12744 > URL: https://issues.jboss.org/browse/RF-12744 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: tests - functional , tests - unit > Affects Versions: 5.0.0.Alpha1 > Reporter: Luk?? Fry? > Assignee: Pavol Pitonak > Labels: rf5-build > Fix For: 5-Tracking > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > We could add logging.properties which will filter out unnecessary output (e.g. JSF container startup logging). > We should also remove any unnecessary System.out/logging from tests. -- 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 From issues at jboss.org Wed Feb 26 07:41:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:41:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13505) Refactor custom tree traversal logic in EPVCI in order to leverage VisitContextFactory (blocked by Mojarra issue) In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13505?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-13505: ---------------------------- Affects Version/s: 5.0.0.Alpha3 > Refactor custom tree traversal logic in EPVCI in order to leverage VisitContextFactory (blocked by Mojarra issue) > ----------------------------------------------------------------------------------------------------------------- > > Key: RF-13505 > URL: https://issues.jboss.org/browse/RF-13505 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > > Mojarra issue: https://java.net/jira/browse/JAVASERVERFACES-3151 > We will still need to use some: > * resolve values in runtime > * add IDs for execution of AjaxOutput's > * collect list of meta-components to render > * wrap PartialResponseWriter#endDocument() for RichFaces extensions and JavascriptService -- 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 From issues at jboss.org Wed Feb 26 07:53:48 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 26 Feb 2014 07:53:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11608) Add Arquillian test to archetype-simpleapp In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11608?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948323#comment-12948323 ] Pavol Pitonak commented on RF-11608: ------------------------------------ Is this still a valid request? > Add Arquillian test to archetype-simpleapp > ------------------------------------------ > > Key: RF-11608 > URL: https://issues.jboss.org/browse/RF-11608 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: archetype > Affects Versions: 4.1.0.Milestone4 > Reporter: Marek Novotny > Assignee: Pavol Pitonak > Fix For: 5-Future > > > Currently two options here: > * Arquillian and JSFUnit (not stable currently, but preferable) > * Arquillian Drone extension (using HtmlUnitDriver) -- 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 From issues at jboss.org Wed Feb 26 07:53:48 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 26 Feb 2014 07:53:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12816) Push framework tests fail on TomEE and GlassFish In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12816?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948324#comment-12948324 ] Pavol Pitonak commented on RF-12816: ------------------------------------ Lukas, do you know if all push test cases are affected or only those with JMS? > Push framework tests fail on TomEE and GlassFish > ------------------------------------------------ > > Key: RF-12816 > URL: https://issues.jboss.org/browse/RF-12816 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-push/poll, tests - functional > Affects Versions: 4.3.1 > Reporter: Luk?? Fry? > Assignee: Pavol Pitonak > Fix For: 5-Tracking > > -- 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 From issues at jboss.org Wed Feb 26 07:50:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:50:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11129) Improve richgit.sh to support git-flow In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11129?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-11129. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Out of Date No need for richgit.sh in RF5. > Improve richgit.sh to support git-flow > -------------------------------------- > > Key: RF-11129 > URL: https://issues.jboss.org/browse/RF-11129 > Project: RichFaces > Issue Type: Task > Security Level: Public(Everyone can see) > Components: build/distribution > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Priority: Optional > Original Estimate: 4 hours > Remaining Estimate: 4 hours > -- 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 From issues at jboss.org Wed Feb 26 07:53:48 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 26 Feb 2014 07:53:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12816) Push framework tests fail on TomEE and GlassFish In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12816?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak updated RF-12816: ------------------------------- Summary: Push framework tests fail on TomEE and GlassFish (was: Push fundamental tests fails on TomEE and GlassFish) > Push framework tests fail on TomEE and GlassFish > ------------------------------------------------ > > Key: RF-12816 > URL: https://issues.jboss.org/browse/RF-12816 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-push/poll, tests - functional > Affects Versions: 4.3.1 > Reporter: Luk?? Fry? > Assignee: Pavol Pitonak > Fix For: 5-Tracking > > -- 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 From issues at jboss.org Wed Feb 26 07:45:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:45:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12310) Write test for CDK's ForEachStatement In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12310?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-12310. ----------------------------- Fix Version/s: (was: 5-Tracking) Resolution: Won't Fix > Write test for CDK's ForEachStatement > ------------------------------------- > > Key: RF-12310 > URL: https://issues.jboss.org/browse/RF-12310 > Project: RichFaces > Issue Type: Enhancement > Security Level: Public(Everyone can see) > Components: cdk > Affects Versions: 4.2.0.Final > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Priority: Minor > > Lot of complexity was introduced in {{ForEachStatement}} in scope of RF-12232. > It would be good to cover all use cases for the statement's {{setItemsExpression}} in {{ForEachTest}}. -- 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 From issues at jboss.org Wed Feb 26 07:45:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:45:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12326) NPE if a cdk:fragment use another one before it has be defined In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12326?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12326: ---------------------------- Assignee: (was: Luk?? Fry?) > NPE if a cdk:fragment use another one before it has be defined > -------------------------------------------------------------- > > Key: RF-12326 > URL: https://issues.jboss.org/browse/RF-12326 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: cdk > Affects Versions: 4.2.2.Final > Environment: Any > Reporter: Paul Dijou > Priority: Minor > Labels: fragment > Fix For: 5-Tracking > > > If you write a cdk:fragment that try to render another one which is written later on the template, you get a NPE at org.richfaces.cdk.templatecompiler.statements.RenderFragmentStatement.getArguments(RenderFragmentStatement.java:70) > See https://gist.github.com/2931625 to reproduce the problem. -- 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 From issues at jboss.org Wed Feb 26 07:48:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:48:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12006) Some of resources like jquery.focus.js and ckeditor.js are not packaged In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-12006: ---------------------------- Assignee: (was: Luk?? Fry?) > Some of resources like jquery.focus.js and ckeditor.js are not packaged > ----------------------------------------------------------------------- > > Key: RF-12006 > URL: https://issues.jboss.org/browse/RF-12006 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: resource handling > Affects Versions: 4.2.0.Final > Reporter: Luk?? Fry? > Priority: Minor > Fix For: 5-Tracking > > > In build of {{dist/static-resources}}, some of components are not packaged: > * {{jquery.focus.js}} > * {{ckeditor.js}} > It it not convenient to package {{ckeditor.js}}, but this issue might affect more resources. > Further investigations required. -- 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 From issues at jboss.org Wed Feb 26 07:48:51 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:48:51 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11542) showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11542: ---------------------------- Assignee: Pavol Pitonak (was: Luk?? Fry?) > showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode > -------------------------------------------------------------------------------------------------------------- > > Key: RF-11542 > URL: https://issues.jboss.org/browse/RF-11542 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, showcase, third-party > Affects Versions: 4.1.0.Milestone3 > Environment: app: richfaces-showcase-4.1.0.20111011-M3 > container: JBoss AS 7.0.2.Final > browsers: all > Reporter: Juraj H?ska > Assignee: Pavol Pitonak > Priority: Minor > Labels: needs-qe > Fix For: 5-Future > > > WARN on the container console is generated when there is any interaction with editor when it is in source mode. > This is the warn: > {code} > 17:53:54,302 WARN [org.apache.tomcat.util.http.Parameters] (http--0.0.0.0-8080-5) Parameters: Invalid chunk ignored. > {code} > Although warn is generated, no function is visibly corrupted. -- 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 From issues at jboss.org Wed Feb 26 07:48:50 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 26 Feb 2014 07:48:50 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11686) Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11686: ---------------------------------- Assignee: Matej Novotny (was: Pavol Pitonak) > Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work > --------------------------------------------------------------------------- > > Key: RF-11686 > URL: https://issues.jboss.org/browse/RF-11686 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.1.0.CR1 > Environment: RichFaces 4.1.0.20111111-CR1 > Metamer 4.1.0.20111111-CR1 r.22924 > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 8.0 @ Linux i686 > Reporter: J?n Jamrich > Assignee: Matej Novotny > Labels: needs-qe > Fix For: 5.0.0.Alpha4 > > > In Metamer demo for editor are buttons for editor's API testing. > All functions on editor seems ok, except functions for editor's readonly status access (isReadonly and setReadonly). > I'm getting following error in browser log when click on this button: > RichFaces.$("form:editor").isReadonly is not a function > [Break On This Error] if(typeof OpenAjax!=="undefined"&&type...){f.render=b}jsf.ajax.request(c,d,f)}; -- 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 From issues at jboss.org Wed Feb 26 07:55:47 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Wed, 26 Feb 2014 07:55:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11542) showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Pavol Pitonak reassigned RF-11542: ---------------------------------- Assignee: Matej Novotny (was: Pavol Pitonak) > showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode > -------------------------------------------------------------------------------------------------------------- > > Key: RF-11542 > URL: https://issues.jboss.org/browse/RF-11542 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, showcase, third-party > Affects Versions: 4.1.0.Milestone3 > Environment: app: richfaces-showcase-4.1.0.20111011-M3 > container: JBoss AS 7.0.2.Final > browsers: all > Reporter: Juraj H?ska > Assignee: Matej Novotny > Priority: Minor > Labels: needs-qe > Fix For: 5-Future > > > WARN on the container console is generated when there is any interaction with editor when it is in source mode. > This is the warn: > {code} > 17:53:54,302 WARN [org.apache.tomcat.util.http.Parameters] (http--0.0.0.0-8080-5) Parameters: Invalid chunk ignored. > {code} > Although warn is generated, no function is visibly corrupted. -- 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 From issues at jboss.org Wed Feb 26 07:50:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:50:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11153) Text exceeds edges of consumer window in CDI sample for aj4:push in showcase In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11153?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11153: ---------------------------- Assignee: (was: Luk?? Fry?) > Text exceeds edges of consumer window in CDI sample for aj4:push in showcase > ---------------------------------------------------------------------------- > > Key: RF-11153 > URL: https://issues.jboss.org/browse/RF-11153 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-push/poll, examples, showcase > Affects Versions: 4.1.0.Milestone1 > Environment: richfaces-showcase-4.1.0-SNAPSHOT > Reporter: Juraj H?ska > Priority: Optional > Fix For: 5-Future > > Attachments: firstWrong.png, secondWrong.png > > > When the message which is pushed to consumers is too long, like 50 characters and more, than the output on consumers window looks quite ugly, since the message exceeds the white part of the page. The solution would be either to enlarge the white part, or to make a restriction about size of message to for example 40 chars. -- 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 From issues at jboss.org Wed Feb 26 07:48:50 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:48:50 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11542) showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11542: ---------------------------- Labels: needs-qe (was: ) > showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode > -------------------------------------------------------------------------------------------------------------- > > Key: RF-11542 > URL: https://issues.jboss.org/browse/RF-11542 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, showcase, third-party > Affects Versions: 4.1.0.Milestone3 > Environment: app: richfaces-showcase-4.1.0.20111011-M3 > container: JBoss AS 7.0.2.Final > browsers: all > Reporter: Juraj H?ska > Assignee: Luk?? Fry? > Priority: Minor > Labels: needs-qe > Fix For: 5-Future > > > WARN on the container console is generated when there is any interaction with editor when it is in source mode. > This is the warn: > {code} > 17:53:54,302 WARN [org.apache.tomcat.util.http.Parameters] (http--0.0.0.0-8080-5) Parameters: Invalid chunk ignored. > {code} > Although warn is generated, no function is visibly corrupted. -- 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 From issues at jboss.org Wed Feb 26 07:48:52 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 07:48:52 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11542) showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11542?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948320#comment-12948320 ] Luk?? Fry? commented on RF-11542: --------------------------------- QE: is this still an issue with 5.0.0.Alpha4? > showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode > -------------------------------------------------------------------------------------------------------------- > > Key: RF-11542 > URL: https://issues.jboss.org/browse/RF-11542 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, showcase, third-party > Affects Versions: 4.1.0.Milestone3 > Environment: app: richfaces-showcase-4.1.0.20111011-M3 > container: JBoss AS 7.0.2.Final > browsers: all > Reporter: Juraj H?ska > Assignee: Pavol Pitonak > Priority: Minor > Labels: needs-qe > Fix For: 5-Future > > > WARN on the container console is generated when there is any interaction with editor when it is in source mode. > This is the warn: > {code} > 17:53:54,302 WARN [org.apache.tomcat.util.http.Parameters] (http--0.0.0.0-8080-5) Parameters: Invalid chunk ignored. > {code} > Although warn is generated, no function is visibly corrupted. -- 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 From issues at jboss.org Wed Feb 26 11:08:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 11:08:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11608) Add Arquillian test to archetype-simpleapp In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11608?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948429#comment-12948429 ] Luk?? Fry? commented on RF-11608: --------------------------------- I believe so, our archetypes should show a reference usage, so they should show how to test the generated app. But we should probably wait for some 5.x archetype to be available. > Add Arquillian test to archetype-simpleapp > ------------------------------------------ > > Key: RF-11608 > URL: https://issues.jboss.org/browse/RF-11608 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: archetype > Affects Versions: 4.1.0.Milestone4 > Reporter: Marek Novotny > Assignee: Pavol Pitonak > Fix For: 5-Future > > > Currently two options here: > * Arquillian and JSFUnit (not stable currently, but preferable) > * Arquillian Drone extension (using HtmlUnitDriver) -- 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 From issues at jboss.org Wed Feb 26 12:46:48 2014 From: issues at jboss.org (Brian Leathem (JIRA)) Date: Wed, 26 Feb 2014 12:46:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12899) Deadlock appears in push component In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12899?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12784100#comment-12784100 ] Brian Leathem edited comment on RF-12899 at 2/26/14 12:46 PM: -------------------------------------------------------------- Hi, I'm experiencing the same issue. Our environment is: -> apache-tomcat-6.0.18.3 -> richfaces-4.2.3.Final We are using the a4j:pusf component to make push notifications (the avarage is 1 push each 5 seconds and 60 concurrent logged in users to be notified) and in production environment I've locks appearing each 3-4 days that forces me to restart the tomcat, beacuse the application become slow and at certain point the push notifications stop to work. I've been able to reproduce the issue in our test environment having 80 concurrent users logged in on the portal (just logged in without making any other operation) and having 1 push notification per second and in this scenario I'm able to reproduce a deadlock in 10-15 minutes. I've tried to upgrade the version to 4.3.0 and with the same test case I have the same issue. Do you have any idea of why this deadlock appears? Is there something I can do as workaround or is there a version/patch that clearly solves that bug? I ask if someone can help me because it is a serious issue in production environment and considering that our load is growing each day I don't want to end up in a situation of restarting the tomcat each hour and already now we have an embarrassing situation of an unstable application and customers complaining . Below i report some of the deadlocks that I've been able to reproduce in our test environment (I've been able to produce 8 deadlocks in 1 hour): Java stack information for the threads listed above: =================================================== {code} "Atmosphere-AsyncWrite-0": at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:125) - waiting to lock <0xe7385318> (a org.richfaces.application.push.impl.SessionImpl) at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:127) at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.java:135) at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResourceImpl.java:804) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:752) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:734) at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadcaster.java:771) at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:801) - locked <0xeaf05330> (a org.atmosphere.cpr.AtmosphereResourceImpl) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) at java.lang.Thread.run(Thread.java:619) "http-8081-144": at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceImpl.java:274) - waiting to lock <0xeaf05330> (a org.atmosphere.cpr.AtmosphereResourceImpl) at org.atmosphere.cpr.Meteor.resume(Meteor.java:275) at org.richfaces.application.push.impl.RequestImpl.resume(RequestImpl.java:70) at org.richfaces.application.push.impl.SessionImpl.releaseRequest(SessionImpl.java:120) at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:125) - locked <0xe7385318> (a org.richfaces.application.push.impl.SessionImpl) at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:127) at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.java:135) at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResourceImpl.java:804) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:752) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:734) at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor.java:457) at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOCometSupport.java:157) at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOCometSupport.java:103) at org.atmosphere.cpr.AtmosphereFramework.doCometSupport(AtmosphereFramework.java:1293) at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:293) at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:279) at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) {code} Java stack information for the threads listed above: =================================================== {code} "Atmosphere-AsyncWrite-1": at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:125) - waiting to lock <0xe80ab530> (a org.richfaces.application.push.impl.SessionImpl) at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:127) at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.java:135) at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResourceImpl.java:804) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:752) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:734) at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadcaster.java:771) at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:801) - locked <0xea6adc88> (a org.atmosphere.cpr.AtmosphereResourceImpl) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) at java.lang.Thread.run(Thread.java:619) "http-8081-54": at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceImpl.java:274) - waiting to lock <0xea6adc88> (a org.atmosphere.cpr.AtmosphereResourceImpl) at org.atmosphere.cpr.Meteor.resume(Meteor.java:275) at org.richfaces.application.push.impl.RequestImpl.resume(RequestImpl.java:70) at org.richfaces.application.push.impl.SessionImpl.releaseRequest(SessionImpl.java:120) at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:125) - locked <0xe80ab530> (a org.richfaces.application.push.impl.SessionImpl) at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:127) at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.java:135) at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResourceImpl.java:804) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:752) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:734) at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor.java:457) at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOCometSupport.java:157) at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOCometSupport.java:103) at org.atmosphere.cpr.AtmosphereFramework.doCometSupport(AtmosphereFramework.java:1293) at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:293) at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:279) at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:343) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:109) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:97) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:100) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:78) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) {code} I report also some configuration on the web.xml file made for atmosphere: {code} org.richfaces.push.handlerMapping /__richfaces_push Push Servlet org.richfaces.webapp.PushServlet true 1 Push Servlet /__richfaces_push org.atmosphere.useBlocking true org.atmosphere.cpr.CometSupport.maxInactiveActivity 35000 org.richfaces.push.session.maxInactiveInterval 40000 {code} Thank you in advanced for your quick feedback was (Author: kurt82): Hi, I'm experiencing the same issue. Our environment is: -> apache-tomcat-6.0.18.3 -> richfaces-4.2.3.Final We are using the a4j:pusf component to make push notifications (the avarage is 1 push each 5 seconds and 60 concurrent logged in users to be notified) and in production environment I've locks appearing each 3-4 days that forces me to restart the tomcat, beacuse the application become slow and at certain point the push notifications stop to work. I've been able to reproduce the issue in our test environment having 80 concurrent users logged in on the portal (just logged in without making any other operation) and having 1 push notification per second and in this scenario I'm able to reproduce a deadlock in 10-15 minutes. I've tried to upgrade the version to 4.3.0 and with the same test case I have the same issue. Do you have any idea of why this deadlock appears? Is there something I can do as workaround or is there a version/patch that clearly solves that bug? I ask if someone can help me because it is a serious issue in production environment and considering that our load is growing each day I don't want to end up in a situation of restarting the tomcat each hour and already now we have an embarrassing situation of an unstable application and customers complaining . Below i report some of the deadlocks that I've been able to reproduce in our test environment (I've been able to produce 8 deadlocks in 1 hour): Java stack information for the threads listed above: =================================================== "Atmosphere-AsyncWrite-0": at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:125) - waiting to lock <0xe7385318> (a org.richfaces.application.push.impl.SessionImpl) at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:127) at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.java:135) at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResourceImpl.java:804) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:752) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:734) at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadcaster.java:771) at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:801) - locked <0xeaf05330> (a org.atmosphere.cpr.AtmosphereResourceImpl) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) at java.lang.Thread.run(Thread.java:619) "http-8081-144": at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceImpl.java:274) - waiting to lock <0xeaf05330> (a org.atmosphere.cpr.AtmosphereResourceImpl) at org.atmosphere.cpr.Meteor.resume(Meteor.java:275) at org.richfaces.application.push.impl.RequestImpl.resume(RequestImpl.java:70) at org.richfaces.application.push.impl.SessionImpl.releaseRequest(SessionImpl.java:120) at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:125) - locked <0xe7385318> (a org.richfaces.application.push.impl.SessionImpl) at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:127) at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.java:135) at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResourceImpl.java:804) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:752) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:734) at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor.java:457) at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOCometSupport.java:157) at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOCometSupport.java:103) at org.atmosphere.cpr.AtmosphereFramework.doCometSupport(AtmosphereFramework.java:1293) at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:293) at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:279) at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) Java stack information for the threads listed above: =================================================== "Atmosphere-AsyncWrite-1": at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:125) - waiting to lock <0xe80ab530> (a org.richfaces.application.push.impl.SessionImpl) at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:127) at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.java:135) at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResourceImpl.java:804) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:752) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:734) at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadcaster.java:771) at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:801) - locked <0xea6adc88> (a org.atmosphere.cpr.AtmosphereResourceImpl) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441) at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) at java.util.concurrent.FutureTask.run(FutureTask.java:138) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907) at java.lang.Thread.run(Thread.java:619) "http-8081-54": at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceImpl.java:274) - waiting to lock <0xea6adc88> (a org.atmosphere.cpr.AtmosphereResourceImpl) at org.atmosphere.cpr.Meteor.resume(Meteor.java:275) at org.richfaces.application.push.impl.RequestImpl.resume(RequestImpl.java:70) at org.richfaces.application.push.impl.SessionImpl.releaseRequest(SessionImpl.java:120) at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:125) - locked <0xe80ab530> (a org.richfaces.application.push.impl.SessionImpl) at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:127) at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.java:135) at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResourceImpl.java:804) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:752) at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:734) at org.atmosphere.cpr.AsynchronousProcessor.timedout(AsynchronousProcessor.java:457) at org.atmosphere.container.BlockingIOCometSupport.suspend(BlockingIOCometSupport.java:157) at org.atmosphere.container.BlockingIOCometSupport.service(BlockingIOCometSupport.java:103) at org.atmosphere.cpr.AtmosphereFramework.doCometSupport(AtmosphereFramework.java:1293) at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:293) at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:279) at javax.servlet.http.HttpServlet.service(HttpServlet.java:617) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:343) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:109) at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:83) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:97) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:100) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:78) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:54) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:355) I report also some configuration on the web.xml file made for atmosphere: org.richfaces.push.handlerMapping /__richfaces_push Push Servlet org.richfaces.webapp.PushServlet true 1 Push Servlet /__richfaces_push org.atmosphere.useBlocking true org.atmosphere.cpr.CometSupport.maxInactiveActivity 35000 org.richfaces.push.session.maxInactiveInterval 40000 Thank you in advanced for your quick feedback > Deadlock appears in push component > ---------------------------------- > > Key: RF-12899 > URL: https://issues.jboss.org/browse/RF-12899 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-push/poll > Affects Versions: 4.2.2.Final > Reporter: Ji?? Mikul??ek > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > Original Estimate: 2 hours > Remaining Estimate: 2 hours > > Our application freezes occasionally. We used Jstack and have seen the deadlock below. It seems to be very simillar to RF-12013, but the stack is slightly different > Found one Java-level deadlock: > ============================= > {code} > "localhost-startStop-2": > waiting to lock monitor 0x000000000782a368 (object 0x000000078da957e0, a org.richfaces.application.push.impl.SessionImpl), > which is held by "http-nio-30085-exec-4" > "http-nio-30085-exec-4": > waiting to lock monitor 0x00000000085cbe00 (object 0x000000078e8ecf90, a org.atmosphere.cpr.AtmosphereResourceImpl), > which is held by "Atmosphere-AsyncWrite-0" > "Atmosphere-AsyncWrite-0": > waiting to lock monitor 0x000000000782a368 (object 0x000000078da957e0, a org.richfaces.application.push.impl.SessionImpl), > which is held by "http-nio-30085-exec-4" > {code} > Java stack information for the threads listed above: > =================================================== > {code} > "localhost-startStop-2": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:117) > - waiting to lock <0x000000078da957e0> (a org.richfaces.application.push.impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:128) > at org.richfaces.application.push.impl.RequestImpl.onResume(RequestImpl.java:136) > at org.atmosphere.cpr.AtmosphereResourceImpl.onResume(AtmosphereResourceImpl.java:658) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:607) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:591) > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceImpl.java:187) > - locked <0x000000078e8b64a8> (a org.atmosphere.cpr.AtmosphereResourceImpl) > at org.atmosphere.cpr.DefaultBroadcaster.resumeAll(DefaultBroadcaster.java:300) > - locked <0x000000078e8d1ac8> (a java.util.concurrent.ConcurrentLinkedQueue) > at org.atmosphere.cpr.DefaultBroadcasterFactory.destroy(DefaultBroadcasterFactory.java:274) > - locked <0x000000078cb112d8> (a org.atmosphere.cpr.DefaultBroadcasterFactory) > at org.atmosphere.cpr.AtmosphereServlet.destroy(AtmosphereServlet.java:867) > at org.atmosphere.cpr.MeteorServlet.destroy(MeteorServlet.java:88) > at org.apache.catalina.core.StandardWrapper.unload(StandardWrapper.java:1481) > - locked <0x0000000784b6a168> (a org.apache.catalina.core.StandardWrapper) > at org.apache.catalina.core.StandardWrapper.stopInternal(StandardWrapper.java:1842) > - locked <0x0000000784b6a168> (a org.apache.catalina.core.StandardWrapper) > at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:232) > - locked <0x0000000784b6a168> (a org.apache.catalina.core.StandardWrapper) > at org.apache.catalina.core.StandardContext.stopInternal(StandardContext.java:5471) > - locked <0x000000078312e828> (a org.apache.catalina.core.StandardContext) > at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:232) > - locked <0x000000078312e828> (a org.apache.catalina.core.StandardContext) > at org.apache.catalina.core.ContainerBase$StopChild.call(ContainerBase.java:1575) > at org.apache.catalina.core.ContainerBase$StopChild.call(ContainerBase.java:1564) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) > at java.lang.Thread.run(Thread.java:662) > "http-nio-30085-exec-4": > at org.atmosphere.cpr.AtmosphereResourceImpl.resume(AtmosphereResourceImpl.java:168) > - waiting to lock <0x000000078e8ecf90> (a org.atmosphere.cpr.AtmosphereResourceImpl) > at org.atmosphere.cpr.Meteor.resume(Meteor.java:240) > at org.richfaces.application.push.impl.RequestImpl.resume(RequestImpl.java:71) > at org.richfaces.application.push.impl.SessionImpl.releaseRequest(SessionImpl.java:112) > at org.richfaces.application.push.impl.SessionImpl.connect(SessionImpl.java:85) > - locked <0x000000078da957e0> (a org.richfaces.application.push.impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.onSuspend(RequestImpl.java:119) > at org.atmosphere.cpr.AtmosphereResourceImpl.onSuspend(AtmosphereResourceImpl.java:652) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:611) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:591) > at org.atmosphere.cpr.AtmosphereResourceImpl.suspend(AtmosphereResourceImpl.java:347) > at org.atmosphere.cpr.Meteor.suspend(Meteor.java:213) > at org.richfaces.application.push.impl.RequestImpl.suspend(RequestImpl.java:67) > at org.richfaces.webapp.PushHandlerFilter.doFilter(PushHandlerFilter.java:107) > at org.atmosphere.util.AtmosphereFilterChain.doFilter(AtmosphereFilterChain.java:139) > at org.atmosphere.util.AtmosphereFilterChain.invokeFilterChain(AtmosphereFilterChain.java:116) > at org.atmosphere.handler.ReflectorServletProcessor$FilterChainServletWrapper.service(ReflectorServletProcessor.java:293) > at org.atmosphere.handler.ReflectorServletProcessor.onRequest(ReflectorServletProcessor.java:151) > at org.atmosphere.cpr.AsynchronousProcessor.action(AsynchronousProcessor.java:219) > at org.atmosphere.cpr.AsynchronousProcessor.suspended(AsynchronousProcessor.java:154) > at org.atmosphere.container.Tomcat7CometSupport.service(Tomcat7CometSupport.java:85) > at org.atmosphere.cpr.AtmosphereServlet.doCometSupport(AtmosphereServlet.java:1218) > at org.atmosphere.cpr.AtmosphereServlet.event(AtmosphereServlet.java:1286) > at org.apache.catalina.core.ApplicationFilterChain.internalDoFilterEvent(ApplicationFilterChain.java:484) > at org.apache.catalina.core.ApplicationFilterChain.doFilterEvent(ApplicationFilterChain.java:377) > at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220) > at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) > at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) > at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) > at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) > at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) > at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407) > at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1004) > at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) > at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1686) > - locked <0x000000078e7fcc28> (a org.apache.tomcat.util.net.NioChannel) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) > at java.lang.Thread.run(Thread.java:662) > "Atmosphere-AsyncWrite-0": > at org.richfaces.application.push.impl.SessionImpl.disconnect(SessionImpl.java:117) > - waiting to lock <0x000000078da957e0> (a org.richfaces.application.push.impl.SessionImpl) > at org.richfaces.application.push.impl.RequestImpl.disconnect(RequestImpl.java:128) > at org.richfaces.application.push.impl.RequestImpl.onDisconnect(RequestImpl.java:140) > at org.atmosphere.cpr.AtmosphereResourceImpl.onDisconnect(AtmosphereResourceImpl.java:664) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:609) > at org.atmosphere.cpr.AtmosphereResourceImpl.notifyListeners(AtmosphereResourceImpl.java:591) > at org.atmosphere.cpr.DefaultBroadcaster.executeAsyncWrite(DefaultBroadcaster.java:719) > at org.atmosphere.cpr.DefaultBroadcaster$3.run(DefaultBroadcaster.java:749) > - locked <0x000000078e8ecf90> (a org.atmosphere.cpr.AtmosphereResourceImpl) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:439) > at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) > at java.util.concurrent.FutureTask.run(FutureTask.java:138) > at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) > at java.lang.Thread.run(Thread.java:662) > {code} > Found 1 deadlock. -- 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 From issues at jboss.org Wed Feb 26 14:46:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 14:46:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13556) Framework tests: Upgrade TomEE to 1.6.0 In-Reply-To: References: Message-ID: Luk?? Fry? created RF-13556: ------------------------------- Summary: Framework tests: Upgrade TomEE to 1.6.0 Key: RF-13556 URL: https://issues.jboss.org/browse/RF-13556 Project: RichFaces Issue Type: Component Upgrade Security Level: Public (Everyone can see) Components: tests - functional Affects Versions: 5.0.0.Alpha3 Reporter: Luk?? Fry? Assignee: Luk?? Fry? Fix For: 5.0.0.Alpha4 TomEE 1.6.0 is 99% compatible with Warp, so it may fix lot of issues. -- 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 From issues at jboss.org Wed Feb 26 14:46:49 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 14:46:49 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13557) Framework tests: Upgrade to Glassfish 4.0 In-Reply-To: References: Message-ID: Luk?? Fry? created RF-13557: ------------------------------- Summary: Framework tests: Upgrade to Glassfish 4.0 Key: RF-13557 URL: https://issues.jboss.org/browse/RF-13557 Project: RichFaces Issue Type: Component Upgrade Security Level: Public (Everyone can see) Components: tests - functional Affects Versions: 5.0.0.Alpha3 Reporter: Luk?? Fry? Assignee: Luk?? Fry? Fix For: 5.0.0.Alpha4 -- 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 From issues at jboss.org Wed Feb 26 14:48:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 14:48:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13556) Framework tests: Upgrade TomEE to 1.6.0 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13556?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13556. ----------------------------- Resolution: Done > Framework tests: Upgrade TomEE to 1.6.0 > --------------------------------------- > > Key: RF-13556 > URL: https://issues.jboss.org/browse/RF-13556 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > > TomEE 1.6.0 is 99% compatible with Warp, so it may fix lot of issues. -- 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 From issues at jboss.org Wed Feb 26 14:48:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Wed, 26 Feb 2014 14:48:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13557) Framework tests: Upgrade to Glassfish 4.0 In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13557?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? resolved RF-13557. ----------------------------- Resolution: Done > Framework tests: Upgrade to Glassfish 4.0 > ----------------------------------------- > > Key: RF-13557 > URL: https://issues.jboss.org/browse/RF-13557 > Project: RichFaces > Issue Type: Component Upgrade > Security Level: Public(Everyone can see) > Components: tests - functional > Affects Versions: 5.0.0.Alpha3 > Reporter: Luk?? Fry? > Assignee: Luk?? Fry? > Fix For: 5.0.0.Alpha4 > > -- 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 From issues at jboss.org Thu Feb 27 03:38:47 2014 From: issues at jboss.org (Pavol Pitonak (JIRA)) Date: Thu, 27 Feb 2014 03:38:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11608) Add Arquillian test to archetype-simpleapp In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11608?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948560#comment-12948560 ] Pavol Pitonak commented on RF-11608: ------------------------------------ What should we wait for? There is simpleapp archetype 5.0.0.Alpha3. Description says that it should use HtmlUnitDriver. We would implement it with PhantomJS. > Add Arquillian test to archetype-simpleapp > ------------------------------------------ > > Key: RF-11608 > URL: https://issues.jboss.org/browse/RF-11608 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: archetype > Affects Versions: 4.1.0.Milestone4 > Reporter: Marek Novotny > Assignee: Pavol Pitonak > Fix For: 5-Future > > > Currently two options here: > * Arquillian and JSFUnit (not stable currently, but preferable) > * Arquillian Drone extension (using HtmlUnitDriver) -- 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 From issues at jboss.org Thu Feb 27 04:46:48 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 27 Feb 2014 04:46:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11608) Add Arquillian test to archetype-simpleapp In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11608?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948579#comment-12948579 ] Luk?? Fry? commented on RF-11608: --------------------------------- +1, it should use Graphene, Drone (with PhantomJS) and Warp > Add Arquillian test to archetype-simpleapp > ------------------------------------------ > > Key: RF-11608 > URL: https://issues.jboss.org/browse/RF-11608 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: archetype > Affects Versions: 4.1.0.Milestone4 > Reporter: Marek Novotny > Assignee: Pavol Pitonak > Fix For: 5-Future > > > Currently two options here: > * Arquillian and JSFUnit (not stable currently, but preferable) > * Arquillian Drone extension (using HtmlUnitDriver) -- 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 From issues at jboss.org Thu Feb 27 04:48:47 2014 From: issues at jboss.org (=?UTF-8?Q?Luk=C3=A1=C5=A1_Fry=C4=8D_=28JIRA=29?=) Date: Thu, 27 Feb 2014 04:48:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11608) Add Arquillian test to archetype-simpleapp In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11608?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Luk?? Fry? updated RF-11608: ---------------------------- Description: The tests should use Graphene, Drone (with PhantomJS) and Warp (was: Currently two options here: * Arquillian and JSFUnit (not stable currently, but preferable) * Arquillian Drone extension (using HtmlUnitDriver)) > Add Arquillian test to archetype-simpleapp > ------------------------------------------ > > Key: RF-11608 > URL: https://issues.jboss.org/browse/RF-11608 > Project: RichFaces > Issue Type: Feature Request > Security Level: Public(Everyone can see) > Components: archetype > Affects Versions: 4.1.0.Milestone4 > Reporter: Marek Novotny > Assignee: Pavol Pitonak > Fix For: 5-Future > > > The tests should use Graphene, Drone (with PhantomJS) and Warp -- 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 From issues at jboss.org Thu Feb 27 06:10:48 2014 From: issues at jboss.org (Emil S (JIRA)) Date: Thu, 27 Feb 2014 06:10:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-12199) rich:tooltip does not work inside h:graphicImage In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-12199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948600#comment-12948600 ] Emil S commented on RF-12199: ----------------------------- All right guys, I'm using 4.3.3 and as [~rcordoba] said tooltip inside graphicImage doesn't work. Do you want me to open another topic for 4.3.3 and 4.2.3? So you will be able to mark twice as much threads as resolved than in reality. > rich:tooltip does not work inside h:graphicImage > ------------------------------------------------ > > Key: RF-12199 > URL: https://issues.jboss.org/browse/RF-12199 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-output > Affects Versions: 4.2.1.Final > Environment: RF 4.2.1.Final, GF 3.1.1 > Reporter: Bernhard Thalmayr > Assignee: Luca Nardelli > Fix For: 4.2.2.Final > > > I created a simple richfaces app using maven archetype 'richfaces-archetype-simpleapp' > Nesting rich:tooltip within h:graphicImage does not work; used mark up > {code} > > > tooltip1 > > > {code} > wrapping h:graphicImage within a4j:outputPanel is no workaround > {code} > > > > tooltip2 > > > > {code} -- 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 From issues at jboss.org Thu Feb 27 07:34:47 2014 From: issues at jboss.org (Michal Petrov (JIRA)) Date: Thu, 27 Feb 2014 07:34:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13558) pickList, orderingList: list doesn't scroll when using keys In-Reply-To: References: Message-ID: Michal Petrov created RF-13558: ---------------------------------- Summary: pickList, orderingList: list doesn't scroll when using keys Key: RF-13558 URL: https://issues.jboss.org/browse/RF-13558 Project: RichFaces Issue Type: Bug Security Level: Public (Everyone can see) Components: component-selects Affects Versions: 4.3.5 Reporter: Michal Petrov When using the up/down keys the list of elements does not scroll if you go past the visible part of the list. -- 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 From issues at jboss.org Thu Feb 27 07:40:47 2014 From: issues at jboss.org (Michal Petrov (JIRA)) Date: Thu, 27 Feb 2014 07:40:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13558) pickList, orderingList: list doesn't scroll when using keys In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13558?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948630#comment-12948630 ] Michal Petrov commented on RF-13558: ------------------------------------ The problem is [here|https://github.com/richfaces4/components/blob/master/input/ui/src/main/resources/META-INF/resources/org.richfaces/list.js#L442]. In case of pickList and orderingList it seems it's the parent of the {{scrollContainer}} that has to be scrolled but it might be working fine for other components that use the {{rf.ui.List}}. > pickList, orderingList: list doesn't scroll when using keys > ----------------------------------------------------------- > > Key: RF-13558 > URL: https://issues.jboss.org/browse/RF-13558 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5 > Reporter: Michal Petrov > > When using the up/down keys the list of elements does not scroll if you go past the visible part of the list. -- 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 From issues at jboss.org Thu Feb 27 07:42:47 2014 From: issues at jboss.org (Michal Petrov (JIRA)) Date: Thu, 27 Feb 2014 07:42:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-13558) pickList, orderingList: list doesn't scroll when using keys In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-13558?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michal Petrov updated RF-13558: ------------------------------- Description: When using the up/down keys the list of elements does not scroll if you go past the visible part of the list. Reproducible in [showcase|http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=orderingList&skin=blueSky]. (was: When using the up/down keys the list of elements does not scroll if you go past the visible part of the list.) > pickList, orderingList: list doesn't scroll when using keys > ----------------------------------------------------------- > > Key: RF-13558 > URL: https://issues.jboss.org/browse/RF-13558 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-selects > Affects Versions: 4.3.5 > Reporter: Michal Petrov > > When using the up/down keys the list of elements does not scroll if you go past the visible part of the list. Reproducible in [showcase|http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=orderingList&skin=blueSky]. -- 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 From issues at jboss.org Fri Feb 28 07:25:47 2014 From: issues at jboss.org (Matej Novotny (JIRA)) Date: Fri, 28 Feb 2014 07:25:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11686) Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948935#comment-12948935 ] Matej Novotny commented on RF-11686: ------------------------------------ This is no longer an issue - both functions work correctly for me. > Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work > --------------------------------------------------------------------------- > > Key: RF-11686 > URL: https://issues.jboss.org/browse/RF-11686 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.1.0.CR1 > Environment: RichFaces 4.1.0.20111111-CR1 > Metamer 4.1.0.20111111-CR1 r.22924 > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 8.0 @ Linux i686 > Reporter: J?n Jamrich > Assignee: Matej Novotny > Labels: needs-qe > Fix For: 5.0.0.Alpha4 > > > In Metamer demo for editor are buttons for editor's API testing. > All functions on editor seems ok, except functions for editor's readonly status access (isReadonly and setReadonly). > I'm getting following error in browser log when click on this button: > RichFaces.$("form:editor").isReadonly is not a function > [Break On This Error] if(typeof OpenAjax!=="undefined"&&type...){f.render=b}jsf.ajax.request(c,d,f)}; -- 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 From issues at jboss.org Fri Feb 28 07:25:47 2014 From: issues at jboss.org (Matej Novotny (JIRA)) Date: Fri, 28 Feb 2014 07:25:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11686) Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matej Novotny resolved RF-11686. -------------------------------- Resolution: Cannot Reproduce Bug > Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work > --------------------------------------------------------------------------- > > Key: RF-11686 > URL: https://issues.jboss.org/browse/RF-11686 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.1.0.CR1 > Environment: RichFaces 4.1.0.20111111-CR1 > Metamer 4.1.0.20111111-CR1 r.22924 > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 8.0 @ Linux i686 > Reporter: J?n Jamrich > Assignee: Matej Novotny > Labels: needs-qe > Fix For: 5.0.0.Alpha4 > > > In Metamer demo for editor are buttons for editor's API testing. > All functions on editor seems ok, except functions for editor's readonly status access (isReadonly and setReadonly). > I'm getting following error in browser log when click on this button: > RichFaces.$("form:editor").isReadonly is not a function > [Break On This Error] if(typeof OpenAjax!=="undefined"&&type...){f.render=b}jsf.ajax.request(c,d,f)}; -- 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 From issues at jboss.org Fri Feb 28 07:33:47 2014 From: issues at jboss.org (Matej Novotny (JIRA)) Date: Fri, 28 Feb 2014 07:33:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11686) Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matej Novotny updated RF-11686: ------------------------------- Labels: (was: needs-qe) > Metamer: rich:editor: isReadonly() and setReadonly() functions doesn't work > --------------------------------------------------------------------------- > > Key: RF-11686 > URL: https://issues.jboss.org/browse/RF-11686 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input > Affects Versions: 4.1.0.CR1 > Environment: RichFaces 4.1.0.20111111-CR1 > Metamer 4.1.0.20111111-CR1 r.22924 > Mojarra 2.1.3-SNAPSHOT > JBoss AS 7.0.2.Final > Java(TM) SE Runtime Environment 1.6.0_26-b03 @ Linux > Firefox 8.0 @ Linux i686 > Reporter: J?n Jamrich > Assignee: Matej Novotny > Fix For: 5.0.0.Alpha4 > > > In Metamer demo for editor are buttons for editor's API testing. > All functions on editor seems ok, except functions for editor's readonly status access (isReadonly and setReadonly). > I'm getting following error in browser log when click on this button: > RichFaces.$("form:editor").isReadonly is not a function > [Break On This Error] if(typeof OpenAjax!=="undefined"&&type...){f.render=b}jsf.ajax.request(c,d,f)}; -- 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 From issues at jboss.org Fri Feb 28 07:49:47 2014 From: issues at jboss.org (Matej Novotny (JIRA)) Date: Fri, 28 Feb 2014 07:49:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11542) showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11542?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12948943#comment-12948943 ] Matej Novotny commented on RF-11542: ------------------------------------ This is no longer an issue. > showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode > -------------------------------------------------------------------------------------------------------------- > > Key: RF-11542 > URL: https://issues.jboss.org/browse/RF-11542 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, showcase, third-party > Affects Versions: 4.1.0.Milestone3 > Environment: app: richfaces-showcase-4.1.0.20111011-M3 > container: JBoss AS 7.0.2.Final > browsers: all > Reporter: Juraj H?ska > Assignee: Matej Novotny > Priority: Minor > Labels: needs-qe > Fix For: 5-Future > > > WARN on the container console is generated when there is any interaction with editor when it is in source mode. > This is the warn: > {code} > 17:53:54,302 WARN [org.apache.tomcat.util.http.Parameters] (http--0.0.0.0-8080-5) Parameters: Invalid chunk ignored. > {code} > Although warn is generated, no function is visibly corrupted. -- 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 From issues at jboss.org Fri Feb 28 07:49:47 2014 From: issues at jboss.org (Matej Novotny (JIRA)) Date: Fri, 28 Feb 2014 07:49:47 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11542) showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matej Novotny resolved RF-11542. -------------------------------- Resolution: Cannot Reproduce Bug > showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode > -------------------------------------------------------------------------------------------------------------- > > Key: RF-11542 > URL: https://issues.jboss.org/browse/RF-11542 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, showcase, third-party > Affects Versions: 4.1.0.Milestone3 > Environment: app: richfaces-showcase-4.1.0.20111011-M3 > container: JBoss AS 7.0.2.Final > browsers: all > Reporter: Juraj H?ska > Assignee: Matej Novotny > Priority: Minor > Labels: needs-qe > Fix For: 5-Future > > > WARN on the container console is generated when there is any interaction with editor when it is in source mode. > This is the warn: > {code} > 17:53:54,302 WARN [org.apache.tomcat.util.http.Parameters] (http--0.0.0.0-8080-5) Parameters: Invalid chunk ignored. > {code} > Although warn is generated, no function is visibly corrupted. -- 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 From issues at jboss.org Fri Feb 28 07:49:48 2014 From: issues at jboss.org (Matej Novotny (JIRA)) Date: Fri, 28 Feb 2014 07:49:48 -0500 (EST) Subject: [richfaces-issues] [JBoss JIRA] (RF-11542) showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/RF-11542?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Matej Novotny updated RF-11542: ------------------------------- Labels: (was: needs-qe) > showcase - rich:editor - WARN is generated when there is any interaction with editor when it is in source mode > -------------------------------------------------------------------------------------------------------------- > > Key: RF-11542 > URL: https://issues.jboss.org/browse/RF-11542 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) > Components: component-input, showcase, third-party > Affects Versions: 4.1.0.Milestone3 > Environment: app: richfaces-showcase-4.1.0.20111011-M3 > container: JBoss AS 7.0.2.Final > browsers: all > Reporter: Juraj H?ska > Assignee: Matej Novotny > Priority: Minor > Fix For: 5-Future > > > WARN on the container console is generated when there is any interaction with editor when it is in source mode. > This is the warn: > {code} > 17:53:54,302 WARN [org.apache.tomcat.util.http.Parameters] (http--0.0.0.0-8080-5) Parameters: Invalid chunk ignored. > {code} > Although warn is generated, no function is visibly corrupted. -- 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