Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SPMeta2.Exceptions.SPMeta2ModelDeploymentException : Field or property "vti_iplabelid" does not exist. #1130

Open
Yash85 opened this issue Mar 12, 2019 · 2 comments

Comments

@Yash85
Copy link

Yash85 commented Mar 12, 2019

Hi,

I'm trying to deploy SharePoint online intranet solution which used SPMeta2. There are more than 15 sub sites within the site collection. Therefore the deployment is split in to few modules according to the sub sites.

But the deployment getting fail time to time with following error. Can someone help me on this?

Unhandled Exception:   SPMeta2.Exceptions.SPMeta2ModelDeploymentException: There was an error while   provisioning definition. Check ModelNode prop. --->   Microsoft.SharePoint.Client.ServerException: Field or property   "vti_iplabelid" does not exist. at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream   responseStream) at   Microsoft.SharePoint.Client.ClientRequest.ProcessResponse() at   Microsoft.SharePoint.Client.ClientRequest.ExecuteQueryToServer(ChunkStringBuilder   sb) at Microsoft.SharePoint.Client.ClientRequest.ExecuteQuery() at   Microsoft.SharePoint.Client.ClientRuntimeContext.ExecuteQuery() at   Microsoft.SharePoint.Client.ClientContext.ExecuteQuery() at   SPMeta2.CSOM.Services.Impl.DefaultClientRuntimeContextService.InternalExecuteQuery(ClientRuntimeContext   context) at   SPMeta2.CSOM.Services.Impl.DefaultClientRuntimeContextService.ExecuteQuery(ClientRuntimeContext   context) at   SPMeta2.CSOM.Extensions.ClientRuntimeContextExtensions.ExecuteQueryWithTrace(ClientRuntimeContext   context) at SPMeta2.CSOM.ModelHandlers.ListModelHandler.LoadCurrentList(Web   web, ListDefinition listModel) at   SPMeta2.CSOM.ModelHandlers.ListModelHandler.WithResolvingModelHost(ModelHostResolveContext   modelHostContext) at   SPMeta2.Services.Impl.DefaultModelTreeTraverseService.Traverse(Object   modelHost, ModelNode modelNode) --- End of inner exception stack trace --- at   SPMeta2.Services.Impl.DefaultModelTreeTraverseService.Traverse(Object   modelHost, ModelNode modelNode) at   SPMeta2.Services.Impl.DefaultModelTreeTraverseService.<>c__DisplayClass13_0.<Traverse>b__0(Object   childModelHost) at   SPMeta2.CSOM.ModelHandlers.WebModelHandler.WithResolvingModelHost(ModelHostResolveContext   modelHostContext) at   SPMeta2.Services.Impl.DefaultModelTreeTraverseService.Traverse(Object   modelHost, ModelNode modelNode) at   SPMeta2.Services.Impl.DefaultModelTreeTraverseService.<>c__DisplayClass13_0.<Traverse>b__0(Object   childModelHost) at   SPMeta2.CSOM.ModelHandlers.WebModelHandler.WithResolvingModelHost(ModelHostResolveContext   modelHostContext) at SPMeta2.Services.Impl.DefaultModelTreeTraverseService.Traverse(Object   modelHost, ModelNode modelNode) at   SPMeta2.Services.ModelServiceBase.ProcessModelDeployment(Object modelHost,   ModelNode modelNode) at   SPMeta2.Services.ModelServiceBase.DeployModel(ModelHostBase modelHost,   ModelNode model) at   SPMeta2.CSOM.Services.CSOMProvisionService.DeployModel(ModelHostBase   modelHost, ModelNode model) at   
Intranet.Release.Models.DepartmentSites.EnsureAboutUsRootWeb() in   D:\a\1\s\Intranet.Release\Models\DepartmentSites.cs:line 207 at   Intranet.Release.Models.MainSiteCollection.EnsureWebIA() in   D:\a\1\s\Intranet.Release\Models\MainSiteCollection.cs:line 578 at   PTT.Intranet.Release.Managers.ProvisioningManager.ProvisionMainSiteCollection()   in D:\a\1\s\Intranet.Release\Managers\ProvisioningManager.cs:line 43 at   Intranet.Release.Program.Main(String[] args) in   D:\a\1\s\Intranet.Release\Program.cs:line 33

