Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using EJB-3 & IceFaces in my application on JBoss. On refreshing the page, the data gets lost & all fields becomes blank.

In another similar application where struts is used, no such problem occurs. Is this problem with IceFaces(View-handler/Render-response etc).

share|improve this question

2 Answers

This is typical when the HTTP request concerns a GET request and the bean is request scoped. The struts application was apparently using a session scoped bean.

share|improve this answer
In Struts+EJB application, in request scoped bean also, values remains as it was before refreshing page. In application built with only IceFaces, there is no problem. But I am using here IceFaces+EJB3, not getting any clue about it. – Nayan Wadekar Jul 17 '10 at 9:56

If you need to retain data through a page refresh in request scope then something is wrong with your program logic.

By its very nature request scope would only have available to it data within that scope .. which means that the data is lost each time a new request is made.

Is the other application you are referring to adding something into the request scope when it constructs the request?

share|improve this answer
No, there is no problem on refresh in application built only in IceFaces, but fields become blank in another application built in IceFcaes+EJB-3. Both have similar strucure for view layer. – Nayan Wadekar Mar 12 '11 at 4:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.