On Jul 28, 2011, at 3:12 AM, Carl-Eric Menzel wrote: > IModel<User> userModel = model(fromService(userEJB.loadUser(42)));
Not sure if this is a typo in your example, but wouldn't this mean that (the real, non-proxied) userEJB.loadUser is invoked when the model is constructed? Perhaps this syntax is correct: model(fromService(userEJB).loadUser(42)); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
