tridion

Error: Could not find default endpoint element that references contract

試著忘記壹切 提交于 2019-12-06 06:12:41
I am writing a below code to create a MM component in tridion through core service, but i am getting error to run this service, public ComponentData GetNewMultimediaComponent(CoreServiceClient Client, string folderUri, string schemaUri, string title, FileInfo fi) { if (fi.Extension == ".png") { string mmType = GetMultiMediaType(fi.Extension); if (mmType != null) { string tempLocation = ""; UploadResponse us = new UploadResponse(); using (StreamUploadClient streamClient = GetConnection()) { FileStream objfilestream = new FileStream(fi.FullName, FileMode.Open, FileAccess.Read); tempLocation =

Content Manager configuration snap-in “Could not read configuration item”

社会主义新天地 提交于 2019-12-06 01:31:20
问题 I am on a Tridion 2011 SP1 CM server and I’m trying to start the SDL Tridion Content Manager configuration MMC snap-in. I get the following error: Could not read configuration item. Modification of this item is not available on this machine. Account has no permission to access the protected configuration section 'tridion.security'. Contact your system administrator. My user is of course part of the local admins. What is going on? how to fix it? 回答1: The Content Manager uses a .NET encryption

How can I get the 'key' of a keyword from an XSLT TBB?

孤街浪徒 提交于 2019-12-05 21:51:41
I am working on the XSLT TBB (using the XSLT Mediator on Tridion 2011 SP1) to retrieve the key Value from the Keyword. My Keyword looks like this. Value: Some Value Key: Its ID is 123 It's a normal Keyword. I have created a schema with a field. The values will be selected from List and from Category. The component Source looks like this: This is the Component source directly taken from the component of Tridion UI. <Content xmlns="Some Name space"> <keywordlink xlink:href="tcm:202-9737-1024" xlink:title="Some Value" xmlns:xlink="http://www.w3.org/1999/xlink">Some Value</keywordlink> </Content>

Automatic activity not performing

非 Y 不嫁゛ 提交于 2019-12-05 21:25:33
Created a workflow with basic as below. Created a calss library, used ProgId, set comvisible true and registerd the assembly in the Tridion server. This is the way i have tested: Created a component Finished the activity from the work list. Navigated to the "Global Work list" and finished the Reviewer activity by myself by choosing the "Back to Author" step and clicked the "Finish" button. The item is not moved to the author. but when i finish the activity again from the global work list, the item moved to author. It seems that my code is not performing the activity because i tried removed the

Unable to save Publication Targets in Tridion 2011 SP1

那年仲夏 提交于 2019-12-05 20:52:03
Upgraded from Tridion 5.3 SP1 to Tridion 2011 SP1. Want to change Httpupload page URL mentioned in Publication Targets, but while saving it Tridion is throwing error 8004D025) Error: Exception of type 'System.EnterpriseServices.TransactionProxyException' was thrown.Unable to save Target type (tcm:0-2-65538).SQLUtilities.GetDatabaseConnectionDataStoreDAL.InitDataStoreBroker.InitDataStoreUtilitiesBL.InitDataStoreTargetTypeBL.UpdateTridion.ContentManager.IdentifiableObject.SaveThroughLegacyBL(String)Tridion.ContentManager.IdentifiableObject.Save(SaveEventArgs)Tridion.ContentManager

Sample event system code for Tridion 2011 SP1

时光怂恿深爱的人放手 提交于 2019-12-05 18:58:59
Right now we are using Tridion 5.3. For number of publications we have event system implemented like sending some mail notification if component is localized, or sending a mail notification when particular activity is completed in workflow process etc. Our current event system is implementation in Visual Basic 6.0, now when we have to rewrite our code we have to use .NET for the same. My question is where I can get some sample code for beginners or documentation how event system can be implemented in Tridion 2011 SP1. These are the top three links when I google for Tridion 2011 event systems:

How does Tridion CME pick specific AD-LDAP from a domain containing many AD-LDAP?

只谈情不闲聊 提交于 2019-12-05 18:50:27
Implementation has AD. The SDL Tridion CMS MMC console DOES NOT have any AD-LDAP integration (no sync or anything). Just a plain vanilla install. This means users are created in AD, then manually added in CMS and given rights/access in CME. When we add a user we just provide the Domain name in the GUI and the CMS goes and fetches all the users. Now we do not provide any configuration or reference to any AD-LDAP server anywhere for above setup. If a domain “My_Domain” has 20 AD servers then how does Tridion knows which AD to pick for this new user (part of “My_Domain”) to be added? OR if an

Tridion 2011 - Filtering XSLT on Formatting Feature window

£可爱£侵袭症+ 提交于 2019-12-05 13:20:36
Currently we are doing Tridion upgrade from 2009 to 2011. I see a strange problem and want to know why it is been updated differently. My Problem: On many of Schema's, we have our own filtering XSLT for content fields (that is, Rich Text Fields). Example: <xsl:stylesheet ... > ... ... ... </xsl:stylesheet> After upgrade to Tridion 2011, I see schema's are updated with the below format <stylesheet... > ... ... ... </stylesheet> Due to this, on the components rich text fields are not appearing. Please let me know the reason behind this behavior. How to fix this problem? I have already fixed this

how to pass embedded schemas as drop down for the content schema in SDL Tridion 2011 SP1

无人久伴 提交于 2019-12-05 13:08:27
I am trying to create a schema in SDL Tridion to satisfy these requirements. I have two main fields: ABCD, which has one sub field as "XYZ" AAAA, which has two sub fields namely "Name" and "Value" Both main fields are repeatable and and should be movable. Example patterns may look as per requirement: ABCD----AAAA----ABCD---AAAA AAAA----ABCD----ABCD----AAAA The main fields AAAA and ABCD should be moved from one to another. Say if I create a component with the created schema and the first main fields as "AAAA" and second field as "ABCD", then I should be able to move ABCD above the AAAA. I have

Access container page of a component in .net based CT

孤街浪徒 提交于 2019-12-05 12:37:42
We are developing a .net based CT based on Broker query Mechanism (filter): ComponentPresentationAssembler cpAssembler = new ComponentPresentationAssembler(Page ID,Page object); In order to pass the page ID, I need to get the access of page on which the component is present. How can I access the page from package? Since this a CT, a component object would be available in page and not a page object. Tried the following piece of code, but without success: string pageURI = _package.GetValue("Page.ID"); Page objPage = (Page)_engine.GetSession().GetObject(pageURI); This is not working as there is