Hi we have a service that updates some user information. the service workes fine when called internally, but when called from a web API (We are sending the full context in the request) in the post and from the api controller we call our service method that contains
person = _loggedInPersonModelBuilder.GetPerson() eg “_securityToken.IsAnonymousUser && _securityToken.Person”;
The person is always anonymous, writing to the session workes fine, so the session data seams to be there. How can I get the user?