gpt4 book ai didi

c# - 如何配置部署在 IIS 和远程客户端上的 WCF 服务以从远程客户端 PC 进行身份验证?

转载 作者:行者123 更新时间:2023-11-30 17:12:06 24 4
gpt4 key购买 nike

我是菜鸟;请帮助我理解这个让我非常困惑的身份验证配置/绑定(bind)的东西。

我在 Win 2008 的 IIS 7 上部署了一个 C# WCF 服务。我的客户端是一个 Windows 窗体 C# 应用程序。当我的客户端从运行 WCF 服务的同一台服务器运行时,它工作得很好,但是当我尝试从远程 PC 运行我的客户端时,出现以下异常...

System.ServiceModel.Security.SecurityNegotiationException:服务未对调用者进行身份验证。

我已经阅读了一些关于这些问题的帖子,并且知道我的问题是因为我的服务和客户端配置为使用 Windows 身份验证,我猜这是使用 Visual Studio 创建服务时的默认设置,并添加对客户端的服务引用。下面是我在进行任何更改之前的配置,当时它仍设置为 Windows(删除了不相关的位)...

Web.Config

<system.web>
...
<authentication mode="Windows"/>
...

<system.serviceModel>
<services>
<service name="MCLaborServer.LaborService" behaviorConfiguration="MCLaborServer.LaborServiceBehavior">
<!-- Service Endpoints -->
<endpoint address="" binding="wsHttpBinding" contract="MCLaborServer.ILaborService">
<!--
Upon deployment, the following identity element should be removed or replaced to reflect the
identity under which the deployed service runs. If removed, WCF will infer an appropriate identity
automatically.
-->
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="MCLaborServer.LaborServiceBehavior">
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="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"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>

然后从客户端的 App.Config...

<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_ILaborService" 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"
allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" establishSecurityContext="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://<myDnsNameGoesHere>/MCLaborServer/LaborService.svc"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ILaborService"
contract="LaborService.ILaborService" name="WSHttpBinding_ILaborService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>

所以,首先我在 web.config 中更改了“authentication mode="None"",并在客户端的 app.config 中设置了"security mode="None"",并为 message 设置了 clientCredentialType="None"和运输。我还在 web.config 和客户端的 app.config 中注释掉了“身份”部分。但这完全破坏了它,现在本地运行的客户端甚至无法工作;它给出了“远程服务器返回了意外响应:(405) 方法不允许”错误。

那么我该怎么做才能关闭安全性以便我可以使用远程客户端进行连接?我确实在 IIS 中为我​​的应用程序启用了匿名访问。

我还想问一下,配置它的最佳实践方法是什么,这样我就可以通过 Internet 以半安全的方式在远程客户端上进行 Web 服务调用,而无需使用 SSL 或做任何会花钱的事情。我并不是真的那么担心数据的安全性,因为它不是真正的敏感数据,但我仍然想确保服务器不会受到攻击。

此外,我了解到我可以使用 Windows 身份验证,然后在代码中明确指定凭据,如下所示。如果我这样做,它还能远程工作吗?如果是这样,这是否最终会导致我的服务器 Windows 凭据以不安全的方式通过网络发送,那么我是否愿意让我的凭据被劫持?

SomeService.ServiceClient someService = new SomeService.ServiceClient(); 
someService.ClientCredentials.Windows.ClientCredential.UserName="windowsuseraccountname"
someService.ClientCredentials.Windows.ClientCredential.Password="windowsuseraccountpassword"

我已经通读了以下帖子/链接,但仍然感到困惑。感谢您的帮助!

WCF error: The caller was not authenticated by the service

How to fix "The caller was not authenticated by the service"?

http://msdn.microsoft.com/en-us/library/aa291347(v=vs.71).aspx

http://www.devx.com/codemag/Article/33342/1763/page/2

最佳答案

我们在设置跨域运行的低安全性 WCF 服务时遇到了类似的问题。最大的问题之一(如果您可以这样称呼的话)是 WCF 默认配置为非常安全。因为我们的应用程序完全在一个安全网络中,所以我们不想为很多复杂的证书而烦恼。我们的解决方法是创建一个自定义绑定(bind),允许我们在没有任何加密的情况下为我们的服务使用用户名/密码身份验证。我们的实现基于 Yaron Naveh's Clear Username Binding .我建议您看看那个(以及他的 blog post introducing it )。

一些学习 WCF 绑定(bind)和安全的好资源:

关于c# - 如何配置部署在 IIS 和远程客户端上的 WCF 服务以从远程客户端 PC 进行身份验证?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11007724/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com