0

在 WSTrustChannelFactory 文档中有使用代理的参考:

  One common pattern where the OnBehalfOf feature is used is the proxy 
  pattern where the client cannot access the STS directly but instead 
  communicates through a proxy gateway

我似乎找不到一个例子。
在我的一些用户的计算机中,为外部请求定义了一个代理。
如果 STS 在代理后面,我如何请求令牌。

目前我得到它如下:

var rst = new RequestSecurityToken{...}
IWSTrustChannelContract wsTrustChannelContract = factory.CreateChannel();
var token = wsTrustChannelContract.Issue(rst) as GenericXmlSecurityToken;

如何将其更改为使用代理?

谢谢。

4

1 回答 1

0

OnBehalfOf 适用于您自己构建代理的情况 - 例如 ADFS 代理。我也没有看到任何样本 - 但它遵循与 ActAs 相同的模式。

它与您和您的 STS 之间可能存在的“常规”网络代理无关。

但请看这里: How can I set an HTTP Proxy (WebProxy) on a WCF client-side Service proxy?

于 2013-12-10T19:00:40.083 回答