vijaybihari
Oct 27th, 2009, 05:15 AM
Hi ,
I have saved during Spring mvc one object in session(ABC). and now I want to use this object in web flow
I am able map object from session to the conversation object using this command in action class in one flow
ABC abc=(ABC)context.getExternalContext().getGlobalSes sionMap().get("ABC");
context.getConversationScope().put("abc", abc);
Now when i am moving from one flow to other and trying to retrive the abc object using conversation scope I am getting NULL value
ABC abc=(ABC)context.getConversationScope().get("abc");
abc.getabc();
Can anybody help me out of how to use conversation Scope
am I doing something wrong?
I have saved during Spring mvc one object in session(ABC). and now I want to use this object in web flow
I am able map object from session to the conversation object using this command in action class in one flow
ABC abc=(ABC)context.getExternalContext().getGlobalSes sionMap().get("ABC");
context.getConversationScope().put("abc", abc);
Now when i am moving from one flow to other and trying to retrive the abc object using conversation scope I am getting NULL value
ABC abc=(ABC)context.getConversationScope().get("abc");
abc.getabc();
Can anybody help me out of how to use conversation Scope
am I doing something wrong?