// note exam id and exam text are initialized from exam backing bean which is (request scoped) and in the same time they are traveling in each request @ManagedBean(name = "question")//Constants.QUESTION) @RequestScoped public class QuestionBean { private int examId; private String examText; @ManagedProperty(name="exam", value="#{exam}") private ExamBean exam; // getters and setters @PostConstruct public void init() { examId = exam.getExamId(); examText=exam.getExamText(); } } ------------------------XHTML page --------------------------------------- <?xml version="1.0"?> <f:view xmlns="http://ww...