[JBoss JIRA] Created: (RF-8202) rich:panelBarItem label facet content not rerendered via Ajax
by Max Katz (JIRA)
rich:panelBarItem label facet content not rerendered via Ajax
-------------------------------------------------------------
Key: RF-8202
URL: https://jira.jboss.org/jira/browse/RF-8202
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-output
Affects Versions: 3.3.1
Environment: RichFaces 3.3.1
Reporter: Max Katz
rich:panelBarItem label facet content not rerendered via Ajax
Code sample:
<h:form id="form">
<rich:panelBar>
<rich:panelBarItem id="paymenttypeHolder">
<f:facet name="label">
<h:panelGrid id="pnlCatgry">
<h:outputText id="opTextCount" value="Payment Type" />
<h:outputText id="opTextCount1"
value="#{forum5Bean.text}" />
</h:panelGrid>
</f:facet>
</rich:panelBarItem>
</rich:panelBar>
<h:inputText id="tempPymtCtgrySlctCbox"
value="#{forum5Bean.text}">
<a4j:support id="suppPymtCtry1" event="onkeyup"
reRender="pnlCatgry,opTextCount1" />
</h:inputText>
<a4j:log popup="false" />
</h:form>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-8598) h:outputStylesheet doesn't work in JBoss 6 M2
by Pavol Pitonak (JIRA)
h:outputStylesheet doesn't work in JBoss 6 M2
---------------------------------------------
Key: RF-8598
URL: https://jira.jboss.org/jira/browse/RF-8598
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.ALPHA1
Environment: Fedora 12, OpenJDK 1.6.0_17, JBoss 6 M2, RichFaces 4.0.0-SNAPSHOT (from 17 Apr 2010)
Reporter: Pavol Pitonak
Attachments: stylesheet.zip
The attached project works as expected in Apache Tomcat 6.0.24. In JBoss 6 M2 it throws an exception (see down). If RichFaces are removed from project completely, everything works.
<h:outputStylesheet library="css" name="common.css" />
java.lang.NullPointerException
at org.apache.naming.resources.ProxyDirContext.listBindings(ProxyDirContext.java:714)
at org.apache.catalina.core.ApplicationContext.listCollectionPaths(ApplicationContext.java:1397)
at org.apache.catalina.core.ApplicationContext.getResourcePathsInternal(ApplicationContext.java:645)
at org.apache.catalina.core.ApplicationContext.getResourcePaths(ApplicationContext.java:628)
at org.apache.catalina.core.ApplicationContextFacade.getResourcePaths(ApplicationContextFacade.java:199)
at com.sun.faces.context.ExternalContextImpl.getResourcePaths(ExternalContextImpl.java:480)
at com.sun.faces.application.resource.WebappResourceHelper.findLibrary(WebappResourceHelper.java:141)
at com.sun.faces.application.resource.ResourceManager.findLibrary(ResourceManager.java:337)
at com.sun.faces.application.resource.ResourceManager.doLookup(ResourceManager.java:222)
at com.sun.faces.application.resource.ResourceManager.findResource(ResourceManager.java:181)
at com.sun.faces.application.resource.ResourceHandlerImpl.createResource(ResourceHandlerImpl.java:140)
at org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerImpl.java:463)
at org.richfaces.resource.ResourceHandlerImpl.createResource(ResourceHandlerImpl.java:471)
at com.sun.faces.renderkit.html_basic.StylesheetRenderer.encodeEnd(StylesheetRenderer.java:91)
at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:878)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1620)
at com.sun.faces.renderkit.html_basic.HeadRenderer.encodeEnd(HeadRenderer.java:93)
at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:878)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1620)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1616)
at com.sun.faces.application.view.FaceletViewHandlingStrategy.renderView(FaceletViewHandlingStrategy.java:380)
at com.sun.faces.application.view.MultiViewHandler.renderView(MultiViewHandler.java:126)
at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:127)
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:313)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:336)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:242)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:276)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:183)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:95)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
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:872)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:653)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:951)
at java.lang.Thread.run(Thread.java:636)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-8603) Datascroller The requested page #2 isn't found in the model containing 1 pages. Paging is reset to page #1
by Mirko Sciachero (JIRA)
Datascroller The requested page #2 isn't found in the model containing 1 pages. Paging is reset to page #1
-----------------------------------------------------------------------------------------------------------
Key: RF-8603
URL: https://jira.jboss.org/jira/browse/RF-8603
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 3.3.3.Final
Environment: Oracle Weblogic 10.3.2, Linux 64bit
Reporter: Mirko Sciachero
Priority: Critical
I have the following code:
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" 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:i4c="http://i4c.com/jsf/components" xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich" xmlns:fn="http://java.sun.com/jsp/jstl/functions">
<ui:composition>
<rich:simpleTogglePanel label="#{componentDataTable.label}" opened="#{componentDataTable.opened}" switchType="client" ajaxSingle="true"
headerClass="edRelationSimpleTogglePanelHeader" styleClass="edRelationSimpleTogglePanel" style="width:100%" id="componentToggle" >
<rich:extendedDataTable value="#{componentDataTable.componentDecoratorList}"
var="componentDecorator" rows="1" footerClass="" id="componentTable" rowClasses="odd,even" >
<rich:column rendered="#{((entityPageMB.entityDetailsMB.mode) != ('DISPLAY'))}">
<h:selectBooleanCheckbox id="componentDecoCheckBox" value="#{componentDecorator.selected}">
<a4j:support event="onchange" ajaxSingle="true" actionListener="#{componentDataTable.onSelect}"
immediate="true" reRender="componentActionPanel,componentTable" >
<f:param name="componentIdChar" value="#{componentDecorator.idCharacter}" />
</a4j:support>
</h:selectBooleanCheckbox>
<a4j:outputPanel ajaxRendered="true"/>
</rich:column>
<rich:column sortable="true" sortBy="#{componentDecorator.idCharacter}" id="col_2"
filterBy="#{componentDecorator.idCharacter}" filterEvent="onkeyup">
<f:facet name="header">
<h:outputText value="Id" />
</f:facet>
<h:outputText value="#{componentDecorator.idCharacter}" />
</rich:column>
<rich:column sortable="true" sortBy="#{componentDecorator.versionedName}" id="col_3"
filterBy="#{componentDecorator.versionedName}" filterEvent="onkeyup">
<f:facet name="header">
<h:outputText value="Nome" />
</f:facet>
<h:commandLink value="#{componentDecorator.versionedName}" action="#{componentDecorator.navigateComponent}" ></h:commandLink>
</rich:column>
<rich:column sortable="true" sortBy="#{componentDecorator.description}" id="col_4"
filterBy="#{componentDecorator.description}" filterEvent="onkeyup" >
<f:facet name="header">
<h:outputText value="Descrizione" />
</f:facet>
<h:outputText value="#{componentDecorator.description}" />
</rich:column>
</rich:extendedDataTable>
<rich:datascroller for="componentTable" />
<rich:spacer height="20" />
<h:panelGrid id="componentActionPanel" columns="4" rendered="#{((entityPageMB.entityDetailsMB.mode) != ('DISPLAY'))}">
<h:commandButton value="#{lang.modify_label}" styleClass="button" disabled="#{componentDataTable.modifyDisabled}"
action="#{componentInstances.modifyInstance}" >
<f:setPropertyActionListener value="#{componentDataTable.selectedComponentDecorator}" target="#{componentInstances.selectedComponentDecorator}" />
<f:setPropertyActionListener value="#{componentDataTable.componentTypeDecorator}" target="#{componentInstances.selectedComponentTypeDecorator}" />
</h:commandButton>
<h:commandButton value="#{lang.duplicate_label}" styleClass="button" rendered="#{componentDataTable.cloneRendered}"
disabled="#{componentDataTable.cloneDisabled}" action="#{componentInstances.duplicateInstance}" >
<f:setPropertyActionListener value="#{componentDataTable.selectedComponentDecorator}" target="#{componentInstances.selectedComponentDecorator}" />
<f:setPropertyActionListener value="#{componentDataTable.componentTypeDecorator}" target="#{componentInstances.selectedComponentTypeDecorator}" />
</h:commandButton>
<h:commandButton value="#{lang.delete_label}" styleClass="button" disabled="#{componentDataTable.deleteDisabled}"
action="#{componentInstances.deleteInstances}">
<f:setPropertyActionListener value="#{componentDataTable.selectedComponentDecoratorList}" target="#{componentInstances.selectedComponentDecoratorList}" />
<f:setPropertyActionListener value="#{componentDataTable.componentTypeDecorator}" target="#{componentInstances.selectedComponentTypeDecorator}" />
</h:commandButton>
<h:commandButton value="#{lang.create_label}" styleClass="button" disabled="#{componentDataTable.createDisabled}"
action="#{componentInstances.createInstance}" >
<f:setPropertyActionListener value="#{componentDataTable.componentTypeDecorator}" target="#{componentInstances.selectedComponentTypeDecorator}" />
</h:commandButton>
</h:panelGrid>
</rich:simpleTogglePanel>
</ui:composition>
</html>
called by the following fragment:
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" 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:i4c="http://i4c.com/jsf/components" xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<ui:composition>
<rich:simpleTogglePanel id="componetsSTG" opened="#{entityPageMB.entityDetailsMB.componentInstances.opened}"
label="#{lang.lbl_toggle_comp}" switchType="ajax" ajaxSingle="true" eventsQueue="componetsPGQueue"
headerClass="edMainGroupSimpleTogglePanelHeader"
onexpand="this.children[1].innerText = '#{lang.lbl_toggle_comp} loading...';"
styleClass="componentRelationsInstancesDetails" reRender="componetsPG"
action="#{entityPageMB.entityDetailsMB.componentInstances.togglePanel}"
rendered="#{!empty entityPageMB.entityDetailsMB.componentInstances.compTypeDecoratorList and (entityPageMB.entityDetailsMB.entityInstanceType.mainInstance or entityPageMB.entityDetailsMB.entityInstanceType.componentInstance or entityPageMB.entityDetailsMB.entityInstanceType.relationInstance)}">
<h:panelGrid id="componentsPG" styleClass="edGrid">
<a4j:repeat value="#{entityPageMB.entityDetailsMB.componentInstances.compDataTableDecoratorList}" var="componentDataTable">
<a4j:region>
<h:panelGrid styleClass="edGrid">
<ui:decorate template="/WEB-INF/templates/componentDataTable.jsp">
<ui:param name="componentDataTable" value="#{componentDataTable}" />
<ui:param name="componentInstances" value="#{entityPageMB.entityDetailsMB.componentInstances}" />
</ui:decorate>
</h:panelGrid>
</a4j:region>
</a4j:repeat>
</h:panelGrid>
</rich:simpleTogglePanel>
</ui:composition>
</html>
that display a set of table paginated using <rich:datascroller>.
When I select the next page nothing will change, the data returned by Ajax Request are the fist page and in the log I found the following WARN:
"Datascroller generalfrm:j_id163:j_id176: The requested page #2 isn't found in the model containing 1 pages. Paging is reset to page #1"
Seems that the data table "forget" the list of values and reread all
The variable:#{componentDataTable.componentDecoratorList} is a list of object that represent a line in the table.
ComponentDataTable is an object that represent the entire table.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-8600) f:actionListener: Parent is not of type ActionSource
by Pavol Pitonak (JIRA)
f:actionListener: Parent is not of type ActionSource
----------------------------------------------------
Key: RF-8600
URL: https://jira.jboss.org/jira/browse/RF-8600
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 4.0.0.ALPHA1
Environment: Linux, OpenJDK 1.6.0_17, RichFaces 4.0.0-SNAPSHOT
Reporter: Pavol Pitonak
Action listener attached to a command link causes an exception.
<a4j:commandLink id="componentId" action="#{autoTestBean.action}" actionListener="#{autoTestBean.actionListener}"
immediate="#{autoTestBean.immediate}" ajaxSingle="#{autoTestBean.ajaxSingle}"
process="#{autoTestBean.process}" reRender="#{autoTestBean.reRender}" value="Link">
<f:actionListener type="org.ajax4jsf.autotest.bean.AutoTestListener" />
</a4j:commandLink>
javax.faces.view.facelets.TagException: /pages/ajaxCommandLink/testListenerAndNavigation.xhtml @11,84 <f:actionListener> Parent is not of type ActionSource, type is: org.richfaces.component.html.HtmlCommandLink@1751a9e
com.sun.faces.facelets.tag.jsf.core.ActionListenerHandler.apply(ActionListenerHandler.java:188)
javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:120)
org.ajax4jsf.facelets.tag.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:57)
com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:160)
javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
com.sun.faces.facelets.tag.ui.DefineHandler.applyDefinition(DefineHandler.java:99)
com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:174)
com.sun.faces.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:392)
com.sun.faces.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:363)
com.sun.faces.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:104)
javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:120)
org.ajax4jsf.facelets.tag.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:57)
com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:160)
javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
com.sun.faces.facelets.tag.ui.DefineHandler.applyDefinition(DefineHandler.java:99)
com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:174)
com.sun.faces.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:392)
com.sun.faces.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:363)
com.sun.faces.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:104)
javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:120)
org.ajax4jsf.facelets.tag.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:57)
com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:160)
javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
javax.faces.view.facelets.DelegatingMetaTagHandler.applyNextHandler(DelegatingMetaTagHandler.java:120)
org.ajax4jsf.facelets.tag.BehaviorsAddingComponentHandlerWrapper.applyNextHandler(BehaviorsAddingComponentHandlerWrapper.java:57)
com.sun.faces.facelets.tag.jsf.ComponentTagHandlerDelegateImpl.apply(ComponentTagHandlerDelegateImpl.java:160)
javax.faces.view.facelets.DelegatingMetaTagHandler.apply(DelegatingMetaTagHandler.java:114)
javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:89)
javax.faces.view.facelets.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:94)
com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:79)
com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:304)
com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:363)
com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:342)
com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:196)
com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:151)
com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:89)
com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:79)
com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:304)
com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:363)
com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:342)
com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:196)
com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:151)
com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:89)
com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:79)
com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:304)
com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:363)
com.sun.faces.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:342)
com.sun.faces.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:196)
com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:151)
com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:89)
com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:79)
com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:148)
com.sun.faces.application.view.FaceletViewHandlingStrategy.buildView(FaceletViewHandlingStrategy.java:734)
com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:96)
com.sun.faces.lifecycle.Phase.doPhase(Phase.java:97)
com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:135)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:309)
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months
[JBoss JIRA] Created: (RF-8602) ExtendedDataTable: row height strechted to 100% of the table height
by Stéphane Daviet (JIRA)
ExtendedDataTable: row height strechted to 100% of the table height
-------------------------------------------------------------------
Key: RF-8602
URL: https://jira.jboss.org/jira/browse/RF-8602
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 3.3.2.GA
Environment: Firefox 3.6.3 on Ubuntu Linux 9.10
Reporter: Stéphane Daviet
ExtendedDataTable row height is wrong with RichFaces 3.3.2.GA.
Instead of having fixed row height and blank space if not enough rows to fill the entire table height, the rows are stretched to fill the entire table height. For instance with an extended data table of 500px height and 2 rows, each row is approximately 250px height (minus the height of the header, borders and cell spacing).
Not having this behavior with 3.3.1.GA.
Also talked in http://community.jboss.org/message/66273, but nor the proposed workarounds, neither the statement of Ilya Shaikovsky that it's fixed on 3.3.2.SR1 seems working with 3.3.2.GA.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 7 months