我有一个在 IIS 6 上运行的 WCF 服务器,它使用具有自定义标识的应用程序池
现在我在网上看了两天,我找不到我的问题的确切答案。我知道外面有很多类似的
在 IIS6 上,虚拟目录禁用匿名访问并启用集成 Windows 身份验证。服务帐户与机器位于同一域中。我将其称为 svcE。我将 svcE 添加到 IIS_WPG 组。
现在,第一个问题是当我选择使用 svcE 的应用程序池在虚拟目录上工作时,将其称为 appDir,然后当我导航到 appDir 时,我会收到提示输入凭据,但如果我使用网络服务帐户,我不会并验证我是以我的身份登录。
我想要做的是让服务在帐户 svE 下运行,因为它可以访问数据库,而无需将该信息放入 WebConfig 文件中。
我有一个带有配置文件的网络服务
<authentication mode="Windows"/>
<bindings>
<basicHttpBinding>
<binding name="default">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows"/>
</security>
</binding>
</basicHttpBinding>
</bindings>
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="default" contract="<removed>">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
使用该服务的 Web 配置有
<basicHttpBinding>
<!-- Create one Binding for all three services, save space-->
<binding name="BasicHttpBinding_PricingService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" proxyCredentialType="Windows"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="<address>.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_PricingService"
contract="<contract>" name="<name>" />
最终我想要实现的是
只有 Windows Authenticated 的人可以调用该服务 --> 然后该服务使用一个服务帐户与数据库进行所有交互。
请注意,如果我跳过第一部分并添加匿名访问,那么它可以正常工作并调用数据库
感谢您的帮助