[JBoss JIRA] (RF-13156) Custom sorting on extended datatable not working.
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13156?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-13156:
-------------------------------
Labels: extendedDataTable sorting waiting_on_user (was: extendedDataTable sorting)
> Custom sorting on extended datatable not working.
> -------------------------------------------------
>
> Key: RF-13156
> URL: https://issues.jboss.org/browse/RF-13156
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Affects Versions: 4.3.3
> Environment: Oracle Glassfish 3.1.2 - JEE 6 Full Profile
> Reporter: Fabio Turizo
> Labels: extendedDataTable, sorting, waiting_on_user
>
> Custom sorting on a extended datatable is not working well. With a extended data table configured with this layout:
> {code:xml}
> <html xmlns="http://www.w3.org/1999/xhtml"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:a4j="http://richfaces.org/a4j"
> xmlns:rich="http://richfaces.org/rich">
> <h:head>
> <title>Titulo</title>
> </h:head>
> <h:body>
> <h:form>
> <h:panelGrid cellpadding="5" cellspacing="5" columns="4" width="100%">
> <f:facet name="footer">
> <h:panelGrid cellspacing="10" columns="2" width="80%">
> <a4j:commandButton actionListener="#{consultaFactibilidad.consultarDocumentos}"
> execute="this"
> render="documentos"
> value="Buscar"
> styleClass="boton"/>
> </h:panelGrid>
> </f:facet>
> </h:panelGrid>
> <rich:extendedDataTable var="documento"
> value="#{consultaFactibilidad.documentos}"
> id="documentos">
> <rich:column id="formato" width="200px"
> sortBy="#{documento.formato.nombreCalificado}"
> sortType="custom" sortOrder="#{controlOrdenTablas.orden}">
> <f:facet name="header">
> <a4j:commandLink execute="@this"
> action="#{controlOrdenTablas.ordenar}"
> render="documentos">
> <h:outputLabel value="Formato" />
> </a4j:commandLink>
> </f:facet>
> <h:outputText value="#{documento.formato.nombreCalificado}"/>
> </rich:column>
> </rich:extendedDataTable>
> </h:form>
> </h:body>
> </html>{code}
> When the user clicks on the link for the only column on the table the table sorts correctly ONLY the first time, the next click simply doesn't sort the data. No error messages on the server log, no error messages on a a4j:log either. The next time stops working completely. This only happens after the value collection is retrieved on the action listener {code}#{consultaFactibilidad.consultarDocumentos}{code} is called. When the data is retrieved before the page load, say on the postconstruct event listener on the backing bean, then the sort works correctly all times. Finally this ONLY happens with the extended datatable. It doesn't happen with a simple datatable.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13156) Custom sorting on extended datatable not working.
by Fabio Turizo (JIRA)
Fabio Turizo created RF-13156:
---------------------------------
Summary: Custom sorting on extended datatable not working.
Key: RF-13156
URL: https://issues.jboss.org/browse/RF-13156
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Affects Versions: 4.3.3
Environment: Oracle Glassfish 3.1.2 - JEE 6 Full Profile
Reporter: Fabio Turizo
Custom sorting on a extended datatable is not working well. With a extended data table configured with this layout:
{code:xml}
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<h:head>
<title>Titulo</title>
</h:head>
<h:body>
<h:form>
<h:panelGrid cellpadding="5" cellspacing="5" columns="4" width="100%">
<f:facet name="footer">
<h:panelGrid cellspacing="10" columns="2" width="80%">
<a4j:commandButton actionListener="#{consultaFactibilidad.consultarDocumentos}"
execute="this"
render="documentos"
value="Buscar"
styleClass="boton"/>
</h:panelGrid>
</f:facet>
</h:panelGrid>
<rich:extendedDataTable var="documento"
value="#{consultaFactibilidad.documentos}"
id="documentos">
<rich:column id="formato" width="200px"
sortBy="#{documento.formato.nombreCalificado}"
sortType="custom" sortOrder="#{controlOrdenTablas.orden}">
<f:facet name="header">
<a4j:commandLink execute="@this"
action="#{controlOrdenTablas.ordenar}"
render="documentos">
<h:outputLabel value="Formato" />
</a4j:commandLink>
</f:facet>
<h:outputText value="#{documento.formato.nombreCalificado}"/>
</rich:column>
</rich:extendedDataTable>
</h:form>
</h:body>
</html>{code}
When the user clicks on the link for the only column on the table the table sorts correctly ONLY the first time, the next click simply doesn't sort the data. No error messages on the server log, no error messages on a a4j:log either. The next time stops working completely. This only happens after the value collection is retrieved on the action listener {code}#{consultaFactibilidad.consultarDocumentos}{code} is called. When the data is retrieved before the page load, say on the postconstruct event listener on the backing bean, then the sort works correctly all times. Finally this ONLY happens with the extended datatable. It doesn't happen with a simple datatable.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-12853) rich:inplaceSelect: JS API bugs
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12853?page=com.atlassian.jira.plugin.s... ]
Brian Leathem resolved RF-12853.
--------------------------------
Labels: needs-qe (was: )
Resolution: Done
Fired the change event from the setValue method
> rich:inplaceSelect: JS API bugs
> -------------------------------
>
> Key: RF-12853
> URL: https://issues.jboss.org/browse/RF-12853
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input
> Environment: JBoss AS 7.1,
> FF 18, Chrome 24
> RichFaces 4.3.2-SNAPSHOT
> Reporter: Jiří Štefek
> Assignee: Brian Leathem
> Labels: needs-qe
> Fix For: 4.3.4
>
>
> The function hidePopup() does not exist.
> Error in console:
> {code}
> RichFaces.$(...).hidePopup is not a function
> {code}
> The function setValue() is not working.
> Error in console:
> {code}
> TypeError: item is null
> InplaceSelect.js line 217
> var clientSelectItem = item.data('clientSelectItem');
> {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
12 years, 4 months
[JBoss JIRA] (RF-12761) The first ajax request of a conditionally rendered r:commandButton doesn´t work
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12761?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12761:
-------------------------------
Summary: The first ajax request of a conditionally rendered r:commandButton doesn´t work (was: The first ajax request of a conditionally rendered r:commandButton don´t work)
> The first ajax request of a conditionally rendered r:commandButton doesn´t work
> -------------------------------------------------------------------------------
>
> Key: RF-12761
> URL: https://issues.jboss.org/browse/RF-12761
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-a4j-core
> Affects Versions: 4.3.0.CR2
> Environment: Windows 7 - IE9
> Mojarra 2.1.17
> Richfaces 4.3.CR2
> Reporter: Adelmo Erick santos
> Labels: testcase_provided
> Fix For: 5-Tracking
>
>
> After execute a ajax request with jsFunction and render a rich:panel or a rich:popup and try to invoke a4j:commandButton within this rich:panel rendered, the first request doesn´t work.
> View:
> {code}
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml"
> xmlns:rich="http://richfaces.org/rich"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:ui="http://java.sun.com/jsf/facelets"
> xmlns:a4j="http://richfaces.org/a4j">
>
> <h:head>
> </h:head>
> <h:body>
> <h:form>
> <a4j:jsFunction name="jsFunctionTest" actionListener="#{testBean.methodA}" render=":panel"/>
> <h:commandButton value="Test">
> <f:ajax onevent="jsFunctionTest()"/>
> </h:commandButton>
> </h:form>
>
> <rich:panel id="panel" >
> <h:form >
> <a4j:commandButton value="OK" actionListener="#{testBean.methodB}" />
> </h:form>
> </rich:panel>
> </h:body>
> </html>
> {code}
> Bean:
> {code}
> import javax.faces.bean.ManagedBean;
> import javax.faces.bean.SessionScoped;
> import javax.faces.event.ActionEvent;
> @SessionScoped
> @ManagedBean(name="testBean")
> public class TestMBean {
> public void methodA(ActionEvent event) {
> System.out.println("TestMBean.methodA()");
> }
>
> public void methodB(ActionEvent event) {
> System.out.println("TestMBean.methodB()");
> }
> }
> {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
12 years, 4 months
[JBoss JIRA] (RF-12761) The first ajax request of a conditionally rendered r:commandButton don´t work
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-12761?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-12761:
-------------------------------
Summary: The first ajax request of a conditionally rendered r:commandButton don´t work (was: The first ajax request after a jsFunction don´t work)
> The first ajax request of a conditionally rendered r:commandButton don´t work
> -----------------------------------------------------------------------------
>
> Key: RF-12761
> URL: https://issues.jboss.org/browse/RF-12761
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-a4j-core
> Affects Versions: 4.3.0.CR2
> Environment: Windows 7 - IE9
> Mojarra 2.1.17
> Richfaces 4.3.CR2
> Reporter: Adelmo Erick santos
> Labels: testcase_provided
> Fix For: 5-Tracking
>
>
> After execute a ajax request with jsFunction and render a rich:panel or a rich:popup and try to invoke a4j:commandButton within this rich:panel rendered, the first request doesn´t work.
> View:
> {code}
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml"
> xmlns:rich="http://richfaces.org/rich"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:ui="http://java.sun.com/jsf/facelets"
> xmlns:a4j="http://richfaces.org/a4j">
>
> <h:head>
> </h:head>
> <h:body>
> <h:form>
> <a4j:jsFunction name="jsFunctionTest" actionListener="#{testBean.methodA}" render=":panel"/>
> <h:commandButton value="Test">
> <f:ajax onevent="jsFunctionTest()"/>
> </h:commandButton>
> </h:form>
>
> <rich:panel id="panel" >
> <h:form >
> <a4j:commandButton value="OK" actionListener="#{testBean.methodB}" />
> </h:form>
> </rich:panel>
> </h:body>
> </html>
> {code}
> Bean:
> {code}
> import javax.faces.bean.ManagedBean;
> import javax.faces.bean.SessionScoped;
> import javax.faces.event.ActionEvent;
> @SessionScoped
> @ManagedBean(name="testBean")
> public class TestMBean {
> public void methodA(ActionEvent event) {
> System.out.println("TestMBean.methodA()");
> }
>
> public void methodB(ActionEvent event) {
> System.out.println("TestMBean.methodB()");
> }
> }
> {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
12 years, 4 months
[JBoss JIRA] (RF-13114) PoC: port RichFaces 4.5 UI Components to work with RichFaces 5
by Michal Petrov (JIRA)
[ https://issues.jboss.org/browse/RF-13114?page=com.atlassian.jira.plugin.s... ]
Michal Petrov commented on RF-13114:
------------------------------------
I think there might also be conflicts in {{RichFaces.calendarUtils}}, {{calendarTemplates}}, {{csv}} and {{utils}}.
Concerning the Java classes there are about 120 conflicting FQNs but the only one class that differs considerably between RF4.5 and RF5 is {{org.richfaces.javascript.ClientScriptServiceImpl}}
> PoC: port RichFaces 4.5 UI Components to work with RichFaces 5
> --------------------------------------------------------------
>
> Key: RF-13114
> URL: https://issues.jboss.org/browse/RF-13114
> Project: RichFaces
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Reporter: Lukáš Fryč
> Assignee: Michal Petrov
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 1 week
> Remaining Estimate: 1 week
>
> * open branches in own fork of
> ** richfaces5 (master)
> ** richfaces-components (4.5.x)
> ** richfaces-showcase (master)
> * modifications required
> ** change RF5 namespace -> http://richfaces.org/core
> ** change parents/bom in components 4.5 to depend on RF5 framework / build-bom
> *** remove all dependencies on 4.3.x (4.3.3-SNAPSHOT)
> ** change Java API of Components 4.5 to depend on RF5 Core API
> ** use the RF5 and RF4.5 UI Components in Showcase branch (4.5.0-SNAPSHOT)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13155) Unable to trigger hidden FileUpload in IE with an associated Label: missing Id on generated <input type=“file“>
by Benoit Pflieger (JIRA)
Benoit Pflieger created RF-13155:
------------------------------------
Summary: Unable to trigger hidden FileUpload in IE with an associated Label: missing Id on generated <input type=“file“>
Key: RF-13155
URL: https://issues.jboss.org/browse/RF-13155
Project: RichFaces
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.3.2
Environment: Internet Explorer 8
Reporter: Benoit Pflieger
Priority: Minor
Fix For: 4.3.4
A hidden FileUpload was triggered by clicking an associated label to the generated tag <input type=“file“>.
That's the security workaround to trigger an <input type=“file“> under Internet Explorer.
It worked with Richfaces 3.3.
This workaround can't be achieved anymore with Richfaces 4.3.2 because the <input type=“file“> is only generated without the attribute "id".
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13151) Number of Data Fields in PopUpPanel appear to stop events for DataScroller and sorting of extendedDataTable
by Deb Owsley (JIRA)
[ https://issues.jboss.org/browse/RF-13151?page=com.atlassian.jira.plugin.s... ]
Deb Owsley commented on RF-13151:
---------------------------------
Brian, Thanks for all your help. It appears we may have something "else" going wrong that we can't tell what it is. We are new to Rich Faces/JSF stuff. And I am starting to wonder if an error is happening in the background that is stopping processing and we don't ever see the error....
For this Issue.
We have that tabbed Panel, and one some pages the popup panel works fine, and on others they do not. The code is about the same except the fields are different.
The one I wrote this ticket up for is like this:
<code>
<a4j:region id="addEquipmentRegion" status="equipmentWaitStatus">
<h:form id ="addEquipmentForm">
<rich:popupPanel id="addEquipmentModPanel" domElementAttachment="form" autosized="true" width="600" height="400">
<f:facet name="header"><h:outputText value="Add Equipment"/></f:facet>
<f:facet name="controls">
<h:panelGrid>
<h:graphicImage value="img/close_modal.png" styleClass="hidelink" id="hideAddEquipmentModPanel">
<rich:componentControl target="addEquipmentModPanel" operation="hide" event="onclick"/>
</h:graphicImage>
</h:panelGrid>
</f:facet>
<rich:panel id="addEquipmentPanel">
<s:decorate id="equipmentBaseIDDecoration" template="layout/edit.xhtml">
<ui:define name="label">Base ID</ui:define>
<rich:select id="addBaseID" enableManualInput="true" required="true"
value="#{equipmentHome.instance.baseID}">
<f:selectItems value="#{entityAttribute.baseIDs}"/>
</rich:select>
</s:decorate>
......
<div class="actionButtons">
<a4j:commandLink align="left" value="Add" onclick="persistEquipmentData(); setTimeout(function(){refreshEquipmentData()}, 500);"
oncomplete="if (#{facesContext.maximumSeverity==null}) #{rich:component('addEquipmentModPanel')}.hide(); "
reRender="true" />
nbsp;nbsp;
<a4j:commandLink align="left" value="Cancel"
onclick="#{rich:component('addEquipmentModPanel')}.hide();return false;" />
</div>
<a4j:jsFunction name="persistEquipmentData" action="#{equipmentHome.persist}" />
<a4j:jsFunction name="refreshEquipmentData" action="#{equipmentList.refresh}" execute="equipmentTable" limitRender="true" render="equipmentTable" />
</rich:popupPanel>
</h:form>
</a4j:region>
</code>
And now it will allow me to have all my fields in the popup. I think you can clal this problem "done". :-)
Can you give me a hint thought.... how do I, or can I even, put the web application in "debug mode" and see what events are firing, where they may be getting hung up, etc??
If I get an error, I do get the Web Console, but I am not sure what I am seeing other than the "error". But I am curious to see why my application stops processing at other areas for no apparent reason.
For example, the symptom I was seeing for this problem has manifested itself on the next tab. But this time in the ExtendedDataTable. If I remove all fields with a InplaceINput Field, then my paging and sorting works. But as soon as I add one field with an inplceInput, it all stops working again...
Thanks!!
> Number of Data Fields in PopUpPanel appear to stop events for DataScroller and sorting of extendedDataTable
> -----------------------------------------------------------------------------------------------------------
>
> Key: RF-13151
> URL: https://issues.jboss.org/browse/RF-13151
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Reporter: Deb Owsley
> Labels: waiting_on_user
>
> In my rich:popupPanel, I have 10 elements, as follows:
> {code}
> <a4j:region id="addEquipmentRegion" status="equipmentWaitStatus">
> <rich:popupPanel id="addEquipmentModPanel" autosized="true" width="600" height="400">
> <f:facet name="header"><h:outputText value="Add Equipment"/></f:facet>
> <f:facet name="controls">
> <h:panelGrid>
> <h:graphicImage value="img/close_modal.png" styleClass="hidelink" id="hideAddEquipmentModPanel">
> <rich:componentControl target="addEquipmentModPanel" operation="hide" event="onclick"/>
> </h:graphicImage>
> </h:panelGrid>
> </f:facet>
> <rich:panel id="addEquipmentPanel">
>
> <s:decorate id="equipmentBaseIDDecoration" template="layout/edit.xhtml">
> <ui:define name="label">Base ID</ui:define>
> <rich:select id="addBaseID" enableManualInput="true" required="true"
> value="#{equipmentHome.instance.baseID}">
> <f:selectItems value="#{entityAttribute.baseIDs}"/>
> </rich:select>
> </s:decorate>
> .....
> {code}
> This popup panel is called from a button on one of my pages that contains a data scroller and an extendedDataTable.
> If I add an 11th element inside of my PopUpPanel, then all data scrolling and sorting in the extendedDataTable stops working.
> I have removed different elements from the popup and it doesn't matter. As long as I only have 10 all events fire. As soon as there are 11, everything stops.
> I get absolutely no errors in my jboss console.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months
[JBoss JIRA] (RF-13154) a4j:push fails with CNFE for org.apache.coyote.http11.upgrade.UpgradeInbound on latest EAP 6
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13154?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13154:
------------------------------------
Scratch that, jbossweb 2.1.1.GA doesn't contain that class either:
http://anonsvn.jboss.org/repos/jbossweb/tags/JBOSSWEB_2_1_1_GA/java/org/a...
> a4j:push fails with CNFE for org.apache.coyote.http11.upgrade.UpgradeInbound on latest EAP 6
> --------------------------------------------------------------------------------------------
>
> Key: RF-13154
> URL: https://issues.jboss.org/browse/RF-13154
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Affects Versions: 4.3.3
> Environment: EAP 6.1.1.ER7
> Reporter: Ken Finnigan
>
> When accessing a4j:push example in showcase on EAP 6.1.1.ER7 the network tab of the developer console in Chrome shows failed network attempts for richfaces push and the following exception in the server logs:
> {code}
> 15:21:29,295 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/showcase].[AutoRegisteredPushServlet]] (http-/127.0.0.1:8080-2) JBWEB000236: Servlet.service() for servlet AutoRegisteredPushServlet threw exception: java.lang.ClassNotFoundException: org.apache.coyote.http11.upgrade.UpgradeInbound from [Module "deployment.richfaces-showcase-4.3.3.Final-jbas71.war:main" from Service Module Loader]
> at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:196) [jboss-modules.jar:1.2.2.Final-redhat-1]
> at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:444) [jboss-modules.jar:1.2.2.Final-redhat-1]
> at org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:432) [jboss-modules.jar:1.2.2.Final-redhat-1]
> at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:374) [jboss-modules.jar:1.2.2.Final-redhat-1]
> at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:119) [jboss-modules.jar:1.2.2.Final-redhat-1]
> at org.atmosphere.container.Tomcat7AsyncSupportWithWebSocket.service(Tomcat7AsyncSupportWithWebSocket.java:59) [atmosphere-runtime-1.0.10.jar:1.0.10]
> at org.atmosphere.cpr.AtmosphereFramework.doCometSupport(AtmosphereFramework.java:1370) [atmosphere-runtime-1.0.10.jar:1.0.10]
> at org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:293) [atmosphere-runtime-1.0.10.jar:1.0.10]
> at org.atmosphere.cpr.AtmosphereServlet.doGet(AtmosphereServlet.java:279) [atmosphere-runtime-1.0.10.jar:1.0.10]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:734) [jboss-servlet-api_3.0_spec-1.0.2.Final-redhat-1.jar:1.0.2.Final-redhat-1]
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:847) [jboss-servlet-api_3.0_spec-1.0.2.Final-redhat-1.jar:1.0.2.Final-redhat-1]
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:295) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:214) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.ocpsoft.rewrite.servlet.RewriteFilter.doFilter(RewriteFilter.java:172) [rewrite-servlet-1.0.4.Final.jar:1.0.4.Final]
> at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:246) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:214) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:149) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmCloserValve.java:50) [jboss-as-jpa-7.2.1.Final-redhat-10.jar:7.2.1.Final-redhat-10]
> at org.jboss.as.jpa.interceptor.WebNonTxEmCloserValve.invoke(WebNonTxEmCloserValve.java:50) [jboss-as-jpa-7.2.1.Final-redhat-10.jar:7.2.1.Final-redhat-10]
> at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:169) [jboss-as-web-7.2.1.Final-redhat-10.jar:7.2.1.Final-redhat-10]
> at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:145) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:97) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:102) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:336) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:653) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:920) [jbossweb-7.2.2.Final-redhat-1.jar:7.2.2.Final-redhat-1]
> at java.lang.Thread.run(Thread.java:724) [rt.jar:1.7.0_25]
> {code}
> Running the exact same showcase example war on EAP 6.1.0.GA works fine.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 4 months