I'm creating a SharePoint feature which will be used to deploy some content types (and their custom columns/ fields) into a a new SharePoint site.

I've used an external tool to generate the CAML for the content types (Andrew Connell's custom STSADM commands) but when I put them into the feature and run it I hit a problem.

The feature activates like I expect, but when I try and view the Site Content Types (/_settings/mngctypes.aspx) the CPU shoots up to 100% usage (w3wp) and stays there.

Has anyone seen this and know how to resolve it?

link|improve this question

Not programming related – AnthonyWJones Feb 11 '09 at 23:26
Yes it is, deployment is part of the development life cycle – Slace Feb 11 '09 at 23:28
agree, programming related.. – Ric Tokyo Feb 12 '09 at 0:22
feedback

2 Answers

up vote 7 down vote accepted

I've seen this before, the XML generated does not contain the XML Namespace: Also note that this tool doesn't create XML that is 100% correct for use in a Feature.

Bad-XML:

<XmlDocument>
<FormTemplates xmlns="http://schemas.microsoft.com/sharepoint/v3/contenttype/forms">
<Display>ListForm</Display>
<Edit>ListForm</Edit>
<New>ListForm</New>
</FormTemplates>
</XmlDocument>

Good-XML:

<XmlDocument NamespaceURI="http://schemas.microsoft.com/sharepoint/v3/contenttype/forms">
<FormTemplates xmlns="http://schemas.microsoft.com/sharepoint/v3/contenttype/forms">
<Display>ListForm</Display>
<Edit>ListForm</Edit>
<New>ListForm</New>
</FormTemplates>
</XmlDocument>
link|improve this answer
Finally got back to looking at this problem and you've hit the nail on the head! Thanks, life saver! – Slace Feb 17 '09 at 6:20
This saved me as well. Thanks so much! – Jeffaxe Jul 2 '09 at 17:03
feedback

By custom columns do you meant custom fields? Which Content Type page are you trying to view? The list of all site content types, or the details page for your content type? If its the latter, could it your custom columns be causing the error?

link|improve this answer
some call them columns, others call them fields :P. And yes, the problem is when viewing the content type page. Added some clarifications – Slace Feb 12 '09 at 1:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.