I get an error when I try to create a site using the object model
this is my code in the web part to create share point sites.
SPSecurity.RunWithElevatedPrivileges(delegate()
{
if (ITTSiteDefinitionTemplate != null)
{
LocaleID = ITTSiteDefinitionTemplate.Lcid;
try
{
using (SPSite CurrentSite = new SPSite(_siteCollection))
{
SPWebApplication CurrentWebApp = CurrentSite.WebApplication;
CurrentWebApp.FormDigestSettings.Enabled = false;
CurrentSite.AllowUnsafeUpdates = true;
using (SPWeb NewWeb = CurrentSite.AllWebs.Add(RelativeITTURL, projectCode, SiteDescription, LocaleID, ITTSiteDefinitionTemplate, false, false))
{
NewWeb.AllowUnsafeUpdates = true;
NewWeb.Navigation.UseShared = true;
NewWeb.BreakRoleInheritance(true);
ITTSiteID = new Guid(NewWeb.ID.ToString());
NewWeb.Update();
NewWeb.AllowUnsafeUpdates = false;
}
CurrentWebApp.FormDigestSettings.Enabled = true;
CurrentSite.AllowUnsafeUpdates = false;
}
}
catch (Exception ex1)
{
}
}
});
I get an error at this line
CurrentSite.AllWebs.Add...
I can create sites successfully with the system account but with a limited test account it fails. The funny thing is it was working at one point in time but now it is not.
This is the call stack
Error Message: The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.
Error Source: Microsoft.SharePoint
Stack Trace: at Microsoft.SharePoint.Library.SPRequest.CreateWeb(String bstrUrl, String bstrTitle, String bstrDescription, UInt32 nLCID, String bstrWebTemplate, Boolean bCreateUniqueWeb, Boolean bConvertIfThere, Guid& pgWebId, Guid& pgRootFolderId, Boolean bCreateSystemCatalogs)
at Microsoft.SharePoint.SPSite.CreateWeb(String strUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere, Guid webId, Guid rootFolderId, Boolean createSystemCatalogs)
at Microsoft.SharePoint.SPSite.SPWebCollectionProvider.CreateWeb(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean bCreateUniqueSubweb, Boolean bConvertIfThere)
at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, String strWebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere)
at Microsoft.SharePoint.SPWebCollection.Add(String strWebUrl, String strTitle, String strDescription, UInt32 nLCID, SPWebTemplate WebTemplate, Boolean useUniquePermissions, Boolean bConvertIfThere)
at ProjectManWebParts.ITTStage2DataCapture.<>c__DisplayClass3.<BtnProvisionITT_Click>b__0()
Target Site: Void CreateWeb(System.String, System.String, System.String, UInt32, System.String, Boolean, Boolean, System.Guid ByRef, System.Guid ByRef, Boolean)
Data Begin Information
Data End Information
Error Message: The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.
Error Source:
Stack Trace: at Microsoft.SharePoint.Library.SPRequestInternalClass.CreateWeb(String bstrUrl, String bstrTitle, String bstrDescription, UInt32 nLCID, String bstrWebTemplate, Boolean bCreateUniqueWeb, Boolean bConvertIfThere, Guid& pgWebId, Guid& pgRootFolderId, Boolean bCreateSystemCatalogs)
at Microsoft.SharePoint.Library.SPRequest.CreateWeb(String bstrUrl, String bstrTitle, String bstrDescription, UInt32 nLCID, String bstrWebTemplate, Boolean bCreateUniqueWeb, Boolean bConvertIfThere, Guid& pgWebId, Guid& pgRootFolderId, Boolean bCreateSystemCatalogs)
Target Site: Void CreateWeb(System.String, System.String, System.String, UInt32, System.String, Boolean, Boolean, System.Guid ByRef, System.Guid ByRef, Boolean)
Data Begin Information
Data End Information
Custom Error Message: Error while creating the site for the 3rd time.
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Please any help is truly appreciated.
Looks like this error doesn't really allow any code to be executed which is after the catch the block...
