3

Are there tools or utilities for converting Documentum XML files into content in SDL Tridion?

I would prefer a relevant XSL example or an XSLT file for such an XML-XML transformation between the systems.

Alvin Reyes
  • 2,889
  • 16
  • 38
User 4.5.5
  • 1,311
  • 3
  • 12
  • 20
  • As far as I know there's no such tool, but you can relatively easy create one yourself. The Tridion to Documentum connector that is provided only allows usage of artifacts from documentum but not the migration to Tridion. – Andrey Marchuk Mar 03 '12 at 07:59
  • After choosing a language and method to modify your xml, consider making another question with your approach and sample code. The xml-to-xml question isn't so much a Tridion issue at that point, but mapping content with one definition to another. – Alvin Reyes Mar 03 '12 at 15:45

3 Answers3

6

It is pretty simple to create content in Tridion once you understand its object model. If you already know the target schema's details you just have to break it down into

  1. Transform XML from Documentum format to Tridion Schema format (this schema is something YOU create in Tridion)
  2. Create a program using Tridion Core Service (WCF web service) to create the required components
  3. Save them in Tridion

A simple sample can be found here: http://nunolinhares.blogspot.com/2011/06/importing-content-into-tridion.html

Nuno Linhares
  • 10,214
  • 1
  • 22
  • 42
2

You can do XML-to-XML conversion via XSL transform or with your preferred DOM-handling API. On the .NET side, consider LINQ to XML or alternatives.

Alvin Reyes
  • 2,889
  • 16
  • 38
-1

There is a new tool available at http://tridionmigration.com for HTML or XML migration into SDL Tridion.

Alvin Reyes
  • 2,889
  • 16
  • 38
  • Relevant answer for this question, though if you'd like to [promote](http://meta.stackoverflow.com/faq#promotion) your tool, also consider [contacting SO sales](http://stackexchange.com/about/contact). – Alvin Reyes Mar 05 '12 at 06:45
  • Nowhere in that website does it mention the word 'documentum' so how is it relevant? – johnwinter May 08 '12 at 16:30