httpError: The Http Transport returned a 0 status code
825746Dec 21 2010 — edited Dec 24 2010I have integrated ajax in my JSF 2.0 page together with valueChangeListener. And the application works in Firefox and Opera fine, but not in Google Chrome and IE 8 it returns errror.
Here is the part of form which causes the error:
<h:selectOneRadio id="tenantId" onchange="submit()"
value="#{contractBean.tenantTypeId}"
valueChangeListener="#{contractBean.tenantTypeChanged}">
<f:selectItems value="#{contractBean.tenantTypes}"/>
<f:ajax event="click" render="tenantId tenantPanel" />
</h:selectOneRadio>
httpError: The Http Transport returned a 0 status code. This is usually the result of mixing ajax and full requests. This is usually undesired, for both performance and data integrity reasons.
What should I do to fix this error? I need ajax in this page and I want to use it together with JSF.
Edited by: user13179176 on Dec 21, 2010 10:56 AM
Edited by: user13179176 on Dec 21, 2010 10:57 AM
Edited by: user13179176 on Dec 21, 2010 11:02 AM