--
Process completed with exit code -532462766 and had 1 error(s) written to the error stream.

Some times this deploy without any error. and some times randomly break it in sub site.

SharePoint API

Which version of SharePoint runtime do you use?

  • CSOM / SSOM / O365

SPMeta2 API

SPMeta2 versions :
Microsoft.SharePointOnline.CSOM.16.1.6518.1200
SPMeta2.Core.1.2.130
SPMeta2.Core.Standard.1.2.130
SPMeta2.CSOM.Foundation-v16.1.2.130
SPMeta2.CSOM.Standard-v16.1.2.130


### SPMeta2 model 

// Sample code for one model that I used to deploy. There are more than 10
 public void EnsureSiteIA()
        {
            _notificationManager.NotifyInformation("Ensuring Site Collection IA..");

            var localContext = _ctx;
            using (localContext)
            {
                var siteModel = SPMeta2Model.NewSiteModel(site =>
                {
                    #region Features
                    site.AddSiteFeature(BuiltInSiteFeatures.SharePointServerStandardSiteCollectionFeatures.Inherit(
                        feature =>
                        {
                            feature.Enable = true;
                            feature.ForceActivate = true;
                        }));
                    site.AddSiteFeature(BuiltInSiteFeatures.SearchServerWebPartsAndTemplates.Inherit(
                    feature =>
                    {
                        feature.Enable = true;
                        feature.ForceActivate = true;
                    }));
                    #endregion
               //Fields
               //Content types
               //Security groups

               });
//Exception throw in below line and it doesn't matter which site you are in and its random
//How ever it failed when you try to deploy few models together             
 _provisioningService.DeployModel(SiteModelHost.FromClientContext(localContext), siteModel);
            }
            _notificationManager.NotifySuccess("Site Collection Artefacts provisioned");
        }
@SubPointSupport
Copy link
Contributor

Hi @Yash85 , thanks for raising this, it is very helpful.

Feels that we might have changes on O365 side, new attributes or properties which might affect provision flow. Noted that with "Issue with provisioning Publishing PageLayouts" #1128 as well.

We'll look into this, aiming for a solution later this week, max around 18/19th this months.

Meanwhile, you can pin where the issue occurs by using callback on the provision progress

Add simplified "Provision Progress" callback #576

This one should help to identify the artifact, the model node where the issue happens. That might give more clue on what the resolution can be. Would you like to give it a go to pin the failure more specifically?

provisionService.OnModelNodeProcessing += (sender, args) =>
            {
                Trace.WriteLine(
                    string.Format("Processing: [{0}/{1}] - [{2}%] - [{3}] [{4}]",
                    new object[] {
                                  args.ProcessedModelNodeCount,
                                  args.TotalModelNodeCount,
                                  100d * (double)args.ProcessedModelNodeCount / (double)args.TotalModelNodeCount,
                                  args.CurrentNode.Value.GetType().Name,
                                  args.CurrentNode.Value
                                  }));
            };

provisionService.OnModelNodeProcessed += (sender, args) =>
            {
                Trace.WriteLine(
                   string.Format("Processed: [{0}/{1}] - [{2}%] - [{3}] [{4}]",
                   new object[] {
                                  args.ProcessedModelNodeCount,
                                  args.TotalModelNodeCount,
                                  100d * (double)args.ProcessedModelNodeCount / (double)args.TotalModelNodeCount,
                                  args.CurrentNode.Value.GetType().Name,
                                  args.CurrentNode.Value
                                  }));
            };

