- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在客户端和服务器上使用这个绑定(bind)配置:
<basicHttpBinding>
<binding name="BasicHttpBinding_IService1">
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="Windows" />
</security>
</binding>
</basicHttpBinding>
客户端凭据似乎不会像我假设的那样自动传递(或者它们是?),所以我需要知道如何自己设置它们。这会起作用吗?
最佳答案
您必须在 IIS 上启用 Windows 身份验证。查看以下链接了解如何操作。
此外,我检查了 MSDN网站,您的配置与 msdn 之间的关键区别是安全模式
<bindings>
<basicHttpBinding>
<binding name="BasicHttpEndpointBinding">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" />
</security>
</binding>
</basicHttpBinding>
</bindings>
如您所见,唯一的区别是模式。我不确定这是否能解决您的问题,但请试一试。
以下是所有“服务绑定(bind)”中的 5 种可能的“安全模式”。
None - Turns security off.
Transport - Uses “Transport security” for mutual authentication and message protection.
Message - Uses “Message security” for mutual authentication and message protection.
Both - Allows you to supply settings for transport and message-level security (only MSMQ supports this).
TransportWithMessageCredential - Credentials are passed with the message and message protection and server authentication are provided by the transport layer.
TransportCredentialOnly - Client credentials are passed with the transport layer and no message protection is applied.
关于wcf - BasicHttpBinding 与 TransportWithMessageCredential 和 clientCredentialType ="Windows",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11502165/
我有 WCF 服务,在一个 ServiceHost 内的不同端点使用 BasicHttpBinding 和 NetTcpBinding。 NetTcp 使用的是从文件加载的自签名证书,一切都很好,直到
我有一个在 ASP.NET 4.0 上运行的 Web 服务,并在 web.config 中为 BasicHttpBinding 定义了默认绑定(bind)配置: ... ..
我是 WCF 的新手,我已经能够使用 bacishttpbinding 成功地使用服务,我需要能够使用嗅探器查看服务和客户端之间的数据交换。为此,我假设我不需要在绑定(bind)中有任何安全性,每次我
我必须遵循以下代码: BasicHttpBinding binding = new BasicHttpBinding (); Uri baseAddress = new Uri ("URL.svc")
我们目前有一个 asmx webservice,它公开了一个方法来对 Sql 数据库进行各种更新,内部包装在 SqlTransaction 中。 我正在 WCF 中重写此服务,我们希望将现有方法拆分为
我有一个使用 WCF 让两个应用程序相互通信的小型基本工作示例。我的客户端应用程序监听服务器,在配置我的设置的 app.config 文件中有 XML。在编译时硬编码的一项设置是隐藏在 basicHt
如果我想编写一个 Web 服务并将其公开为 WCF 和基本 SOAP,我的数据类型可以只使用数据协定序列化,还是必须使用 XmlSerializer? Microsoft mentions需要 Xml
这个问题已经有答案了: BasicHttpBinding vs WsHttpBinding vs WebHttpBinding (3 个回答) 已关闭 7 年前。 在 WCF 端点中,basicHtt
我应该使用 BasicHttpBinding 的哪些设置,以便我的 WCF 服务尽可能快地获取数据并将数据更新到 SQL 服务器.. 安全不是问题.. 目前我的客户端配置是这样的。它可以工作,但如果可
我想清楚地解释 basicHttpBinding 的 ReceiveTimeout 在我的客户端会做什么?不是 Web 服务端。 在 MS 文档中非常清楚,此属性对客户端的 WCFBinding 没有
我正在尝试在 Windows 2007 SP1 服务器上将 WCF ServiceHost 作为 NT 服务运行。 ServiceHost 负责托管单个服务端点:具有以下地址的 basicHttpBi
所以我正在为 WCF 服务配置端点。我几乎没有整体服务的经验,但是在使用它们的项目中间被扑倒了。我大致了解端点中的每个属性都在做什么,除了一个。 “绑定(bind)配置”。 这是我的代码的模糊版本(实
我正在尝试使用 BasicHttpBinding 在传输级别使用 SSL 证书使 WCF 服务器和客户端相互进行身份验证。以下是服务器的创建方式: var soapBinding = new Basi
我一直在努力将 basicHttpBinding 转换为 customBinding 以让我的客户在网络场上工作。我一直在摸索翻译以下安全部分。 我会向你展示我的翻译,但我所能理解的实际上
我很难将 BasicHttpBinding 转换为自定义绑定(bind)。具体来说,我需要转换安全元素- 任何人都可以帮助在自定义绑定(bind)中编写相同的内
我正在尝试创建一个 Delphi 客户端(Delphi 2006)来与使用 WCF 编写的服务进行通信。服务非常简单,只有一项功能。技术上如下: [ServiceContract (Namespace
WCF 中的 basicHttpBinding 是否支持服务行为中的 PerSession 值? 在哪里可以找到总结每个绑定(bind)及其选项的所有信息的表格? ? 最佳答案 不,由于 HTTP 协
如何配置 XML Web 服务客户端以将 MessageVersion.Soap11WSAddressing10 用于 header 命名空间。目前它使用 MessageVersion.None 命名
WCF 中的 basicHttpBinding 是否支持服务行为中的 PerSession 值? 我在哪里可以找到总结每个绑定(bind)及其选项的所有信息的表格? ? 最佳答案 不,由于 HTTP
我使用带有自定义用户名验证的 wsHttpBinding 为客户端设置 WCF 服务,x.509,但没有 SSL 他们使用的是 PHP 并且完全无法通过 WS 安全性,因此我们的解决方案必须是添加另一
我是一名优秀的程序员,十分优秀!