Skip to content

Commit c9e25e5

Browse files
authored
SFI: ROPC - another chunk (#42602)
1 parent 430860e commit c9e25e5

File tree

32 files changed

+9819
-10489
lines changed

32 files changed

+9819
-10489
lines changed

.openpublishing.redirection.framework.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2532,6 +2532,10 @@
25322532
"redirect_url": "/previous-versions/dotnet/framework/wcf/feature-details/service-cert-validation-differences",
25332533
"redirect_document_id": false
25342534
},
2535+
{
2536+
"source_path_from_root": "/docs/framework/wcf/feature-details/how-to-use-a-custom-user-name-and-password-validator.md",
2537+
"redirect_url": "/previous-versions/dotnet/framework/wcf/feature-details/how-to-use-custom-user-name-password-validator"
2538+
},
25352539
{
25362540
"source_path_from_root": "/docs/framework/wcf/feature-details/how-to-create-a-workflow-service-that-calls-another-workflow-service.md",
25372541
"redirect_url": "/previous-versions/dotnet/netframework-4.0/ff729672(v=vs.100)"
@@ -2649,6 +2653,10 @@
26492653
"source_path_from_root": "/docs/framework/wcf/samples/usage-of-serialization-binder.md",
26502654
"redirect_url": "/dotnet/framework/wcf/samples/"
26512655
},
2656+
{
2657+
"source_path_from_root": "/docs/framework/wcf/samples/user-name-password-validator.md",
2658+
"redirect_url": "/previous-versions/dotnet/framework/wcf/samples/user-name-password-validator"
2659+
},
26522660
{
26532661
"source_path_from_root": "/docs/framework/wcf/samples/web-extensibility.md",
26542662
"redirect_url": "/previous-versions/dotnet/netframework-4.0/ee818234(v%3dvs.100)"

docs/ai/how-to/snippets/semantic-kernel/IdentityExamples.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Microsoft.SemanticKernel.Plugins.Memory;
1010
using StackExchange.Redis;
1111

12-
// Supress warning about AzureAISearchMemoryStore still being in evaluation
12+
// Suppress warning about AzureAISearchMemoryStore still being in evaluation
1313
#pragma warning disable SKEXP0020
1414

1515
// Suppress warning about MemoryStore still being in evaluation
@@ -137,7 +137,7 @@ static async Task RedisKeyVaultExample()
137137

138138
// <vaultConfig>
139139
// User secrets let you provide connection strings when testing locally
140-
// For more info see: https://learn.microsoft.com/en-us/aspnet/core/security/app-secrets
140+
// For more info see: https://learn.microsoft.com/aspnet/core/security/app-secrets
141141
IConfigurationRoot config = new ConfigurationBuilder()
142142
.AddUserSecrets<Program>()
143143
.AddAzureKeyVault(new Uri("{vaultURI}"), credentials)

docs/framework/wcf/feature-details/authentication-in-wcf.md

Lines changed: 25 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,37 @@
22
title: "Authentication in WCF"
33
description: Learn about several mechanisms in WCF that provide authentication, such as Windows authentication, X.509 certificates, and user name and password.
44
ms.date: "03/30/2017"
5-
helpviewer_keywords:
5+
helpviewer_keywords:
66
- "authentication [WCF]"
77
- "security [WCF], authentication"
88
ms.assetid: 9254d873-843d-4c6e-bea4-8184ac3e44f4
99
---
1010
# Authentication in WCF
1111

12-
The following topics show a number of different mechanisms in Windows Communication Foundation (WCF) that provide authentication, for example, Windows authentication, X.509 certificates, and user name and passwords.
13-
14-
## In This Section
15-
16-
[How to: Use the ASP.NET Membership Provider](how-to-use-the-aspnet-membership-provider.md)
17-
ASP.NET features include a membership and role provider, a database to store user name/password pairs for authentication, and user roles for authorization. This topic explains how WCF services can use the same database to authenticate and authorize users.
18-
19-
[How to: Use a Custom User Name and Password Validator](how-to-use-a-custom-user-name-and-password-validator.md)
20-
Demonstrates how to integrate a custom user name/password validator.
21-
22-
[Service Identity and Authentication](service-identity-and-authentication.md)
23-
As an extra safeguard, a client can authenticate the service by specifying the expected *identity* of the service. If the expected identity and the identity returned by the service do not match, authentication fails.
24-
25-
[Security Negotiation and Timeouts](security-negotiation-and-timeouts.md)
26-
Describes how to use the <xref:System.ServiceModel.Channels.LocalServiceSecuritySettings.NegotiationTimeout%2A> property in the <xref:System.ServiceModel.Channels.LocalServiceSecuritySettings> class.
27-
28-
[Debugging Windows Authentication Errors](debugging-windows-authentication-errors.md)
29-
Focuses on common problems encountered when using Windows authentication.
30-
31-
## Reference
32-
33-
<xref:System.ServiceModel>
34-
35-
## Related Sections
36-
37-
[Common Security Scenarios](common-security-scenarios.md)
38-
12+
The following topics show a number of different mechanisms in Windows Communication Foundation (WCF) that provide authentication, for example, Windows authentication, X.509 certificates, and user name and passwords.
13+
14+
## In This Section
15+
16+
[How to: Use the ASP.NET Membership Provider](how-to-use-the-aspnet-membership-provider.md)
17+
ASP.NET features include a membership and role provider, a database to store user name/password pairs for authentication, and user roles for authorization. This topic explains how WCF services can use the same database to authenticate and authorize users.
18+
19+
[Service Identity and Authentication](service-identity-and-authentication.md)
20+
As an extra safeguard, a client can authenticate the service by specifying the expected *identity* of the service. If the expected identity and the identity returned by the service do not match, authentication fails.
21+
22+
[Security Negotiation and Timeouts](security-negotiation-and-timeouts.md)
23+
Describes how to use the <xref:System.ServiceModel.Channels.LocalServiceSecuritySettings.NegotiationTimeout%2A> property in the <xref:System.ServiceModel.Channels.LocalServiceSecuritySettings> class.
24+
25+
[Debugging Windows Authentication Errors](debugging-windows-authentication-errors.md)
26+
Focuses on common problems encountered when using Windows authentication.
27+
28+
## Reference
29+
30+
<xref:System.ServiceModel>
31+
32+
## Related Sections
33+
34+
[Common Security Scenarios](common-security-scenarios.md)
35+
3936
## See also
4037

4138
- [Security Overview](security-overview.md)

docs/framework/wcf/feature-details/how-to-use-a-custom-user-name-and-password-validator.md

Lines changed: 0 additions & 121 deletions
This file was deleted.

0 commit comments

Comments
 (0)