tridion

Unable to find item created using core service from any other machine except where Tridion CMS is installed

不想你离开。 提交于 2020-03-02 05:56:25
问题 I am not able to find any item (schema/component) created using core service from any other machine except where Tridion CMS is installed, but when I create any item on the machine where I have Tridion CMS installed using the same console application then I am able to locate that particular item with TCM URI. Is there any configuration need to define in config file (I think this issue is not related with refreshing or clearing browser cache) and also when TCM URI is generated from other

How can I import external files into SDL Tridion 2011 using core service?

こ雲淡風輕ζ 提交于 2020-02-20 07:28:05
问题 I want to push PDF, Word and Excel files into SDL Tridion 2011 by using core service. I tried below code but get this error: Invalid value for property 'BinaryContent'. Unable to open uploaded file: using (ChannelFactory<ISessionAwareCoreService> factory = new ChannelFactory<ISessionAwareCoreService>("wsHttp_2011")) { ISessionAwareCoreService client = factory.CreateChannel(); ComponentData multimediaComponent = (ComponentData)client.GetDefaultData( ItemType.Component, "tcm:19-483-2");

How can I import external files into SDL Tridion 2011 using core service?

孤者浪人 提交于 2020-02-20 07:27:02
问题 I want to push PDF, Word and Excel files into SDL Tridion 2011 by using core service. I tried below code but get this error: Invalid value for property 'BinaryContent'. Unable to open uploaded file: using (ChannelFactory<ISessionAwareCoreService> factory = new ChannelFactory<ISessionAwareCoreService>("wsHttp_2011")) { ISessionAwareCoreService client = factory.CreateChannel(); ComponentData multimediaComponent = (ComponentData)client.GetDefaultData( ItemType.Component, "tcm:19-483-2");

Raising a “warning” status during SDL Tridion 2011 publishing

坚强是说给别人听的谎言 提交于 2020-01-24 10:47:05
问题 We would like to implement some functionality so that when for some reason an error occurs during publishing or resolving, and we skip over it using a try/catch block, but would still like to notify the user that something was skipped. The SDL Tridion 2011 Publishing Queue can filter by status. One of these statuses is “Warning”. Is it possible to trigger a publish transaction to have a “Warning” status using the API in either template code or a custom resolver? 回答1: I'm afraid this isn't

How can we integrate Microsoft FAST with SDL Tridion 2011 SP1?

那年仲夏 提交于 2020-01-19 06:15:27
问题 Right now we are using SDL Tridion 5.3 soon we will be upgrading to Tridion 2011 SP1. While upgrading to Tridion 2011 SP1 we also want to use FAST FISE (SP 4) search engine for implementing search on the published web site. Can anyone help us in understanding how this can be done with respect to Deployer extentions as well as changes in Content Delivery side (we have .NET implementation). Is there any API reference or implementation documentation available? 回答1: I don't have specific

How do I enable inline field editing in SiteEdit when using an XSLT TBB?

眉间皱痕 提交于 2020-01-15 03:41:08
问题 I am working on SDL Tridion 2011 SP1 with the XSLT Mediator from SDL Tridion World and SiteEdit 2009 SP3. I have created XSLT TBB, and enabled Inline editing for Component Template, enabled SiteEdit in the Page Template. I have created the page using that and published it. But SiteEdit is not being enabled for each field. When I looked at the source of page preview, it has only one span tag for whole component. But usually if SiteEdit is enabled for the component we should have span tag for

How can i use engine object in my console application

谁都会走 提交于 2020-01-14 14:01:28
问题 "How can i use engine in my console application" I shouldn't use the ITemplate-interface and Transform-Method. I am using Tridion 2011 Could anyone please suggest me. 回答1: You can't. The Engine class is part of the TOM.NET and that API is explicitly reserved for use in: Template Building Blocks Event Handlers For all other cases (such as console applications) you should use the Core Service. There are many good questions (and articles on other web sites) already: https://stackoverflow.com

How to enable the button which is created using custom control

泪湿孤枕 提交于 2020-01-07 09:38:14
问题 I need to create buttons one below the other in tridion ribbon. I have created an usercontrol and it was appearing on the ribbon but in disabled mode. In the "http://tridiondeveloper.com/ribbon-item-group"; it was mentioned to include <ext:issmallbutton>true</ext:issmallbutton> inside my extension element in the configuration. I have included it in the extension.config file. But i am facing error like "Loading extension failed - has invalid child element 'issmallbutton'. So, currently i

How to add custom tags to rich text field in SDL Tridion?

风流意气都作罢 提交于 2020-01-06 16:23:05
问题 In SDL Tridion 2011 SP1, I want to allow custom XML tags (nodes) inside rich text field (RTF) such as <dynamicVariable name='ABC'></dynamicVariable> This triggers the error Field 'text' contains invalid markup How do I allow such custom tags? 回答1: There is a file named TcmXhtml.Config under [Tridion]\web\WebUI\Core\Controls\FormatArea\TcmXhtml where you can specify additional block tags that Tridion should accept in RTF. Do keep in mind that there's a good reason why Rich Text fields comply

How can we override the existing deployer customization in Tridion 2009?

余生颓废 提交于 2020-01-06 15:39:28
问题 While in process of customizing Deployer, I noticed that we have already customized PageDeploy and PageUndeploy modules, please see the below config sections taken from cd_deployer_conf.xml. PageDeploy: <Module Type="PageDeploy" Class="com.tridion.extensions.deployer.ConditionalPageDeploy"> <Transformer Class="com.tridion.deployer.TCDLTransformer" /> </Module> PageUndeploy: <Module Type="PageUndeploy" Class="com.tridion.extensions.deployer.ConditionalPageUndeploy"/> I just have their .jar