2016-06-06 3 views
0

Bonobo 5.2.0을 설치하려고합니다. Windows Server 2008 R2에서 IIS7 아래. 설치 후 나는이 오류 메시지가 표시됨 : 폴더 응용 프로그램으로 전환 된Bonobo 설치 - 응용 프로그램의 서버 오류 : 예외 .Mvc

Server Error in '/Bonobo' Application. 

Could not load file or assembly 'Exceptionless.Mvc' 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 'Exceptionless.Mvc' 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 'Exceptionless.Mvc' 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. 


Stack Trace: 

[FileNotFoundException: Could not load file or assembly 'Exceptionless.Mvc' 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) +70 
System.RuntimeType.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark) +39 
System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase) +37 
System.Web.Compilation.BuildManager.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase) +65 
System.Web.Configuration.ConfigUtil.GetType(String typeName, String propertyName, ConfigurationElement configElement, XmlNode node, Boolean checkAptcaBit, Boolean ignoreCase) +38 

[ConfigurationErrorsException: Could not load file or assembly 'Exceptionless.Mvc' 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) +359 
System.Web.Configuration.ConfigUtil.GetType(String typeName, String propertyName, ConfigurationElement configElement, Boolean checkAptcaBit) +19 
System.Web.Configuration.Common.ModulesEntry.SecureGetType(String typeName, String propertyName, ConfigurationElement configElement) +39 
System.Web.Configuration.Common.ModulesEntry..ctor(String name, String typeName, String propertyName, ConfigurationElement configElement) +42 
System.Web.HttpApplication.BuildIntegratedModuleCollection(List`1 moduleList) +160 
System.Web.HttpApplication.GetModuleCollection(IntPtr appContext) +950 
System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers) +82 
System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context) +172 
System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context) +336 
System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext) +296 

[HttpException (0x80004005): Could not load file or assembly 'Exceptionless.Mvc' or one of its dependencies. The system cannot find the file specified.] 
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +9952212 
System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +101 
System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +254 

, 내가 설치하고 MVC4.0 등록했습니다, 인증을 적절하게 설정되었습니다 ... 내가 뭘 놓친 거지?

어디서나 문제를 찾을 수 없었습니다.

감사합니다.

답변

1

문제는 이미 응용 프로그램이 실행중인 웹 서버에 배치하려고하는 것 같습니다. 초기 사이트 용으로 설정된 글로벌 web.config가이 설치를 방해하고 있다고 가정합니다.

이 문제에 대한 해결책이나 해결책은별로 없지만 적어도 그 이유는 무엇인지 알고 있습니다.

해결 방법 : Bonobo를 다른 서버로 이동하십시오.

+0

나는 예외 프로젝트에서 작업합니다. 그것의 소리에서, Exceptionless dependencies가 bin 폴더에 있지 않은 것처럼 들립니다. 배포에서 모든 파일을 복사 했습니까? –

관련 문제