gpt4 book ai didi

c# - 来自 Swagger 和 CaSTLeWindsor 的 Azure 运行时错误

转载 作者:行者123 更新时间:2023-11-30 21:33:45 27 4
gpt4 key购买 nike

我在部署应用程序时遇到问题。我会尽力提供尽可能多的信息。

API 项目同时使用了 Swagger via Swashbuckle 和 CaSTLe Windsor。

当通过 SwaggerConfig.cs 启用 Swagger 时
[assembly: PreApplicationStartMethod(typeof(SwaggerConfig), "Register")]
我们得到以下异常:
Method not found: 'Void Swashbuckle.Application.SwaggerDocsConfig.RootUrl(System.Func`2<System.Net.Http.HttpRequestMessage,System.String>)'.

这是完整的注册调用,以防相关

  GlobalConfiguration.Configuration
.EnableSwagger(c =>
{
c.RootUrl(req => req.RequestUri.GetLeftPart(UriPartial.Authority) + "/api");
c.MultipleApiVersions((api, v) => true,
vc =>
{
vc.Version("mobile", "Mobile");
vc.Version("web", "Web");
});
c.UseFullTypeNameInSchemaIds();
c.DescribeAllEnumsAsStrings();
c.DocumentFilter<VersionFilter>();
})
.EnableSwaggerUi(c =>
{
c.EnableDiscoveryUrlSelector();
});

如果我们禁用 swagger(通过删除程序集属性),应用程序将在 CaSTLe Windsor 启动时开始失败,并出现以下错误:

Method 'Create' in Type 'XXX.XXX.XXX.CastleWindsor.WindsorCompositionRoot' from assembly 'xxx.xxx.Backend, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.'

这是 WindsorConfig.cs 的 Configure() 方法

public static void Configure()
{
WindsorConfig.Container = new WindsorContainer();
WindsorConfig.Container.Install(FromAssembly.This());

System.Web.Http.GlobalConfiguration.Configuration.Services.Replace(typeof(IHttpControllerActivator), new WindsorCompositionRoot(WindsorConfig.Container));
}

当我们将解决方案中的共享库从 PCL 升级到 .net standard 2 时,出现了此问题。这反过来意味着我们必须将解决方案中的所有其他项目升级到.net 4.7.1(解决方案中有一个 UWP 应用程序,这是我们最初的升级目标,这意味着我们必须升级库,但我离题了) ,总而言之,这个问题发生在 4.7.1 升级上。

应用程序通过 Bamboo w/msbuild 和 msdeploy 部署到 Azure。我们确信二进制文件和 web.config 与开发同步,因为我们已经通过 FTP 手动部署了它们。在重新上传之前,我通过 FTP 删除了所有二进制文件,以确保不存在遗留程序集。

我已验证 Kudu 中的 Azure 应用程序显示正确的版本以支持 4.7.1,如下所述:https://github.com/Azure/app-service-announcements/issues/63

未运行的应用程序将部署到 Azure 中应用程序服务的虚拟目录 (/api) 中。主网站(位于/)是静态的,并使用 Angular 访问 API。

我已经确认/和/api 项目中的 web.config 都显示
<compilation targetFramework="4.7.1" />
<httpRuntime targetFramework="4.7.1" />

软件包版本如下(我们在目标框架升级后执行了nuget重新安装):
<package id="Castle.Core" version="3.3.0" targetFramework="net471" />
<package id="Castle.Windsor" version="3.3.0" targetFramework="net471" />
<package id="Castle.Windsor.Lifestyles" version="0.4.0" targetFramework="net471" />
<package id="Swashbuckle" version="5.3.2" targetFramework="net471" />
<package id="Swashbuckle.Core" version="5.3.2" targetFramework="net471" />

之前,当我尝试升级到 4.7.1(用于另一个依赖项)时,我在开发环境中遇到了这个问题,但这次开发工作正常,没有错误,只是现在部署到 Azure 时才失败。此应用服务的 Azure 门户中的 .net 框架版本显示为 4.7

现在,我认为问题实际上并不是我们用来初始化 Swagger 和/或 CaSTLe Windsor 的代码,它更可能与框架版本或不匹配的程序集版本有关,因为该应用程序正在我的计算机上运行开发机器没有错误,但我已经不知道接下来要尝试什么了。

最佳答案

我发现了这个问题https://forums.asp.net/t/2137242.aspx通过搜索温莎错误,System.Web.Http.Dispatcher.IHttpControllerActivator无法实例化并出现错误 Method 'Create' in type 'MyType' from assembly 'MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.

这让我检查System.Net.Http已部署的版本。 System.Net.Http4.2.0.0在本地,此 DLL 已部署到 Azure,但运行时实际上似乎使用了不同的版本。

奇怪的是,当我从bin文件夹中删除System.Net.Http的部署版本时,错误提示:'System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a因此,无论 bin 文件夹中的版本如何(也是 4.2.0.0),这都是 Azure 提供的程序集版本。

我为 System.Net.Http 添加了绑定(bind)重定向,应用程序现在正常启动

<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0"/>
</dependentAssembly>

关于c# - 来自 Swagger 和 CaSTLeWindsor 的 Azure 运行时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51014010/

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