MultiTerm export API not generating proper XDT

I'm attempting to use ExportDefinition to export XDT and separately XML dataset for MultiTerm remotely -- it seems to be that processing export gives me what I think is only the preamble portion of XDT file. about 44KB if exported out from the UI becomes 3KB worth of contents with "content" property within ExportDefinition instance.

I'm seeing this segment of the sample code provided in a doc:

ExportDefinitions oExpDefs = oTb.ExportDefinitions;
ExportDefinition oExpDef = oExpDefs["Default export definition"];
oExpDef.ProcessExport(Sdl.MultiTerm.TMO.Interop.MtTaskType.mtScript, "English", "Japanese");

string foobar = oExpDef.Content.; // About 3KB of data in foobar...

I can export Terms to XML file, so it definitely being to retrieve the appropriate data from the server, just XDT seems to be non functioning, any clue what I can try?

Parents Reply Children