472,353 Members | 2,027 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,353 software developers and data experts.

msbuild : Message: Value cannot be null. Parameter name: type

HI all

I am using msbuild to compile my web application project. After
building the solution I get the following error message:
Server Error in '/Community' Application.
--------------------------------------------------------------------------------

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.

Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: type

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:
[ArgumentNullException: Value cannot be null.
Parameter name: type]
System.Activator.CreateInstance(Type type, Boolean nonPublic)
+2796915
System.Web.Profile.ProfileBase.CreateMyInstance(St ring username,
Boolean isAuthenticated) +76
System.Web.Profile.ProfileBase.Create(String username, Boolean
isAuthenticated) +312
CommunityServer.ASPNet20MemberRole.CSProfiles.Crea te(String
userName, Boolean authenticated) +40

CommunityServer.Components.CommonDataProvider.Popu lateUserFromIDataReader(IDataReader
dr, IMembershipUser member, Boolean isEditable, Boolean includeAudit)
+157

CommunityServer.Components.CommonDataProvider.cs_P opulateUserFromIDataReader(IDataReader
dr, Boolean isEditable) +59
CommunityServer.Data.SqlCommonDataProvider.GetUser (Int32 userID,
String username, Boolean isOnline, Boolean isEditable, String
lastAction) +516
CommunityServer.Data.SqlCommonDataProvider.GetAnon ymousUser(Int32
settingsID) +457
CommunityServer.Users.GetAnonymousUser(Boolean fromCache) +242
CommunityServer.Users.GetAnonymousUser() +29
CommunityServer.Users.GetUser(Int32 userID, String username, Boolean
isOnline, Boolean isCacheable) +147
CommunityServer.Users.GetUser(Boolean isOnline) +48
CommunityServer.Components.CSContext.get_User() +129
CommunityServer.CSHttpModule.Application_Authorize Request(Object
source, EventArgs e) +191

System.Web.SyncEventExecutionStep.System.Web.HttpA pplication.IExecutionStep.Execute()
+92
System.Web.HttpApplication.ExecuteStep(IExecutionS tep step, Boolean&
completedSynchronously) +64

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42;
ASP.NET Version:2.0.50727.42

If I build my solution in Visual Studio it works correctly. Therefore,
i am assuming this is an msbuild issue. Has anyone experienced this
before and does anyone have a resoution or any ideas?

Cheers, Paul

Aug 31 '06 #1
2 14554
I got the same error yesterday, but it happenes when i deploy the application
to the server.
it works fine on my pc BUT when i build the application with msbuild and
then copy the built files to the server i get the error when i run the
application.
it doesn't give any errors while building though.

i am using the web deployment project add in to build the web application.
"pa***********@gmail.com" wrote:
HI all

I am using msbuild to compile my web application project. After
building the solution I get the following error message:
Server Error in '/Community' Application.
--------------------------------------------------------------------------------

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.

Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: type

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:
[ArgumentNullException: Value cannot be null.
Parameter name: type]
System.Activator.CreateInstance(Type type, Boolean nonPublic)
+2796915
System.Web.Profile.ProfileBase.CreateMyInstance(St ring username,
Boolean isAuthenticated) +76
System.Web.Profile.ProfileBase.Create(String username, Boolean
isAuthenticated) +312
CommunityServer.ASPNet20MemberRole.CSProfiles.Crea te(String
userName, Boolean authenticated) +40

CommunityServer.Components.CommonDataProvider.Popu lateUserFromIDataReader(IDataReader
dr, IMembershipUser member, Boolean isEditable, Boolean includeAudit)
+157

CommunityServer.Components.CommonDataProvider.cs_P opulateUserFromIDataReader(IDataReader
dr, Boolean isEditable) +59
CommunityServer.Data.SqlCommonDataProvider.GetUser (Int32 userID,
String username, Boolean isOnline, Boolean isEditable, String
lastAction) +516
CommunityServer.Data.SqlCommonDataProvider.GetAnon ymousUser(Int32
settingsID) +457
CommunityServer.Users.GetAnonymousUser(Boolean fromCache) +242
CommunityServer.Users.GetAnonymousUser() +29
CommunityServer.Users.GetUser(Int32 userID, String username, Boolean
isOnline, Boolean isCacheable) +147
CommunityServer.Users.GetUser(Boolean isOnline) +48
CommunityServer.Components.CSContext.get_User() +129
CommunityServer.CSHttpModule.Application_Authorize Request(Object
source, EventArgs e) +191

