Note that there are some explanatory texts on larger screens.

plurals
  1. POUnable to find item created using core service from any other machine except where Tridion CMS is installed
    primarykey
    data
    text
    <p>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 machines too, then how that item is not searchable even from where CMS server is installed. Please suggest... </p> <p>More information:-</p> <p>I am working on SDL Tridion 2011 GA also below is the sample code of creating a component which I am using:-</p> <pre class="lang-cs prettyprint-override"><code>public static string CreateComponentStack(string folderUri, string title, string schemaID) { core_service.ServiceReference1.SessionAwareCoreService2010Client client = new SessionAwareCoreService2010Client(); client.ClientCredentials.Windows.ClientCredential.UserName = "myUserName"; client.ClientCredentials.Windows.ClientCredential.Password = "myPassword"; client.Open(); ReadOptions readoptions = new ReadOptions(); string TargetFolderTcmId = folderUri; string LinkSchemaTcmId = schemaID; ComponentData CurrentMigrationComponent = client.GetDefaultData( ItemType.Component, TargetFolderTcmId) as ComponentData; LinkToSchemaData SchemaToUse = new LinkToSchemaData(); SchemaToUse.IdRef = LinkSchemaTcmId.ToString(); CurrentMigrationComponent.Schema = SchemaToUse; CurrentMigrationComponent.Title = title; XmlDocument doc = new XmlDocument(); doc.LoadXml("&lt;Content xmlns='uuid:7289aba9-16de-487c-9142-f6f97dbd2571'&gt;"+ "&lt;/Content&gt;"); CurrentMigrationComponent.Content = doc.DocumentElement.OuterXml; string newTCMID = client.Create(CurrentMigrationComponent, readoptions).Id; Console.WriteLine(CurrentMigrationComponent.Id); Console.ReadLine(); return newTCMID; } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload