2017-10-05 11 views
2

새 전용 서버에 MVC5 응용 프로그램을 배포 할 때 동일한 오류가 계속 발생합니다.문제 Windows 서버에 MVC 5 배포 2014

Microsoft.Web.Infrastructure 패키지를 다시 설치하려고했습니다.
속성> 로컬 복사를 True로 변경했습니다.

게시 된 bin 폴더에 Microsoft.AI.Web이 있는지 확인했습니다.

여전히 같은 오류 메시지가 나타납니다.

누구나 아이디어가 있습니까? MVC에 필요한 서버 구성이 있습니까?

Server Error in '/' Application. ________________________________________ Could not load file or assembly 'Microsoft.AI.Web' 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 'Microsoft.AI.Web' 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 'Microsoft.AI.Web' 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 'Microsoft.AI.Web' or one of its dependencies. The system cannot find the file specified.] System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMarkHandle stackMark, IntPtr pPrivHostBinder, Boolean loadTypeFromPartialName, ObjectHandleOnStack type) +0 System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, IntPtr pPrivHostBinder, Boolean loadTypeFromPartialName) +95 System.RuntimeType.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark) +53
System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase) +44 System.Web.Compilation.BuildManager.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase) +61
System.Web.Configuration.ConfigUtil.GetType(String typeName, String propertyName, ConfigurationElement configElement, XmlNode node, Boolean checkAptcaBit, Boolean ignoreCase) +49

[ConfigurationErrorsException: Could not load file or assembly 'Microsoft.AI.Web' or one of its dependencies. The system cannot find the file specified.]
System.Web.Configuration.ConfigUtil.GetType(String typeName, String propertyName, ConfigurationElement configElement, XmlNode node, Boolean checkAptcaBit, Boolean ignoreCase) +558
System.Web.Configuration.ConfigUtil.GetType(String typeName, String propertyName, ConfigurationElement configElement, Boolean checkAptcaBit) +30
System.Web.Configuration.Common.ModulesEntry.SecureGetType(String typeName, String propertyName, ConfigurationElement configElement) +57 System.Web.Configuration.Common.ModulesEntry..ctor(String name, String typeName, String propertyName, ConfigurationElement configElement) +54 System.Web.HttpApplication.BuildIntegratedModuleCollection(List`1 moduleList) +191
System.Web.HttpApplication.GetModuleCollection(IntPtr appContext) +1086 System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers) +123
System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context) +169
System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context) +396
System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext) +333

[HttpException (0x80004005): Could not load file or assembly 'Microsoft.AI.Web' or one of its dependencies. The system cannot find the file specified.]
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +525
System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +124 System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +700

UPDATE :

나는 기본 빈 MVC 응용 프로그램의 벌금을 배포 할 수 있습니다. 그래서 저는 배포하려는 프로젝트의 뷰, 모델 및 컨트롤러를 가로 질러 전송할 것이라고 생각했습니다. 이 작업을 수행 할 때 오류가 다시 발생합니다. 오류가 발생할 수있는 코드가 있습니까?

+0

이 AI는 Application Insights와 함께 사용됩니다. 프로젝트에서 필요하지 않은 경우에도 제거 할 수 있습니다. 그렇지 않은 경우 https://stackoverflow.com/a/39776427/7974050 – Amit

+0

을 확인하십시오. MVC 프로젝트가 표준으로 제공되므로 필요 없는지 불확실한가요? @Amit – elszeus

+0

web.release.config에서 어셈블리를 삭제하지 않는지 확인하십시오. – GGO

답변

0

안녕하십니까, 내가 게시 한 오류로 인해 애플리케이션 통찰력을 제거하면 404가 라우팅 문제가되었습니다. 로컬 라우팅을 실행할 때 아무런 문제가 없지만 서버에서 라우팅이 약간 다릅니다 (구성이 다를 수 있음). 성공적인 URL 라우팅을 위해 Url.Action (보기에서) 및 ~/Home/Index (쿠키 검사기에서)을 사용하기로했습니다.

이렇게 시작하는 것이 명확하지 않았으므로 다른 사람에게 도움이되기를 바랍니다.