Code Monkey home page Code Monkey logo

Comments (2)

SubPointSupport avatar SubPointSupport commented on September 22, 2024

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.

from spmeta2.

Yash85 avatar Yash85 commented on September 22, 2024

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:[]}

from spmeta2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.