System.Web.SyncEventExecutionStep.System.Web.HttpA pplication.IExecutionStep.Execute()
+92
System.Web.HttpApplication.ExecuteStep(IExecutionS tep step, Boolean&
completedSynchronously) +64

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42;
ASP.NET Version:2.0.50727.42

If I build my solution in Visual Studio it works correctly. Therefore,
i am assuming this is an msbuild issue. Has anyone experienced this
before and does anyone have a resoution or any ideas?

Cheers, Paul

Sep 19 '06 #2
I think i found the problem
don't use the (remove App_Code.Compiled file) option

"Toty Santana" wrote:
I got the same error yesterday, but it happenes when i deploy the application
to the server.
it works fine on my pc BUT when i build the application with msbuild and
then copy the built files to the server i get the error when i run the
application.
it doesn't give any errors while building though.

i am using the web deployment project add in to build the web application.
"pa***********@gmail.com" wrote:
HI all

I am using msbuild to compile my web application project. After
building the solution I get the following error message:
Server Error in '/Community' Application.
--------------------------------------------------------------------------------

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.

Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: type

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:
[ArgumentNullException: Value cannot be null.
Parameter name: type]
System.Activator.CreateInstance(Type type, Boolean nonPublic)
+2796915
System.Web.Profile.ProfileBase.CreateMyInstance(St ring username,
Boolean isAuthenticated) +76
System.Web.Profile.ProfileBase.Create(String username, Boolean
isAuthenticated) +312
CommunityServer.ASPNet20MemberRole.CSProfiles.Crea te(String
userName, Boolean authenticated) +40

CommunityServer.Components.CommonDataProvider.Popu lateUserFromIDataReader(IDataReader
dr, IMembershipUser member, Boolean isEditable, Boolean includeAudit)
+157

CommunityServer.Components.CommonDataProvider.cs_P opulateUserFromIDataReader(IDataReader
dr, Boolean isEditable) +59
CommunityServer.Data.SqlCommonDataProvider.GetUser (Int32 userID,
String username, Boolean isOnline, Boolean isEditable, String
lastAction) +516
CommunityServer.Data.SqlCommonDataProvider.GetAnon ymousUser(Int32
settingsID) +457
CommunityServer.Users.GetAnonymousUser(Boolean fromCache) +242
CommunityServer.Users.GetAnonymousUser() +29
CommunityServer.Users.GetUser(Int32 userID, String username, Boolean
isOnline, Boolean isCacheable) +147
CommunityServer.Users.GetUser(Boolean isOnline) +48
CommunityServer.Components.CSContext.get_User() +129
CommunityServer.CSHttpModule.Application_Authorize Request(Object
source, EventArgs e) +191

System.Web.SyncEventExecutionStep.System.Web.HttpA pplication.IExecutionStep.Execute()
+92
System.Web.HttpApplication.ExecuteStep(IExecutionS tep step, Boolean&
completedSynchronously) +64

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42;
ASP.NET Version:2.0.50727.42

If I build my solution in Visual Studio it works correctly. Therefore,
i am assuming this is an msbuild issue. Has anyone experienced this
before and does anyone have a resoution or any ideas?

Cheers, Paul
Sep 19 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Chris Herring | last post by:
Hi there: Well, let me start off by saying that I am a Visual Studio drag and drop weenie, not a real programmer. So I tend to get confused when...
21
by: Michael Bierman | last post by:
Please forgive the simplicy of this question. I have the following code which attempts to determine the color of some text and set other text to...
1
by: Sanjay Godbole | last post by:
Hi, I am getting following error while executing the axpx page. Description: An unhandled exception occurred during the execution of the...
5
by: Al | last post by:
Hi all We have created a xml file that imports a single project using the Import element. This project compiles to a class library, but has...
3
by: Danny | last post by:
Hi I trying to master msBuild but have a problem. I have a solution that I wish to build using msbuild but want to override...
4
by: =?Utf-8?B?QmFidU1hbg==?= | last post by:
Hi, I have a GridView and a SqlDataSource controls on a page. The SqlDataSource object uses stored procedures to do the CRUD operations. The...
0
by: pankajprakash | last post by:
Hi all I am using the Ajax control toolkit and want to the fill the gridview but at the time of rendering it occurs the error...
7
by: shapper | last post by:
Hello, I am working on an ASP.MET MVC Web Application with NET 3.5 in VS 2008. I need to run some extra tasks on this project build so I...
2
by: qwedster | last post by:
Folk! How to programattically check if null value exists in database table (using stored procedure)? I know it's possble in the Query Analyzer...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.