Hi
Does JBoss 2.4.1 default use Local Interface even you specified an
remove interface?
I met a bug and I suspact that was the case, and I did a little test
like this.

=============== my Code ===================
                IBlsModel model = m_modelHome.findByPrimaryKey(new
Long(wValue.getModelPK()));
                HashMap variables = model.getVariables();
                //Testing
                VariableValue vv = (VariableValue)
variables.get("varData");
                System.out.println("Before value: " + vv.getValue());
                vv.setValue("HUMAN/buyer2");    //Set to sth else in
local copy
                variables = model.getVariables();       //Get another
version from remote
                //Testing
                vv = (VariableValue) variables.get("varData");  //see if
it has changed
                System.out.println("After value: " + vv.getValue());
================ end =============

And sure enough the second print out is "HUMAN/buyer2";


thanks
david

_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to