0
ユーザーがクライアントからサービスにログオンできるように、WCFで「カスタム」ユーザー認証を実装しようとしています。次に、私は自分の役割に関して特定の方法の使用を認可することができます。私は様々なチュートリアルを見てきましたが、web.configファイルを正しく設定する方法を理解することはできません。 (ただ、この時点では、ログ用)WCFカスタムユーザー認証
名前空間:ServerCore
インタフェース:IDBService
SVC:DBService
'ユーザ認証' クラスがUserNamePasswordValidatorを継承し、 '検証' にオーバーライドが含まれています方法。
web.configファイル:私は部分的にそれを販売した
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5"/>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
<serviceCredentials>
<userNameAuthentication userNamePasswordValidationMode="Custom"
customUserNamePasswordValidatorType="UserAuthentication, ServerCore" />
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<!--
To browse web app root directory during debugging, set the value below to true.
Set to false before deployment to avoid disclosing web app folder information.
-->
<directoryBrowse enabled="true"/>
</system.webServer>
</configuration>