I am using Tridion release 5.3.
Using the business connector, I want to find out if the page has been published for a specific publication purpose.
Using the TOM API, I can do
// using types from Tridion.ContentManager.Interop.TDS // and Tridion.ContentManager.Interop.TDSDefines TDSE tdse = new TDSE(); Page page = (Page)tdse.GetObject(itemUri, EnumOpenMode.OpenModeView, "tcm:0-0-0", XMLReadFilter.XMLReadAll); page.IsPublishedTo(tcm);
If I request Tridion using a business connector, the only information I get is if the page was published, but not for what purpose.
I tried to request the publication object itself, but this does not provide information on which pages it published.
Any ideas?
c # tridion
Kevin brydon
source share