连接到 Web 服务 - 令牌提供者无法获取目标令牌
Posted
技术标签:
【中文标题】连接到 Web 服务 - 令牌提供者无法获取目标令牌【英文标题】:Connecting to web service - The token provider cannot get tokens for target 【发布时间】:2016-08-24 21:01:14 【问题描述】:我正在尝试连接到 SOAP Web 服务并收到此错误:
令牌提供者无法获取目标“http://realurl.com/myservice.svc”的令牌
提供服务的公司发给我这个app.config
示例代码:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<!-- Specify UserName and Password of context user -->
<add key="UserName" value="xxxxxx" />
<add key="Password" value="xxx" />
</appSettings>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="ValuationServiceEndpoint" 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="TransportWithMessageCredential" >
<message clientCredentialType="UserName" establishSecurityContext="false"/>
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="https://sampleurl.com/service.svc"
binding="wsHttpBinding" bindingConfiguration="ValuationServiceEndpoint"
contract="Provider.ValuationService.ValuationService" name="ValuationServiceEndpoint" >
</endpoint>
</client>
</system.serviceModel>
</configuration>
不过,我在处理这段代码时遇到了问题,因为他们给我的端点地址是 HTTP 而不是 HTTPS。这意味着安全模式TransportWithMessageCredential
在这里不起作用,所以我将其改为Message
。
这是我当前的代码:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<appSettings>
<add key="Username" value="myuser" />
<add key="Password" value="mypass" />
</appSettings>
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="ValuationServiceEndpoint">
<security mode="Message">
<message clientCredentialType="UserName" establishSecurityContext="false" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://realurl.com/service.svc"
binding="wsHttpBinding" bindingConfiguration="ValuationServiceEndpoint"
contract="Provider.ValuationService.ValuationService" name="ValuationServiceEndpoint" />
</client>
</system.serviceModel>
</configuration>
我不知道为什么会收到令牌错误。有人可以帮忙吗?
谢谢!
【问题讨论】:
【参考方案1】:很抱歉 2 个月后才回复你的帖子,但至少你会知道为什么它不起作用。
你的问题其实很简单。服务器和客户端之间的安全模式不匹配。服务器期待TransportWithMessageCredential
,而客户端提供Message
。
如果您只想使用密码安全性,请在两侧使用 Message
。如果你想使用HTTPS,你需要在两边都提供TransportWithMessageCredential
。
【讨论】:
以上是关于连接到 Web 服务 - 令牌提供者无法获取目标令牌的主要内容,如果未能解决你的问题,请参考以下文章
获取AccessToken,VerifySmsToken mscorlib“无法连接到远程服务器”,
尝试使用LINQPad连接到Oracle,提供“无法获取Oracle客户端信息”