XML config for Porter Sdl Tridion 2011 content

I am trying to invoke a content carrier from the command line. As an input parameter, we need to provide the xml configuration file for the content media. I can understand most of the xml configuration template, but I cannot understand the value template of the ItemSubType and IsExported tags in the import config xml. Can anyone help me understand the value structure for the above tags.

Thanks to adavnce.

+3


source to share


1 answer


Why would you need to play with this manually? I'm not 100% sure, but I can point you in the right direction.

ItemSubType

can be set for components (Xml or Multimedia), Schema (schema type), or TemplateBuilding block (C #, Assembly, Compound, etc.). I think it is mainly used to show if there is binary content along with the element itself.



IsExported

that's what he says. As you know, Content Porter exports each element along with the elements it depends on. You can filter out some of the dependencies if you know you have these items on the target system. For filtered itemsIsExported

set to false. For example, you want to export a component. By default, you will have to export the schematic of this component, the folder in which the schema is located, the publication with its default items, and any other dependencies it may have. But you are 100% sure that on your target system you already have this publication with the folder and schema you need, so to save time you can filter the whole thing and only export the component. In this case, the schema schema and everything else will be added to the dependency table, but IsExported will be set to false.

+1


source







All Articles