I am trying to implement an actionListener with 
@Stateless
@Name("neLogic")
@Conversational(ifNotBegunOutcome = "ne.List")
@Interceptors(SeamInterceptor.class)

public class NeLogicAction implements NeLogic, Serializable {
.....
 @In( required = false,scope =ScopeType.CONVERSATION)
    @Out(required = false,scope =ScopeType.CONVERSATION)
    private Ne neBean;
......
 public void processValueChange(ValueChangeEvent valueChangeEvent) throws 
AbortProcessingException {

        System.out.println("nebean name is " + neBean.getName());
        System.out.println("value changed");
        neBean.setCode("010101010101");
        
    }
...
}

The method call and page  reftesh is ok but the problem is that when I am 
changing the entityBean in this class, it has no effect on the page.  

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3936257#3936257

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3936257


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to