public Profile getProfile(String userId) {
createContext();
ProfileService profileService = getProfileService();
Profile profile = null;
try {
profile = profileService.getProfile(userId);
} catch (ProfileServiceException pse) {
Assert.fail("Error get profile: " + pse.getMessage());
pse.printStackTrace();