다음을 통해 공유


WindowsServiceCredential.AllowAnonymousLogons 속성

정의

익명 사용자 액세스 허용 여부를 나타내는 값을 가져오거나 설정합니다(메시지 수준 보안에만 적용됨).

public:
 property bool AllowAnonymousLogons { bool get(); void set(bool value); };
public bool AllowAnonymousLogons { get; set; }
member this.AllowAnonymousLogons : bool with get, set
Public Property AllowAnonymousLogons As Boolean

속성 값

Boolean

익명 사용자의 액세스가 허용되면 true이고, 그렇지 않으면 false입니다. 기본값은 false입니다.

예제

다음 코드에서는 이 속성을 가져오는 방법을 보여 줍니다.

// Create a service host.
Uri httpUri = new Uri("http://localhost/Calculator");
ServiceHost sh = new ServiceHost(typeof(Calculator), httpUri);

// Create a binding that uses a WindowsServiceCredential.
WSHttpBinding b = new WSHttpBinding(SecurityMode.Message);
b.Security.Message.ClientCredentialType = MessageCredentialType.Windows;

// Add an endpoint.
sh.AddServiceEndpoint(typeof(ICalculator), b, "WindowsCalculator");

// Get a reference to the WindowsServiceCredential object.
WindowsServiceCredential winCredential =
    sh.Credentials.WindowsAuthentication;
// Print out values.
Console.WriteLine("IncludeWindowsGroup: {0}",
    winCredential.IncludeWindowsGroups);
Console.WriteLine("UserNamePasswordValidationMode: {0}",
    winCredential.AllowAnonymousLogons);

Console.ReadLine();
' Create a service host.
Dim httpUri As New Uri("http://localhost/Calculator")
Dim sh As New ServiceHost(GetType(Calculator), httpUri)

' Create a binding that uses a WindowsServiceCredential.
Dim b As New WSHttpBinding(SecurityMode.Message)
b.Security.Message.ClientCredentialType = MessageCredentialType.Windows

' Add an endpoint.
sh.AddServiceEndpoint(GetType(ICalculator), b, "WindowsCalculator")

' Get a reference to the WindowsServiceCredential object.
Dim winCredential As WindowsServiceCredential = sh.Credentials.WindowsAuthentication
' Print out values.
Console.WriteLine("IncludeWindowsGroup: {0}", winCredential.IncludeWindowsGroups)
Console.WriteLine("UserNamePasswordValidationMode: {0}", winCredential.AllowAnonymousLogons)

Console.ReadLine()

설명

바인딩에서 Windows 클라이언트 자격 증명을 사용하는 경우 기본적으로 시스템은 익명 액세스를 허용하지 않습니다. 즉, 도메인 또는 작업 그룹 인증된 사용자만 시스템에 들어갈 수 있습니다. 그러나 경우에 따라 인증되지 않은 익명 사용자가 서비스에 액세스하는 것이 허용됩니다. 이 경우 익명 클라이언트가 서비스를 호출할 true 수 있도록 이 속성을 설정할 수 있습니다. 익명 인증을 사용하도록 설정하는 서비스는 보안 요구 사항을 크게 완화하므로 이 설정을 주의해서 사용해야 합니다.

이 속성은 전송 보안 시나리오에 적용되지 않으며 메시지 보안을 위해 기본 바인딩에서 메시지 보안을 사용하는 경우에만 적용됩니다. Windows 전송 보안을 사용하는 경우 이 속성은 적용되지 않습니다.

적용 대상