How to get sender's WindowsIdentity from recieved msmq message?
I use msmq as a transport and a Security Appplication Block with Authorization Rule Provider for operation's authorization. I need WindowsPrincipal and not GenericPrincipal because rules granted to active directory user's groups and not to specific users. Message.SenderId can be converted to SecurityIdentifier but I did not find how to get WindowsIdentity from it.
void AuthorizeOperation(Message message)
{
// get sender windows principal
WindowsPrincipal principal = ... ???
// extract operation name from message body
string operation = ...
AuthorizationFactory.GetAuthorizationProvider().Authorize(principal, operation);
}
I have found a workaround but not sure that it is a right solution. Instead of WindowsPrincipal I create a GenericPrincipal and inject user's authorization groups recieved from active directory.