Finally, as you said that the issue happens if several models get deployed, we'll see if we should add this scenario into regression testing. We do consequent deployment but the model is the same-same or with changed properties. Might be a weird combination of particular artifacts / properties coming together, that's a good question.

@Yash85
Copy link
Author

Yash85 commented Mar 13, 2019

Thanks a lot for your reply.
I have tried your code lines as below for few sub site deployments. ( Hope I did it in correct way )

` _provisioningService.OnModelNodeProcessing += (sender, args) =>
{
_notificationManager.NotifyInformation(
string.Format("Processing: [{0}/{1}] - [{2}%] - [{3}] [{4}]",
new object[] {
args.ProcessedModelNodeCount,
args.TotalModelNodeCount,
100d * (double)args.ProcessedModelNodeCount / (double)args.TotalModelNodeCount,
args.CurrentNode.Value.GetType().Name,
args.CurrentNode.Value
}));
};

            _provisioningService.DeployModel(WebModelHost.FromClientContext(localContext), webModel);

            _provisioningService.OnModelNodeProcessed += (sender, args) =>
            {
                _notificationManager.NotifyInformation(
                   string.Format("Processed: [{0}/{1}] - [{2}%] - [{3}] [{4}]",
                   new object[] {
                              args.ProcessedModelNodeCount,
                              args.TotalModelNodeCount,
                              100d * (double)args.ProcessedModelNodeCount / (double)args.TotalModelNodeCount,
                              args.CurrentNode.Value.GetType().Name,
                              args.CurrentNode.Value
                                  }));
            };

`
I have tried few attempts of consecutive sequence deployments and result was something like below.

Sites to deploy :
Sub site 1 > Sub site 2 > Sub site 3 > Sub site 4 > Sub site 5 > Sub site 6

Result :
Attempt 1 > Sub site 1: Pass > Sub site 2 : Fail (Deployment breaks )
Attempt 2 > Sub site 1: Pass > Sub site 2 : Pass > Sub site 3: Fail > (Deployment breaks )
Attempt 3 > Sub site 1: Pass > Sub site 2 : Pass > Sub site 3: Pass > Sub site 4: Fail (Deployment breaks )
Attempt 4 > Sub site 1: Pass > Sub site 2 : Pass > Sub site 3: Pass > Sub site 4: Pass > Sub site 5: Fail (Deployment breaks )
Attempt 5 > Sub site 1: Pass > Sub site 2 : Pass > Sub site 3: Pass > Sub site 4: Pass > Sub site 5: Pass Sub site 6 : Fail (Deployment breaks )
Attempt 6 > Sub site 1: Pass > Sub site 2 : Pass > Sub site 3: Pass > Sub site 4: Pass > Sub site 5: Pass Sub site 6 : Pass

Here is the trace I got from first 3 attempts. Hope this will be helpful for you to understand the issue.

Attempt 1

