gpt4 book ai didi

c# - 使用 Powershell 创建 signalR 客户端 HubConnection

转载 作者:行者123 更新时间:2023-11-30 16:43:41 24 4
gpt4 key购买 nike

我正在尝试使用 powershell 脚本连接到 SignalR 集线器。我是 Powershell 的新手,所以请原谅任何菜鸟错误。

我已经设置了一个最小的 not 工作示例来说明我在这里尝试过的内容: Gist

相关代码:

加载dll

$dllFolder = -join((Get-Item -Path ".\" -Verbose).FullName, "\bin\Debug\")
[string[]] $dllPathsToLoad = @("\Newtonsoft.Json.dll", "\Microsoft.AspNet.SignalR.Client.dll")
$token = "insertyourtokenhere"

function LoadDllPaths($dlls)
{
foreach ($dll in $dlls)
{
$dllpath = $dllFolder + $dll
[System.Reflection.Assembly]::LoadFrom($dllpath)
}
}
[...]
LoadDllPaths($dllPathsToLoad)

创建 HubConnection:

$server = "https://localhost/rest/"
[...]
$hub = New-Object Microsoft.AspNet.SignalR.Client.HubConnection($server)

步骤:

  1. 创建一个新的 Visual Studio 项目
  2. 添加 Newtonsoft.Json v10.0.2 Nuget 包(最新)
  3. 添加 Microsoft.AspNet.SignalR.Client v2.2.2 Nuget 包(最新)
  4. 将powershell脚本添加到项目的根目录
  5. 使用 powershell(以管理员身份运行),键入 .\HubConnectionTestsScript.ps1

结果:

output

View on imgur

Error : System.Management.Automation.MethodInvocationException: Exception calling ".ctor" with "1" argument(s): "Could not load file or assembly 'Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The system cannot find the file specified." ---> System.IO.FileNotFoundException: Could not load file or assembly 'Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The system cannot find the file specified.
at Microsoft.AspNet.SignalR.Client.Connection..ctor(String url, String queryString)
at Microsoft.AspNet.SignalR.Client.HubConnection..ctor(String url, Boolean useDefaultUrl)
--- End of inner exception stack trace ---
at System.Management.Automation.DotNetAdapter.AuxiliaryConstructorInvoke(MethodInformation methodInformation, Object[] arguments, Object[] originalArguments)
at System.Management.Automation.DotNetAdapter.ConstructorInvokeDotNet(Type type, ConstructorInfo[] constructors, Object[] arguments)
at Microsoft.PowerShell.Commands.NewObjectCommand.CallConstructor(Type type, ConstructorInfo[] constructors, Object[] args)

This signalR source code object似乎是问题所在,我只是看不出它的哪一部分会引发此错误。

问题:

为什么signalR dependencies时报错提到Newtonsoft.Json v6.0.0说 >=6.0.4,我有 10.0.2

我是否在我的 Powershell 脚本中做错了什么可能导致这种情况?

非常感谢!在此感谢任何帮助

最佳答案

在一位同事的帮助下,我设法解决了这个问题。在这里分享解决方案,以防有人遇到同样的问题。

似乎 SignalR 依赖项之一试图加载旧版本的 Newtonsoft.Json。我们可以强制将他重定向到我们自己的 Newtonsoft.Json 实例

灵感来自 this gist , 这是想法:

加载 Json 程序集时,将其存储在变量中

$newtonsoftAssembly = [System.Reflection.Assembly]::LoadFrom($dllFolder + "\Newtonsoft.Json.dll")

然后,设置重定向绑定(bind)。我最好的猜测是,这会拦截任何加载程序集的调用,让我们有机会返回我们自己的 Json 程序集,而不是让他找不到他想要的版本(在我的例子中是 6.0.0)。

function RedirectJsonBindings()
{
$onAssemblyResolveEventHandler = [System.ResolveEventHandler] {
param($sender, $e)
# You can make this condition more or less version specific as suits your requirements
if ($e.Name.StartsWith("Newtonsoft.Json")) {
Write-Host "Newtonsoft assembly" $e.Name -ForegroundColor DarkGreen
return $newtonsoftAssembly
}
foreach($assembly in [System.AppDomain]::CurrentDomain.GetAssemblies()) {
if ($assembly.FullName -eq $e.Name) {
return $assembly
}
}
return $null
}
[System.AppDomain]::CurrentDomain.add_AssemblyResolve($onAssemblyResolveEventHandler)

}

最后,在你的脚本结束时,取消绑定(bind)

# Detach the event handler (not detaching can lead to stack overflow issues when closing PS)
[System.AppDomain]::CurrentDomain.remove_AssemblyResolve($onAssemblyResolveEventHandler)

关于c# - 使用 Powershell 创建 signalR 客户端 HubConnection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44572868/

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