an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Using DotShoppingCart > DSC.User.AddUser , object can not instantiate w...
Last Post 3/31/2010 1:56:16 PM By Bahram. 9 replies.
3/31/2010 10:25:54 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
DSC.User.AddUser , object can not instantiate when adding user in code
-
3/31/2010 10:31:51 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: DSC.User.AddUser error capturing
It's via exception handling.
DotShoppingCart Staff
3/31/2010 11:04:18 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
DSC.User.AddUser , object can not instantiate when adding user in code
-
3/31/2010 11:18:04 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: DSC.User.AddUser error capturing
It returns int as the userId. But you should not use the return value as the error capture.
DotShoppingCart Staff
3/31/2010 11:29:33 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
DSC.User.AddUser , object can not instantiate when adding user in code
-
3/31/2010 11:42:10 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: DSC.User.AddUser error capturing
I answered already. You can catch the generic Exception. If you don't know exception, please read MSDN online.
DotShoppingCart Staff
3/31/2010 11:55:23 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
DSC.User.AddUser , object can not instantiate when adding user in code
-
3/31/2010 11:59:26 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: DSC.User.AddUser error capturing
Fix you app.config file. Try copying web.config content to app.config.
DotShoppingCart Staff
3/31/2010 12:25:43 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
DSC.User.AddUser , object can not instantiate when adding user in code
-
3/31/2010 1:56:16 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: DSC.User.AddUser error capturing
This is my code to add user directly. The membership section works, but AddUser returns this error :
 
 An exception occurred creating the user. The type initializer for 'DSC' threw an exception. System.NullReferenceException: Object reference not set to an instance of an object. at DotShoppingCart.Commercial.Base.Constant.DSC..cctor()
 
 
MembershipCreateStatus status;
            try
            {
                MembershipUser m = Membership.CreateUser(nU.UserName, nU.PassWord , nU.Email , "The greatest band ever?", "none", true, out status);
                if (m == null)
                {
                    errorMsg += GetErrorMessage(status) + Environment.NewLine;
                    Error.Msg = errorMsg;
                    return (0);
                }
                else
                {
                    errorMsg += "User " + nU.UserName + " added " + Environment.NewLine;
                   DSC.User.AddUser(nU.UserName, nU.NewsLetter , CoreHelper.GetReferralId(), nU.FirstName,
                                 nU.LastName, nU.CompanyName, nU.Address, nU.Address2, nU.City, nU.State,
                                 nU.Zipcode,  nU.CountryId , nU.Phone , nU.PhoneExt  , nU.Created, false );
                  string roleName = HttpContext.Current.Session["registerRole"] as string;
                  if ((!string.IsNullOrEmpty(roleName)) && (roleName != Constant.Security.AdminRole))
                  {
                      Roles.AddUserToRole(nU.UserName, roleName);
                  }
               
                    return (1);
                }
            }
            catch (Exception e)
            {
                errorMsg += "An exception occurred creating the user." + Environment.NewLine + "\n\r" + e.Message +  "\n\r" + e.InnerException ;
                Error.Msg = errorMsg;
                return (0);
            }
        }