Begin Provisioning to https://demo.sharepoint.com/sites/prep-DEMOSITE-intranet
Information: Ensuring Root Site IA...
Root Site IA provisioned
Information: Provision Department Sites/ Sub sites...
Information: Ensuring About us site
Information: Ensuring Corporate Services site
Information: Ensuring ICT site
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Information and Communications Technology] Description:[] Convert(p.LCID):[1033]
Convert(p.UseUniquePermission):[False] Url:[AboutUs/CS/ICT] WebTemplate:[BLANKI
NTERNET#0] CustomWebTemplate:[]]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]


Inner Exception: {"Field or property "vti_iplabelid" does not exist."}

Stack trace:

at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
at Microsoft.SharePoint.Client.ClientRequest.ProcessResponse()
at Microsoft.SharePoint.Client.ClientRequest.ExecuteQueryToServer(ChunkStringBuilder sb)
at Microsoft.SharePoint.Client.ClientRequest.ExecuteQuery()
at Microsoft.SharePoint.Client.ClientRuntimeContext.ExecuteQuery()
at Microsoft.SharePoint.Client.ClientContext.ExecuteQuery()
at SPMeta2.CSOM.Services.Impl.DefaultClientRuntimeContextService.InternalExecuteQuery(ClientRuntimeContext context)
at SPMeta2.CSOM.Services.Impl.DefaultClientRuntimeContextService.ExecuteQuery(ClientRuntimeContext context)
at SPMeta2.CSOM.Extensions.ClientRuntimeContextExtensions.ExecuteQueryWithTrace(ClientRuntimeContext context)
at SPMeta2.CSOM.ModelHandlers.ListModelHandler.LoadCurrentList(Web web, ListDefinition listModel)
at SPMeta2.CSOM.ModelHandlers.ListModelHandler.WithResolvingModelHost(ModelHostResolveContext modelHostContext)
at SPMeta2.Services.Impl.DefaultModelTreeTraverseService.Traverse(Object modelHost, ModelNode modelNode)

ModelNode :
{Node value: [ListDefinition] - Title: [Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:[]}

Attempt 2

Begin Provisioning to https://demo.sharepoint.com/sites/prep-DEMOSITE-intranet
Information: Ensuring Root Site IA...
Root Site IA provisioned
Information: Provision Department Sites/ Sub sites...
Information: Ensuring About us site
Information: Ensuring Corporate Services site
Information: Ensuring ICT site
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Information and Communications Technology] Description:[] Convert(p.LCID):[1033]
Convert(p.UseUniquePermission):[False] Url:[AboutUs/CS/ICT] WebTemplate:[BLANKI
NTERNET#0] CustomWebTemplate:[]]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [6/11] - [54.5454545454545%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [7/11] - [63.6363636363636%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [8/11] - [72.7272727272727%] - [PublishingPageDefinitio
n] [Title:[ICT] FileName:[ICT.aspx] PageLayoutFileName:[ContentPageLayout.aspx]
Description:[]]
Information: Processing: [9/11] - [81.8181818181818%] - [MasterPageSettingsDefin
ition] [SiteMasterPageUrl:[/_catalogs/masterpage/DEMOSITE.master] Convert(p.SiteMaste
rPageInheritFromMaster):[] SystemMasterPageUrl:[/_catalogs/masterpage/seattle.ma
ster] Convert(p.SystemMasterPageInheritFromMaster):[]]
Information: Processing: [10/11] - [90.9090909090909%] - [WelcomePageDefinition]
[Url:[Pages/ICT.aspx]]
Information: Ensuring Finance site
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processed: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[]
Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Ur
l:[/] WebTemplate:[] CustomWebTemplate:[]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Finance] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[F
alse] Url:[AboutUs/CS/Finance] WebTemplate:[BLANKINTERNET#0] CustomWebTemplate:[
]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Finance] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[F
alse] Url:[AboutUs/CS/Finance] WebTemplate:[BLANKINTERNET#0] CustomWebTemplate:[
]]
Information: Processed: [2/11] - [18.1818181818182%] - [WebDefinition] [Title:[F
inance] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[Fa
lse] Url:[AboutUs/CS/Finance] WebTemplate:[BLANKINTERNET#0] CustomWebTemplate:[]
]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processed: [3/11] - [27.2727272727273%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:
[]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processed: [4/11] - [36.3636363636364%] - [ContentTypeLinkDefinitio
n] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0A
14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D81
DDBFCA3]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processed: [5/11] - [45.4545454545455%] - [HideContentTypeLinksDefi
nition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SPM
eta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentTy
pes.ContentTypeLinkValue]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processed: [6/11] - [54.5454545454545%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:
[]]


Inner Exception: {"Field or property "vti_iplabelid" does not exist."}

Stack trace:

at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
at Microsoft.SharePoint.Client.ClientRequest.ProcessResponse()
at Microsoft.SharePoint.Client.ClientRequest.ExecuteQueryToServer(ChunkStringBuilder sb)
at Microsoft.SharePoint.Client.ClientRequest.ExecuteQuery()
at Microsoft.SharePoint.Client.ClientRuntimeContext.ExecuteQuery()
at Microsoft.SharePoint.Client.ClientContext.ExecuteQuery()
at SPMeta2.CSOM.Services.Impl.DefaultClientRuntimeContextService.InternalExecuteQuery(ClientRuntimeContext context)
at SPMeta2.CSOM.Services.Impl.DefaultClientRuntimeContextService.ExecuteQuery(ClientRuntimeContext context)
at SPMeta2.CSOM.Extensions.ClientRuntimeContextExtensions.ExecuteQueryWithTrace(ClientRuntimeContext context)
at SPMeta2.CSOM.ModelHandlers.ListModelHandler.LoadCurrentList(Web web, ListDefinition listModel)
at SPMeta2.CSOM.ModelHandlers.ListModelHandler.WithResolvingModelHost(ModelHostResolveContext modelHostContext)
at SPMeta2.Services.Impl.DefaultModelTreeTraverseService.Traverse(Object modelHost, ModelNode modelNode)

ModelNode :
{Node value: [ListDefinition] - Title: [Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:[]}

Attempt 3

Begin Provisioning to https://demo.sharepoint.com/sites/prep-DEMOSITE-intranet
Information: Ensuring Root Site IA...
Root Site IA provisioned
Information: Provision Department Sites/ Sub sites...
Information: Ensuring About us site
Information: Ensuring Corporate Services site
Information: Ensuring ICT site
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Information and Communications Technology] Description:[] Convert(p.LCID):[1033]
Convert(p.UseUniquePermission):[False] Url:[AboutUs/CS/ICT] WebTemplate:[BLANKI
NTERNET#0] CustomWebTemplate:[]]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [6/11] - [54.5454545454545%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [7/11] - [63.6363636363636%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [8/11] - [72.7272727272727%] - [PublishingPageDefinitio
n] [Title:[ICT] FileName:[ICT.aspx] PageLayoutFileName:[ContentPageLayout.aspx]
Description:[]]
Information: Processing: [9/11] - [81.8181818181818%] - [MasterPageSettingsDefin
ition] [SiteMasterPageUrl:[/_catalogs/masterpage/DEMOSITE.master] Convert(p.SiteMaste
rPageInheritFromMaster):[] SystemMasterPageUrl:[/_catalogs/masterpage/seattle.ma
ster] Convert(p.SystemMasterPageInheritFromMaster):[]]
Information: Processing: [10/11] - [90.9090909090909%] - [WelcomePageDefinition]
[Url:[Pages/ICT.aspx]]
Information: Ensuring Finance site
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processed: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[]
Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Ur
l:[/] WebTemplate:[] CustomWebTemplate:[]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Finance] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[F
alse] Url:[AboutUs/CS/Finance] WebTemplate:[BLANKINTERNET#0] CustomWebTemplate:[
]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Finance] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[F
alse] Url:[AboutUs/CS/Finance] WebTemplate:[BLANKINTERNET#0] CustomWebTemplate:[
]]
Information: Processed: [2/11] - [18.1818181818182%] - [WebDefinition] [Title:[F
inance] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[Fa
lse] Url:[AboutUs/CS/Finance] WebTemplate:[BLANKINTERNET#0] CustomWebTemplate:[]
]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processed: [3/11] - [27.2727272727273%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:
[]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processed: [4/11] - [36.3636363636364%] - [ContentTypeLinkDefinitio
n] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0A
14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D81
DDBFCA3]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processed: [5/11] - [45.4545454545455%] - [HideContentTypeLinksDefi
nition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SPM
eta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentTy
pes.ContentTypeLinkValue]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processed: [6/11] - [54.5454545454545%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:
[]]
Information: Processing: [6/11] - [54.5454545454545%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [6/11] - [54.5454545454545%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processed: [7/11] - [63.6363636363636%] - [ContentTypeLinkDefinitio
n] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0A
14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D81
DDBFCA3]]
Information: Processing: [7/11] - [63.6363636363636%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [7/11] - [63.6363636363636%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processed: [8/11] - [72.7272727272727%] - [HideContentTypeLinksDefi
nition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SPM
eta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentTy
pes.ContentTypeLinkValue]]
Information: Processing: [8/11] - [72.7272727272727%] - [PublishingPageDefinitio
n] [Title:[Finance] FileName:[Finance.aspx] PageLayoutFileName:[ContentPageLayou
t.aspx] Description:[]]
Information: Processing: [8/11] - [72.7272727272727%] - [PublishingPageDefinitio
n] [Title:[Finance] FileName:[Finance.aspx] PageLayoutFileName:[ContentPageLayou
t.aspx] Description:[]]
Information: Processed: [9/11] - [81.8181818181818%] - [PublishingPageDefinition
] [Title:[Finance] FileName:[Finance.aspx] PageLayoutFileName:[ContentPageLayout
.aspx] Description:[]]
Information: Processing: [9/11] - [81.8181818181818%] - [MasterPageSettingsDefin
ition] [SiteMasterPageUrl:[/_catalogs/masterpage/DEMOSITE.master] Convert(p.SiteMaste
rPageInheritFromMaster):[] SystemMasterPageUrl:[/_catalogs/masterpage/seattle.ma
ster] Convert(p.SystemMasterPageInheritFromMaster):[]]
Information: Processing: [9/11] - [81.8181818181818%] - [MasterPageSettingsDefin
ition] [SiteMasterPageUrl:[/_catalogs/masterpage/DEMOSITE.master] Convert(p.SiteMaste
rPageInheritFromMaster):[] SystemMasterPageUrl:[/_catalogs/masterpage/seattle.ma
ster] Convert(p.SystemMasterPageInheritFromMaster):[]]
Information: Processed: [10/11] - [90.9090909090909%] - [MasterPageSettingsDefin
ition] [SiteMasterPageUrl:[/_catalogs/masterpage/DEMOSITE.master] Convert(p.SiteMaste
rPageInheritFromMaster):[] SystemMasterPageUrl:[/_catalogs/masterpage/seattle.ma
ster] Convert(p.SystemMasterPageInheritFromMaster):[]]
Information: Processing: [10/11] - [90.9090909090909%] - [WelcomePageDefinition]
[Url:[Pages/Finance.aspx]]
Information: Processing: [10/11] - [90.9090909090909%] - [WelcomePageDefinition]
[Url:[Pages/Finance.aspx]]
Information: Processed: [11/11] - [100%] - [WelcomePageDefinition] [Url:[Pages/F
inance.aspx]]
Information: Ensuring Health and Safety site
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processing: [0/11] - [0%] - [WebDefinition] [Title:[] Description:[
] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Url:[/] WebTempl
ate:[] CustomWebTemplate:[]]
Information: Processed: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[]
Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Ur
l:[/] WebTemplate:[] CustomWebTemplate:[]]
Information: Processed: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[]
Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermission):[False] Ur
l:[/] WebTemplate:[] CustomWebTemplate:[]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Health and Safety] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePerm
ission):[False] Url:[AboutUs/CS/HealthAndSafety] WebTemplate:[BLANKINTERNET#0] C
ustomWebTemplate:[]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Health and Safety] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePerm
ission):[False] Url:[AboutUs/CS/HealthAndSafety] WebTemplate:[BLANKINTERNET#0] C
ustomWebTemplate:[]]
Information: Processing: [1/11] - [9.09090909090909%] - [WebDefinition] [Title:[
Health and Safety] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePerm
ission):[False] Url:[AboutUs/CS/HealthAndSafety] WebTemplate:[BLANKINTERNET#0] C
ustomWebTemplate:[]]
Information: Processed: [2/11] - [18.1818181818182%] - [WebDefinition] [Title:[H
ealth and Safety] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermi
ssion):[False] Url:[AboutUs/CS/HealthAndSafety] WebTemplate:[BLANKINTERNET#0] Cu
stomWebTemplate:[]]
Information: Processed: [2/11] - [18.1818181818182%] - [WebDefinition] [Title:[H
ealth and Safety] Description:[] Convert(p.LCID):[1033] Convert(p.UseUniquePermi
ssion):[False] Url:[AboutUs/CS/HealthAndSafety] WebTemplate:[BLANKINTERNET#0] Cu
stomWebTemplate:[]]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [2/11] - [18.1818181818182%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processed: [3/11] - [27.2727272727273%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:
[]]
Information: Processed: [3/11] - [27.2727272727273%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:
[]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processing: [3/11] - [27.2727272727273%] - [ContentTypeLinkDefiniti
on] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0
A14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D8
1DDBFCA3]]
Information: Processed: [4/11] - [36.3636363636364%] - [ContentTypeLinkDefinitio
n] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0A
14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D81
DDBFCA3]]
Information: Processed: [4/11] - [36.3636363636364%] - [ContentTypeLinkDefinitio
n] [ContentTypeName:[DEMOSITE Page Content Type] ContentTypeId:[0x010100C568DB52D9D0A
14D9B2FDCC96666E9F2007948130EC3DB064584E219954237AF39006F13C31DBA984D07B44123D81
DDBFCA3]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processing: [4/11] - [36.3636363636364%] - [HideContentTypeLinksDef
inition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SP
Meta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentT
ypes.ContentTypeLinkValue]]
Information: Processed: [5/11] - [45.4545454545455%] - [HideContentTypeLinksDefi
nition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SPM
eta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentTy
pes.ContentTypeLinkValue]]
Information: Processed: [5/11] - [45.4545454545455%] - [HideContentTypeLinksDefi
nition] [ContentTypes:[SPMeta2.Definitions.ContentTypes.ContentTypeLinkValue|SPM
eta2.Definitions.ContentTypes.ContentTypeLinkValue|SPMeta2.Definitions.ContentTy
pes.ContentTypeLinkValue]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processing: [5/11] - [45.4545454545455%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName
:[]]
Information: Processed: [6/11] - [54.5454545454545%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:
[]]
Information: Processed: [6/11] - [54.5454545454545%] - [ListDefinition] [Title:
[Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:
[]]


Inner Exception: {"Field or property "vti_iplabelid" does not exist."}

Stack trace:

at Microsoft.SharePoint.Client.ClientRequest.ProcessResponseStream(Stream responseStream)
at Microsoft.SharePoint.Client.ClientRequest.ProcessResponse()
at Microsoft.SharePoint.Client.ClientRequest.ExecuteQueryToServer(ChunkStringBuilder sb)
at Microsoft.SharePoint.Client.ClientRequest.ExecuteQuery()
at Microsoft.SharePoint.Client.ClientRuntimeContext.ExecuteQuery()
at Microsoft.SharePoint.Client.ClientContext.ExecuteQuery()
at SPMeta2.CSOM.Services.Impl.DefaultClientRuntimeContextService.InternalExecuteQuery(ClientRuntimeContext context)
at SPMeta2.CSOM.Services.Impl.DefaultClientRuntimeContextService.ExecuteQuery(ClientRuntimeContext context)
at SPMeta2.CSOM.Extensions.ClientRuntimeContextExtensions.ExecuteQueryWithTrace(ClientRuntimeContext context)
at SPMeta2.CSOM.ModelHandlers.ListModelHandler.LoadCurrentList(Web web, ListDefinition listModel)
at SPMeta2.CSOM.ModelHandlers.ListModelHandler.WithResolvingModelHost(ModelHostResolveContext modelHostContext)
at SPMeta2.Services.Impl.DefaultModelTreeTraverseService.Traverse(Object modelHost, ModelNode modelNode)


ModelNode :

{Node value: [ListDefinition] - Title: [Pages] Url: [Pages] ContentTypesEnabled:[True] TemplateType:[850] TemplateName:[]}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants