문제

I have a strange problem in my application with Seam (2.1) and Internet explorer.

With Firefox, all work fine. I have a bean in conversation scope which is used in my page. When I go on my page, this bean is created, and when I made an action on my page (submit a form for example), the bean already exists and all these data are present.

But in Internet explorer (7 and 8), the bean is created at each call of the page. So I lost every data in this bean.

Someone can help me ?

Thanks.

도움이 되었습니까?

해결책

I have found the problem and the solution:

I had a h:form AND a a4j:form mixed like this (in summary):

<h:form>
<a4j:form>
</a4j:form>
</h:form>

So the generated html contains two form imbricated. On firefox, no problem but IE doesn't like it.

I delete the a4j:form and all work fine.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top