Which API can I use for writing SDL Tridion workflow activities?

前端 未结 4 1600
遥遥无期
遥遥无期 2021-01-12 17:04

I would like to create workflow using SDL Tridion 2011 SP1, and i am going through the documentation in the live content portal.

I have few questions when I go throu

4条回答
  •  渐次进展
    2021-01-12 18:00

    You can use C# for automated tasks. Create a class and sign it with:

    [ProgId("[Namespace].[Class Name]")]
    [ComVisible(true)]
    

    And sign the assembly with RegAsm.exe with the /codebase parameter.

    Then in the Script of the automated action you can use this object.

提交回复
热议问题