Hi Ramdas,
In Stateful session bean, client state can be stored in instance variable.
When client will invoke the create method in beanhome, it will send client specific details in argument and it can be stored in instance variable of beanclass create method. That���s why we use create method with argument in stateful session bean.make sure that beanhome and beanclass create methods map each other (create method with same arguments)and you are storing that client specific detail in instance variable of your bean class.By this way it will process the request for that particular client.