gpt4 book ai didi

wcf - 使用通过 https 的用户名为 WS-Security 配置 WCF

转载 作者:行者123 更新时间:2023-12-04 06:38:47 25 4
gpt4 key购买 nike

我正在尝试使用 WCF 客户端通过 https 调用基于 Java、启用 WS-Security 的 Web 服务,但似乎无法正确配置安全性。使用 SvcTraceViewer,我没有看到我尝试过的任何安全配置的预期安全 header 。

我最近的安全配置是:

    <wsHttpBinding>
<binding name="MySoapBinding" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="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" />
<security mode="TransportWithMessageCredential">
<transport/>
<message clientCredentialType="UserName" negotiateServiceCredential="false" establishSecurityContext="false"/>
</security>
</binding>
</wsHttpBinding>

我在这样的代码中设置用户名/密码:
    svc.ClientCredentials.UserName.UserName = TestBase.userName;
svc.ClientCredentials.UserName.Password = TestBase.password;

Java Web 服务需要这样的安全 header :
<wsse:Security soap:mustUnderstand="1">
<wsu:Timestamp wsu:Id="Timestamp-bf41c571-7d32-438c-937e-7d83a3ac2d14">
<wsu:Created>2010-12-27T16:43:16Z</wsu:Created>
<wsu:Expires>2010-12-27T16:48:16Z</wsu:Expires>
</wsu:Timestamp>
<wsse:UsernameToken xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" wsu:Id="SecurityToken-4c9b30b1-d697-4c64-89cb-a6d7e857aebf">
<wsse:Username>MyUserName</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">MyPassword</wsse:Password>
<wsse:Nonce>pzLdD4S+OCDG6Ut9Ur1oOQ==</wsse:Nonce>
<wsu:Created>2010-12-27T16:43:16Z</wsu:Created>
</wsse:UsernameToken>
</wsse:Security>

我根本看不到安全 header 。

我已经在网上阅读了很多关于传输与消息级安全性和安全模式的信息,但似乎找不到合适的选项集。我应该如何配置我的绑定(bind)
  • https通信
  • SOAP header 中的用户名/密码,纯文本 (WS-Security)
  • 需要时间戳
  • 需要随机数
  • 最佳答案

    事实证明,Rick Strahl 也遇到了几乎完全相同的问题。事实证明,SvcTraceViewer 没有显示实际的在线消息。但是,他的博客概述了通过 Charles(或者在我的情况下是免费的 Fiddler 2)代理以查看实际消息的过程。

    事实证明,我正在根据我正在调用的 Web 服务的要求发送一个 Timestamp 元素,但如果我这样做了,WCF 会在响应中要求一个 Timestamp(我没有得到)。该错误消息非常具有误导性。幸运的是,我可以更改服务以返回时间戳。

    http://www.west-wind.com/weblog/posts/205198.aspx

    关于wcf - 使用通过 https 的用户名为 WS-Security 配置 WCF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4543915/

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