I want to access the user profile object after authentication, but it returns null. I need to call the user service again to get the user profile object which doesnot returns the session id now.
//User object has session but no profile
User userobj = userService.authenticate(user,passwd);
//User object having profile but no session id
userService.getUser(userName);
Is there any way I can have th eprofile object and session in single service call.
Regards,