ここ数晩、MVC ソリューションを Azure または Pirahna CMS を使用する IIS 7.5 を搭載した VM にアップロードしようと試みてきました。
これは DevExpress なしで正常にアップロードされますが、DevExpress を参照すると例外が発生します (以下を参照)。
Piranha CMS が MEF を使用していることは知っていますが、DevExpress も使用していて、衝突するのではないかと思います (大前提)。
例外:
Server Error in '/' Application.
Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
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.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
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.
Stack Trace:
[ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.]
System.Reflection.RuntimeModule.GetTypes(RuntimeModule module) +0
System.Reflection.RuntimeModule.GetTypes() +9
System.Reflection.Assembly.GetTypes() +143
System.ComponentModel.Composition.Hosting.AssemblyCatalog.get_InnerCatalog() +241
System.ComponentModel.Composition.Hosting.AssemblyCatalog.GetExports(ImportDefinition definition) +13
System.Linq.<SelectManyIterator>d__14`2.MoveNext() +267
System.ComponentModel.Composition.Hosting.CatalogExportProvider.InternalGetExportsCore(ImportDefinition definition, AtomicComposition atomicComposition) +477
System.ComponentModel.Composition.Hosting.ExportProvider.TryGetExportsCore(ImportDefinition definition, AtomicComposition atomicComposition, IEnumerable`1& exports) +48
System.ComponentModel.Composition.Hosting.CatalogExportProvider.GetExportsCore(ImportDefinition definition, AtomicComposition atomicComposition) +136
System.ComponentModel.Composition.Hosting.ExportProvider.TryGetExports(ImportDefinition definition, AtomicComposition atomicComposition, IEnumerable`1& exports) +54
System.ComponentModel.Composition.Hosting.AggregateExportProvider.GetExportsCore(ImportDefinition definition, AtomicComposition atomicComposition) +404
System.ComponentModel.Composition.Hosting.ExportProvider.TryGetExports(ImportDefinition definition, AtomicComposition atomicComposition, IEnumerable`1& exports) +54
System.ComponentModel.Composition.Hosting.CompositionContainer.GetExportsCore(ImportDefinition definition, AtomicComposition atomicComposition) +230
System.ComponentModel.Composition.Hosting.ExportProvider.GetExports(ImportDefinition definition, AtomicComposition atomicComposition) +78
System.ComponentModel.Composition.Hosting.ImportEngine.TryGetExports(ExportProvider provider, ComposablePart part, ImportDefinition definition, AtomicComposition atomicComposition) +106
System.ComponentModel.Composition.Hosting.ImportEngine.TrySatisfyImportSubset(PartManager partManager, IEnumerable`1 imports, AtomicComposition atomicComposition) +200
System.ComponentModel.Composition.Hosting.ImportEngine.TrySatisfyImportsStateMachine(PartManager partManager, ComposablePart part) +444
System.ComponentModel.Composition.Hosting.ImportEngine.TrySatisfyImports(PartManager partManager, ComposablePart part, Boolean shouldTrackImports) +279
System.ComponentModel.Composition.Hosting.ImportEngine.SatisfyImports(ComposablePart part) +221
System.ComponentModel.Composition.Hosting.CompositionServices.TryInvoke(Action action) +58
System.ComponentModel.Composition.Hosting.ComposablePartExportProvider.Compose(CompositionBatch batch) +969
Piranha.Application..ctor() +374
Piranha.Application..cctor() +28
[TypeInitializationException: The type initializer for 'Piranha.Application' threw an exception.]
Piranha.WebPages.WebPiranha.BeginRequest(HttpContext context) +1927
System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +165
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.33440
私が試してみました
-LoadExceptionsを取得するためのガイドに従ってデバッグしましたが、それらはnullでした。
-参照されているプロジェクトが「任意の cpu」をビルドしていることを確認する
同じドロップ フォルダーを使用して IIS をローカルでセットアップしましたが、app_data/logs への書き込みアクセス許可を有効にする必要がある別の例外が発生しました。これにより、サイトはローカルで機能しました。IIS VM でこれを実行しようとしましたが、効果はありませんでした。
誰でもこのエラーについてアドバイスをいただけますか?
前もって感謝します。