Methods calling in session bean
There are two ways to call a method from session bean .
One is client look for each bean and call methods from the beans one after other
Other is bean itself looks for the methods in other beans and then client only calls the reqired method.
Which of this is the right appraoch and when to use them

