Ошибка Windows Azure - не удалось загрузить файл или сборку MFCMIFC80

Я создал проект Angular/WebAPI/MongoDb и использую StructureMap для внедрения зависимостей, и я опубликовал его в частной учетной записи BitBucket.

Я создал веб-приложение Azure и настроил его на автоматическое развертывание всякий раз, когда я фиксирую изменения в своем репозитории BitBucket.

Когда я запускаю его локально (из Visual Studio), моя главная страница выглядит так: http://localhost:37071/index.html

Это делает API-вызовы к http://localhost:37071/api/stock?stkSymbol=ORCL успешно.

Однако при развертывании моя страница успешно загружается по адресу: http://myazureproject.azurewebsites.net/index.html

Тем не менее, все вызовы API: http://myazureproject.azurewebsites.net/api/stock?stkSymbol=ORCL

Сбой с этим сообщением об ошибке:

Server Error in '/' Application.

Could not load file or assembly 'MFCMIFC80, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.IO.FileNotFoundException: Could not load file or assembly 'MFCMIFC80, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Assembly Load Trace: The following information can be helpful to determine why the assembly 'MFCMIFC80, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' could not be loaded.


WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

Stack Trace: 


[FileNotFoundException: Could not load file or assembly 'MFCMIFC80, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.]
   System.Reflection.RuntimeAssembly.GetExportedTypes(RuntimeAssembly assembly, ObjectHandleOnStack retTypes) +0
   System.Reflection.RuntimeAssembly.GetExportedTypes() +21
   StructureMap.Graph.TypePool.<.ctor>b__0(Assembly assembly) +10
   StructureMap.Util.LightweightCache`2.get_Item(TKey key) +65
   StructureMap.Graph.<>c__DisplayClass3.<For>b__2(Assembly x) +37
   System.Linq.<SelectManyIterator>d__14`2.MoveNext() +232
   StructureMap.StringExtensions.Each(IEnumerable`1 enumerable, Action`1 action) +140
   StructureMap.Graph.AssemblyScanner.ScanForTypes(TypePool types, PluginGraph pluginGraph) +128
   StructureMap.<>c__DisplayClass2.<RunConfigurations>b__1(AssemblyScanner x) +21
   StructureMap.StringExtensions.Each(IEnumerable`1 enumerable, Action`1 action) +131
   StructureMap.PluginGraphBuilder.RunConfigurations() +143
   StructureMap.PluginGraphBuilder.Build() +13
   StructureMap.PipelineGraph.For(Action`1 action) +49
   myAzureProject.DependencyResolution.IoC.Initialize() +82
   myAzureProject.App_Start.StructuremapMvc.Start() +10

[TargetInvocationException: Exception has been thrown by the target of an invocation.]
   System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) +0
   System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) +192
   System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) +155
   WebActivatorEx.BaseActivationMethodAttribute.InvokeMethod() +57
   WebActivatorEx.ActivationManager.RunActivationMethods(Boolean designerMode) +350
   WebActivatorEx.ActivationManager.Run() +78

[InvalidOperationException: The pre-application start initialization method Run on type WebActivatorEx.ActivationManager threw an exception with the following error message: Exception has been thrown by the target of an invocation..]
   System.Web.Compilation.BuildManager.InvokePreStartInitMethodsCore(ICollection`1 methods, Func`1 setHostingEnvironmentCultures) +547
   System.Web.Compilation.BuildManager.InvokePreStartInitMethods(ICollection`1 methods) +132
   System.Web.Compilation.BuildManager.CallPreStartInitMethods(String preStartInitListPath, Boolean& isRefAssemblyLoaded) +102
   System.Web.Compilation.BuildManager.ExecutePreAppStart() +153
   System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException) +521

[HttpException (0x80004005): The pre-application start initialization method Run on type WebActivatorEx.ActivationManager threw an exception with the following error message: Exception has been thrown by the target of an invocation..]
   System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +9930568
   System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +101
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +254

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.36215

Я не знаю, что такое MFCMIFC80 или что мне нужно сделать, чтобы иметь возможность развернуть его в моем веб-приложении Azure.

Любая помощь будет оценена.

Спасибо!

2 ответа

Наконец-то разобрался. В моем решении у меня есть одна строка, чтобы сказать, что structmap сканирует сборки по пути.

scan.AssembliesFromPath(Environment.CurrentDirectory);

Удаление этой строки решает проблему.

MFCMIFC80.dll - это библиотека MFC ( https://en.wikipedia.org/wiki/Microsoft_Foundation_Class_Library). Скорее всего, это требование для ваших драйверов MongoDB. Как я не припоминаю никакой зависимости от MFC для обычных веб-API, использующих AngularJS.

Нельзя развертывать MFC в веб-приложениях Azure (бывших веб-сайтах).

Ищите альтернативные драйверы MongoDB, которые не зависят от MFC.

Другая причина этой ошибки может заключаться в том, что в вашем проекте вы ссылаетесь на сборки.NET 2.0, а ваш основной проект нацелен на.NET 4.0. Что может быть в действительности с драйвером MongoDB (он может быть скомпилирован только для.NET 2.0 и может вызвать проблемы).

Итак, просмотрите все ваши ссылки (включая драйверы StructureMap и MongoDB), чтобы убедиться, что все ваши обновленные сборки предназначены для.NET 4.0, а не.NET 2.0.

Обратите внимание, что, хотя.NET 4.0 фактически работает в среде выполнения.NET 2.0, могут возникнуть проблемы при обращении к сборкам.NET 2.0 из целевого проекта.NET 4.0.

Другие вопросы по тегам