Why are all the SLSB in the remoting examples have SESSION scope? I thought SLSB allways live in the STATELESS scope?
Extract of progressbar example:
@Stateless
@Name("progressBarAction")
@Scope(SESSION)
@Interceptors(SeamInterceptor.class)
public class ProgressBarAction implements ProgressBarLocal {
...
}
You're right, they shouldn't be there. I've removed them in CVS - thanks for pointing it out.