コアサービスを使用してSDL TridionにXMLをロードせずにコンテンツをコンポーネントに設定するにはどうすればよいですか?コアサービスを使用してSDL TridionでXMLをロードせずにコンポーネントにコンテンツを設定する方法は?
-1
A
答えて
0
2
あなたはコアサービスを通じて定期的なコンポーネントを作成するために探しているなら、あなたはthis helper classを使用してXMLを自分で作ることを避けることができます。これにより
次のようなコンポーネントを作成することができます:
schemaFields = client.ReadSchemaFields("tcm:1-2-8", true, DEFAULT_READ_OPTIONS);
component = (ComponentData)client.GetDefaultData(ItemType.Component, "tcm:1-57-2");
fields = Fields.ForContentOf(schemaFields);
component.Title = "Name of component (created at "+ DateTime.Now + ")";
fields["Title"].Value = "Title of newly created component";
fields["Intro"].Value = "Intro of newly created component";
fields["Section"].AddValue("This is the first section");
fields["Section"].AddValue("This is the section section");
component.Content = fields.ToString();
component = (ComponentData)client.Create(component, DEFAULT_READ_OPTIONS);
この質問は非常に明確ではありません。どのようなコンテンツを設定しようとしていますか?テキストベースのすべてのコンテンツ(つまり、バイナリを除くすべてのコンポーネントデータ)がXMLに格納されている場合、なぜXMLを避けようとしていますか?おそらくあなたは質問を更新することができます。 –