The caller was not authenticated by the service.
我在一台机器上的Windows服务中托管了一个WCF服务,并且我在另一台机器上有另一个Windows服务作为连接到第一台机器上的WCF服务的客户端。我猜这与安全性有关,但我不知道该怎么办。这是客户端的app.config:
<system.serviceModel>
<bindings>
<wsDualHttpBinding>
<binding name="WSDualHttpBinding_IWCFService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
<reliableSession ordered="true" inactivityTimeout="00:10:00"/>
<security mode="Message">
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default"/>
</security>
</binding>
</wsDualHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8731/Design_Time_Addresses/WCF/WCFService/"
binding="wsDualHttpBinding" bindingConfiguration="WSDualHttpBinding_IWCFService"
contract="WCFService.IWCFService" name="WSDualHttpBinding_IWCFService">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
</client>
</system.serviceModel>
服务的app.config:
<system.serviceModel>
<services>
<service name="WCF.WCFService" behaviorConfiguration="WCFBehavior">
<endpoint address="" binding="wsDualHttpBinding" contract="WCF.IWCFService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint
address="mex"
binding="mexHttpBinding"
bindingConfiguration=""
contract="IMetadataExchange"/>
<host>
<baseAddresses>
<add baseAddress="http://localhost:8731/Design_Time_Addresses/WCF/WCFService/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WCFBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
我需要做些什么才能连接到我的WCF服务。
另外需要注意的是,我创建了一个简单的控制台应用程序作为wcf服务的客户端,它能够毫无问题地连接到服务,并且app.config文件看起来完全相同。也许与以不同用户身份运行的客户端服务有关?我可以删除任何和所有安全性,但不知道如何。
答案 0 :(得分:0)
控制台应用程序可能正在使用您的凭据运行,无法与wcf服务连接的Windows服务可能正在使用本地系统帐户运行。尝试使用身份验证模式“user”和凭据
安装服务答案 1 :(得分:0)
两件事:检查上面的身份并确保您的其他服务不是作为本地用户运行(默认!例如NetworkService),而是作为域用户运行或重新考虑您的设置(您可以通过运行服务来测试它如果您在自己的域中拥有所需的权利,请在您的帐户下