Activator.CreateInstance throws ArgumentNullException for parameter 'Type'

大兔子大兔子 提交于 2019-12-10 10:55:47

问题


I recently encountered a problem with my Profile provider: it wouldn't retrieve profiles correctly (see error below). It worked locally, but when I put the code compiled by a Web Deployment project on a server it would crash.

Value cannot be null. Parameter name: type 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.

Strack Trace:
[ArgumentNullException: Value cannot be null. Parameter name: type] System.Activator.CreateInstance(Type type, Boolean nonPublic) +2796915 System.Web.Profile.ProfileBase.CreateMyInstance(String username, Boolean isAuthenticated) +76 System.Web.Profile.ProfileBase.Create(String username, Boolean isAuthenticated) +312


I found the solution, but it's far from being obvious (see my answer below).


回答1:


The solution to my error was to uncheck this option from the Web Deployment project:

Treat as library component (remove App_Code.Compiled file)




回答2:


Simply building the web deployment project again after the checkbox change is sometimes not sufficient.

You should rebuild the web site, or clean the ASP.NET temporary ASP.NET Files folder, usually located in "%WINDIR%Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files".




回答3:


I've recently experienced this problem and it turned out to be a missing dependency. Using the fuslogvw.exe tool provided with visual studio finally identified the problem.



来源:https://stackoverflow.com/questions/926729/activator-createinstance-throws-argumentnullexception-for-parameter-type

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!