Instrukcje: Badanie kontekstu zabezpieczeń
Podczas programowania usług Windows Communication Foundation (WCF) kontekst zabezpieczeń usługi umożliwia określenie szczegółów dotyczących poświadczeń klienta i oświadczeń używanych do uwierzytelniania w usłudze. Odbywa się to przy użyciu właściwości ServiceSecurityContext klasy .
Można na przykład pobrać tożsamość bieżącego klienta przy użyciu PrimaryIdentity właściwości lub WindowsIdentity . Aby określić, czy klient jest anonimowy, użyj IsAnonymous właściwości .
Możesz również określić, jakie oświadczenia są wykonywane w imieniu klienta, iterując przez zbieranie oświadczeń we AuthorizationContext właściwości.
Aby uzyskać bieżący kontekst zabezpieczeń
- Uzyskaj dostęp do właściwości Current statycznej, aby uzyskać bieżący kontekst zabezpieczeń. Zapoznaj się z dowolnymi właściwościami bieżącego kontekstu z odwołania.
Aby określić tożsamość obiektu wywołującego
- Wydrukuj wartość właściwości PrimaryIdentity i WindowsIdentity .
Aby przeanalizować oświadczenia obiektu wywołującego
Zwróć bieżącą AuthorizationContext klasę. Użyj właściwości , Current aby zwrócić bieżący kontekst zabezpieczeń usługi, a następnie zwrócić
AuthorizationContext
właściwość przy użyciu AuthorizationContext właściwości .Przeanalizuj kolekcję ClaimSet obiektów zwracanych przez ClaimSets właściwość AuthorizationContext klasy.
Przykład
Poniższy przykład wyświetla wartości WindowsIdentity właściwości i PrimaryIdentity bieżącego kontekstu zabezpieczeń oraz ClaimType właściwość, wartość zasobu oświadczenia oraz Right właściwość każdego oświadczenia w bieżącym kontekście zabezpieczeń.
// Run this method from within a method protected by the PrincipalPermissionAttribute
// to see the security context data, including the primary identity.
public void WriteServiceSecurityContextData(string fileName)
{
using (StreamWriter sw = new StreamWriter(fileName))
{
// Write the primary identity and Windows identity. The primary identity is derived from
// the credentials used to authenticate the user. The Windows identity may be a null string.
sw.WriteLine("PrimaryIdentity: {0}", ServiceSecurityContext.Current.PrimaryIdentity.Name);
sw.WriteLine("WindowsIdentity: {0}", ServiceSecurityContext.Current.WindowsIdentity.Name);
sw.WriteLine();
// Write the claimsets in the authorization context. By default, there is only one claimset
// provided by the system.
foreach (ClaimSet claimset in ServiceSecurityContext.Current.AuthorizationContext.ClaimSets)
{
foreach (Claim claim in claimset)
{
// Write out each claim type, claim value, and the right. There are two
// possible values for the right: "identity" and "possessproperty".
sw.WriteLine("Claim Type = {0}", claim.ClaimType);
sw.WriteLine("\t Resource = {0}", claim.Resource.ToString());
sw.WriteLine("\t Right = {0}", claim.Right);
}
}
}
}
' Run this method from within a method protected by the PrincipalPermissionAttribute
' to see the security context data, including the primary identity.
Public Sub WriteServiceSecurityContextData(ByVal fileName As String)
Dim sw As New StreamWriter(fileName)
Try
' Write the primary identity and Windows identity. The primary identity is derived from
' the credentials used to authenticate the user. The Windows identity may be a null string.
sw.WriteLine("PrimaryIdentity: {0}", ServiceSecurityContext.Current.PrimaryIdentity.Name)
sw.WriteLine("WindowsIdentity: {0}", ServiceSecurityContext.Current.WindowsIdentity.Name)
sw.WriteLine()
' Write the claimsets in the authorization context. By default, there is only one claimset
' provided by the system.
Dim claimset As ClaimSet
For Each claimset In ServiceSecurityContext.Current.AuthorizationContext.ClaimSets
Dim claim As Claim
For Each claim In claimset
' Write out each claim type, claim value, and the right. There are two
' possible values for the right: "identity" and "possessproperty".
sw.WriteLine("Claim Type = {0}", claim.ClaimType)
sw.WriteLine(vbTab + " Resource = {0}", claim.Resource.ToString())
sw.WriteLine(vbTab + " Right = {0}", claim.Right)
Next claim
Next claimset
Finally
sw.Dispose()
End Try
End Sub
Kompilowanie kodu
Kod używa następujących przestrzeni nazw: