Does IronRDP support Azure AD? #710
-
Does IronRDP support Azure AD? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No, and there are several challenges involved to make it work that aren't specific to IronRDP. If we're talking of the RDP web client, it is literally impossible at this point because none of the two possible protocols (PKU2U and Entra ID SSO) have only been designed with desktop RDP clients in mind. It's weird to say that a web-based login can't be done from a web browser, but that's unfortunately the case: the Entra ID SSO can only have a redirect URI registered to a native broker executable in Windows. If we're talking of a native client, there are some things that could be done, and in theory, with enough effort, it can be done. However, there's a lot of work. The PKU2U approach requires the client to be Entra ID joined to the same tenant as the destination server, and the most important bits to talk to Azure are not documented. The Entra ID SSO approach would require the integration of a native web view in which we can intercept the redirect URI before it is forwarded to the built-in broker executable in Windows. Short answer: no |
Beta Was this translation helpful? Give feedback.
No, and there are several challenges involved to make it work that aren't specific to IronRDP.
If we're talking of the RDP web client, it is literally impossible at this point because none of the two possible protocols (PKU2U and Entra ID SSO) have only been designed with desktop RDP clients in mind. It's weird to say that a web-based login can't be done from a web browser, but that's unfortunately the case: the Entra ID SSO can only have a redirect URI registered to a native broker executable in Windows.
If we're talking of a native client, there are some things that could be done, and in theory, with enough effort, it can be done. However, there's a lot of work. The PKU2U approach requi…