为什么我得到这个错误时,试图连接到我的WCF服务
本文关键字:连接 我的 WCF 服务 错误 为什么 | 更新日期: 2023-09-27 18:10:17
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文件看起来是相同的。也许这与作为不同用户运行的客户端服务有关?我可以删除任何和所有的安全,但不知道如何。
控制台应用程序可能正在使用您的凭据运行,无法与wcf服务连接的Windows服务可能正在使用本地系统帐户运行。尝试使用身份验证模式"user"和您的凭据安装服务
两件事:检查上面的标识并确保您的其他服务不是作为本地用户运行的(默认!例如,NetworkService),但作为一个域用户或重新考虑您的设置(如果您在您的域中获得所需的权限,您可以通过在您的帐户下运行该服务来测试此设置)