Search code examples
tridiontridion2009

Tridion 2009 Custom Page: How to fix the error message "Object required: 'TMSMail'"?


We are using a custom page on Tridion 2009. This custom page was working fine earlier.

Recently we have moved this to another server. Now this custom page is throwing error saying that

Error 424 occurred while rendering the Page: Object required: 'TMSMail' 
(source: WriteOut TMSMail.GetHTMLStartTag())

Please suggest on how to fix this.


Solution

  • When am looking around DLL's and the tridion MMC Snap-In, I got an Idea.

    What will happen if we add the below entry on MMC Snap-In

    1. Click on Script Extension
    2. Add a new object
      • TCM Object Name: TMSMail
      • COM Object Name: TMSScriptExtension.ProfileHelper

    EDIT:

    Finally, I have solved after a lot of trails.

    Below are the steps I followed to solve:-

    1. First I have added above entry on MMC Snap-In
    2. I found the dll location for this extension and registered this using regsvr32 command
    3. Restarted COM+ service

    Now tried it, its working fine.

    Thanks a lot for the inputs.