Warning JSF1095 while using a h:commandLink inside a rich:dataTable

孤街醉人 提交于 2019-12-04 18:43:14

This problem is related to the <rich:dataScroller> which you've there in your table footer. When I removed it, everything works as expected.

I checked around in RichFaces issue tracker if this bug is known, but it apparently isn't. You may want to consider to repost a minimal example of your code as you've in the question (several columns, headers and attributes are unnecessary and makes code unnecessarily large, so trim them away) in a new issue report over there.

after long time debugging, I've found a 100% working solution for my case. Glassfish chunks the output stream and each chunk is commited separately. But after the first chunk is commited, the ELFlash implementation thinks, the whole response is commited and decides to fail...

After disabling chunking in glassfish, all problems are gone. http://www.dirkreske.de/jsf1095-with-glassfish-3-1/

Greets Dirk

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!