gpt4 book ai didi

c# - 无法使 CustomBinding 在 Mono 中工作

转载 作者:太空宇宙 更新时间:2023-11-04 13:02:37 24 4
gpt4 key购买 nike

我编写了一个应该在 Linux 上运行的简单控制台应用程序。

该应用程序使用预编译的 dll(我猜它工作得很好)除了一件事:远程服务器使用自定义绑定(bind)配置并且不能重新配置。配置如下:

<bindings>
<customBinding>
<binding name="myBinding">
<binaryMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="163840000" maxBytesPerRead="4096"
maxNameTableCharCount="16384" />
</binaryMessageEncoding>
<httpsTransport manualAddressing="false" maxBufferPoolSize="524288" maxReceivedMessageSize="655360000"
allowCookies="false" authenticationScheme="Ntlm" bypassProxyOnLocal="false"
decompressionEnabled="true" hostNameComparisonMode="StrongWildcard" keepAliveEnabled="true"
maxBufferSize="655360000" proxyAuthenticationScheme="Ntlm" realm="" transferMode="Buffered"
unsafeConnectionNtlmAuthentication="true" useDefaultWebProxy="true">
</httpsTransport>
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="REMOTE_LINK_HERE" binding="customBinding"
bindingConfiguration="myBinding" contract="CONTRACT_NAME"
name="myBinding">
</endpoint>
</client>

因此,服务器使用 Ntlm 进行身份验证。由于该应用程序必须在 Linux 上运行,因此在域之外,我必须在代码中设置凭据,而不是通过仅在 Windows 中可用的“runas”启动应用程序。这是我的代码:

var client = new ...;

if (client.ClientCredentials != null)
{
client.ClientCredentials.Windows.ClientCredential
= new NetworkCredential(options.UserName, options.Password, options.Domain);
client.ClientCredentials.Windows.AllowedImpersonationLevel
= TokenImpersonationLevel.Identification;
}

问题是 - 我的应用程序在 native .NET CLR 上的 Windows 中运行得很好。使用 xbuild 编译并在 Linux 上启动后,我收到错误消息:

System.InvalidOperationException: Use ClientCredentials to specify a user name for required HTTP Ntlm authentication.

有解决办法吗?

附言我在 Mono 的 Bugzilla here 中发现了类似的消息,但提供的补丁似乎对 CustomBinding 没有任何作用。

最佳答案

尝试了各种技巧,最终找到了解决方法。解决方法是 - 设置 ClientCredentials.UserName 属性。不幸的是,它是只获取的,所以我不得不使用反射来设置私有(private)字段值。由于它们在 native .NET 和单声道中不同,代码看起来有点脏,但仍然有效。

这是我的代码:

var credentials = client.ClientCredentials.UserName;

var userNameProperty = credentials.GetType()
.GetFields(BindingFlags.NonPublic | BindingFlags.Instance)
.FirstOrDefault(p => p.Name.ToLower() == "username");

if (userNameProperty != null)
userNameProperty.SetValue(credentials, Options.UserName);

var passwordProperty = credentials.GetType()
.GetField("password", BindingFlags.NonPublic | BindingFlags.Instance);
if (passwordProperty != null)
passwordProperty.SetValue(credentials, Options.Password);

关于c# - 无法使 CustomBinding 在 Mono 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33546761/

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