{"id":9920,"date":"2017-04-01T09:41:16","date_gmt":"2017-04-01T07:41:16","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/"},"modified":"2017-04-01T09:41:16","modified_gmt":"2017-04-01T07:41:16","slug":"documentum-thumbnail-not-working-with-tcs","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/","title":{"rendered":"Documentum &#8211; Thumbnail not working with TCS"},"content":{"rendered":"<p>A few months ago and right after a migration of around 0.5TB of documents, we enabled the TCS for one of our Application. We were using a Content Server 7.2 P05 with the associated D2 4.5 P03. As already mentioned in a <a title=\"Documentum story \u2013 Thumbnail Server not starting if docbases are down\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-story-thumbnail-server-not-starting-if-docbases-are-down\/\" target=\"_blank\" rel=\"noopener\">previous blog<\/a>, D2 4.5 doesn&#8217;t handle the previews of the documents and therefore there were also a Thumbnail Server used by this Application. The setup of the TCS for the document filestores went well without issue but when we tried to do the same thing for the Thumbnail filestore, the previews weren&#8217;t working anymore.<\/p>\n<p>Basically when you configure the Thumbnail to use a TCS filestore, you need to request new renditions for existing documents otherwise they will continue to use the non-TCS filestore.<\/p>\n<p>If you access D2 while inspecting the network traffic or using the browser dev\/debug feature, you will find that D2 is building the Thumbnail preview URL using the value of the &#8220;dm_document.thumbnail_url&#8221;. This thumbnail_url is actually &#8211; by\u00a0default &#8211;\u00a0a concatenation of several things: thumbnail_url = base_url + path + store.<\/p>\n<p>Therefore if you define:<\/p>\n<ul>\n<li>the Thumbnail base_url to be &#8220;https:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?&#8221;<\/li>\n<li>the Thumbnail TCS filestore to be &#8220;trusted_thumbnail_store_01&#8221;<\/li>\n<li>a test document 09012345801a8f56 with a file system path (get_path) to be: &#8220;00012345\/80\/00\/10\/4d.jpg&#8221;<\/li>\n<\/ul>\n<p>Then D2 will retrieve a thumbnail_url that is:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">https:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/80\/00\/10\/4d.jpg&amp;store=trusted_thumbnail_store_01<\/pre>\n<p>&nbsp;<\/p>\n<p>When accessing this URL, if the filestore mentioned above is indeed a TCS filestore, this is the kind of logs that will be generated:<\/p>\n<pre class=\"brush: java; gutter: true; first-line: 1; highlight: [6,12,14,18,20,22]\">Jul 05, 2016 9:42:15 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : [DM_TS_T_RETRIEVE_DOCBASE_THUMB] Retrieving docbase thumbnail...\nJul 05, 2016 9:42:15 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : the ETag received is the path - will return 304 response\nJul 05, 2016 9:45:12 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : [DM_TS_T_NEW_REQUEST] New request: path=00012345\/80\/00\/10\/4d.jpg&amp;store=trusted_thumbnail_store_01\nJul 05, 2016 9:45:12 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : [DM_TS_T_RETRIEVE_DOCBASE_THUMB] Retrieving docbase thumbnail...\nJul 05, 2016 9:45:12 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : [DM_TS_T_RETRIEVE_STORE] Retrieving storage area...\nJul 05, 2016 9:45:12 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : getting storage area for docbase: 00012345 store: trusted_thumbnail_store_01\nJul 05, 2016 9:45:12 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : [DM_TS_T_CHECK_SECURITY] Checking security...\nJul 05, 2016 9:45:12 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : About to start reading files...\nJul 05, 2016 9:45:12 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : Trusted content store found, will use DFC for decryption\nJul 05, 2016 9:45:12 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : Content paramters are: format= null; page=null; page modifier=null\nJul 05, 2016 9:45:12 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: Object ID missing from request...<\/pre>\n<p>&nbsp;<\/p>\n<p>When using a non-TCS filestore, this url will retrieve the document preview properly (of course the name of the store was &#8220;thumbnail_store_01&#8221; and not &#8220;trusted_thumbnail_store_01&#8221;) but as you can see above, with a TCS filestore, the Thumbnail is trying to use the DFC for decryption but isn&#8217;t able to because the Object ID is missing on the request&#8230; With a non-TCS filestore, the Thumbnail is retrieving the content directly from the file system but it&#8217;s not possible to do that with a TCS filestore because of the encryption. Therefore a TCS-enabled\u00a0Thumbnail has to use the &#8220;getContent&#8221; method\u00a0of the DFC\u00a0and this method requires the Object ID. That&#8217;s the issue here.<\/p>\n<p>When we faced this issue last summer, we contacted EMC because that was clearly a bug in how D2 is constructing the URLs to request the preview and not how the Thumbnail Server is processing the requested URLs. After several days, the D2 engineering team provided a hotfix to enable D2 to provide the correct parameters. Basically with the new hotfix deployed, D2 was now able to generate the following URL:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">https:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/80\/00\/10\/4d.jpg&amp;store=trusted_thumbnail_store_01&amp;did=09012345801a8f56&amp;format=jpeg_lres<\/pre>\n<p>&nbsp;<\/p>\n<p><span style=\"text-decoration: underline\">Note:<\/span> In this case, we also had to specify the format (jpeg_lres). While waiting for the EMC hotfix, we performed some tests on our side by trying to add missing parameters and trying to understand what is needed for the Thumbnail Server in the requests. At some point\u00a0in time, we found out that the\u00a0Thumbnail\u00a0was trying to use &#8220;jpeg_th&#8221; as a default value for the format if you don&#8217;t specify any.\u00a0As far as I know, we have a pretty default Thumbnail configuration but we don&#8217;t have any &#8220;jpeg_th&#8221; formats. Only jpeg_lres\u00a0and jpeg_story are used and therefore I don&#8217;t know where this jpeg_th is coming from.\u00a0I believe that&#8217;s an issue of the Thumbnail Server\u00a0because EMC included the format in the D2 hotfix too, after we mentioned that to them.<\/p>\n<p>&nbsp;<\/p>\n<p>So using this new URL, the generated log files were:<\/p>\n<pre class=\"brush: java; gutter: true; first-line: 1; highlight: [2,14,16,18,20]\">Jul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : [DM_TS_T_NEW_REQUEST] New request: path=00012345\/80\/00\/10\/4d.jpg&amp;store=trusted_thumbnail_store_01&amp;did=09012345801a8f56&amp;format=jpeg_lres\nJul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : [DM_TS_T_RETRIEVE_DOCBASE_THUMB] Retrieving docbase thumbnail...\nJul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : [DM_TS_T_RETRIEVE_STORE] Retrieving storage area...\nJul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : getting storage area for docbase: 00012345 store: trusted_thumbnail_store_01\nJul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : [DM_TS_T_CHECK_SECURITY] Checking security...\nJul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : About to start reading files...\nJul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : Trusted content store found, will use DFC for decryption\nJul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : Content paramters are: format= jpeg_lres; page=null; page modifier=null\nJul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : will be retrieving object 09012345801a8f56\nJul 12, 2016 6:29:53 AM org.apache.catalina.core.ApplicationContext log\nINFO: getThumbnail: [DEBUG] : Session ok for 00012345<\/pre>\n<p>&nbsp;<\/p>\n<p>And it worked; the preview of the first page of this document has been displayed. The hotfix seemed to work so we started to deploy it in our DEV environments while waiting for a confirmation from the Application Team that it was also working from D2 (because of SoD, our admin accounts don&#8217;t have access to documents in D2). But then after a few tests, The App Team found out that the hotfix was actually only partially working: only for the first page! Indeed EMC created this hotfix using a one-page document and they never tried to retrieve the previews of a multi-page document. The thing with the Thumbnail Server is that if you have a 25-pages document, then this document will have 25 previews. I already talked about that in <a title=\"Documentum story \u2013 Restrict the number of jpeg renditions\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-story-restrict-the-number-of-jpeg-renditions\/\" target=\"_blank\" rel=\"noopener\">another previous\u00a0blog<\/a> so you can take a look at this blog to have more information on how to manage that.<\/p>\n<p>I will suppose that 09012345801a8f56 is a 3-pages document. I gathered some information from this document and also got the path of the thumbnail previews that are related to the 3 pages:<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">API&gt; ?,c,select r_object_id, full_format, parent_id, content_size, full_content_size, set_time, set_file from dmr_content where any parent_id='09012345801a8f56'\nr_object_id       full_format  parent_id         content_size  full_content_size  set_time           set_file\n----------------  -----------  ----------------  ------------  -----------------  -----------------  --------------------------------------------------------------------\n06012345801d95cc  jpeg_lres    09012345801a8f56  60467         60467              7\/4\/2016 13:22:39  C:UsersSYS_AD~1AppDataLocalTempbatchFile353776780929575961.tar\n\tget_path =&gt; \/data\/DOCBASE\/trusted_thumbnail_storage_01\/00012345\/80\/00\/10\/4d.jpg\n\n06012345801d95cd  jpeg_lres    09012345801a8f56  138862        138862             7\/4\/2016 13:22:39  C:UsersSYS_AD~1AppDataLocalTempbatchFile353776780929575961.tar\n\tget_path =&gt; \/data\/DOCBASE\/trusted_thumbnail_storage_01\/00012345\/80\/00\/10\/4e.jpg\n\n06012345801d95ce  jpeg_lres    09012345801a8f56  29596         29596              7\/4\/2016 13:22:39  C:UsersSYS_AD~1AppDataLocalTempbatchFile353776780929575961.tar\n\tget_path =&gt; \/data\/DOCBASE\/trusted_thumbnail_storage_01\/00012345\/80\/00\/10\/4f.jpg<\/pre>\n<p>&nbsp;<\/p>\n<p>So here we have three different jpg files for the same &#8220;parent_id&#8221; (the document) and each one is a preview of a specific page. These previews have a different size (content_size\/full_content_size), therefore the previews should be different!<\/p>\n<p>With the information provided above, the previews URLs generated by D2 (using the new hotfix) are:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">https:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/80\/00\/10\/4d.jpg&amp;store=trusted_thumbnail_store_01&amp;did=09012345801a8f56&amp;format=jpeg_lres\nhttps:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/80\/00\/10\/4e.jpg&store=trusted_thumbnail_store_01&did=09012345801a8f56&format=jpeg_lres\nhttps:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/80\/00\/10\/4f.jpg&amp;store=trusted_thumbnail_store_01&amp;did=09012345801a8f56&amp;format=jpeg_lres<\/pre>\n<p>&nbsp;<\/p>\n<p>Three different URLs for three different pages. That looks fine but actually if you access all these three URLs, you will always see the preview of the first page of the document&#8230; It goes even beyond that! Actually you can put any path in the URL and\u00a0it will always show the first page of the document (09012345801a8f56). To confirm that, you can access the following URLs and see by yourself that they will also display the same preview:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">https:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/80\/00\/10\/zz.jpg&amp;store=trusted_thumbnail_store_01&amp;did=09012345801a8f56&amp;format=jpeg_lres\nhttps:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/zz\/zz\/zz\/zz.jpg&store=trusted_thumbnail_store_01&did=09012345801a8f56&format=jpeg_lres\nhttps:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/&amp;store=trusted_thumbnail_store_01&amp;did=09012345801a8f56&amp;format=jpeg_lres<\/pre>\n<p>&nbsp;<\/p>\n<p>Based on all the above information, you can understand that the way the Thumbnail Server is working is really different when using a non-TCS or a TCS filestore&#8230; For non-TCS filestores, the URL points directly to the actual file and that&#8217;s the reason why the full path is really important: it leads directly to the right file and each page has its own path. For TCS filestores, since all the files are encrypted, the Thumbnail Server can&#8217;t directly use the file path. Therefore it relies on the DFC to first decrypt the file and then return the result. That&#8217;s the reason why only the docbase ID is needed inside the &#8220;path&#8221; when using a TCS and that everything else in the path is completely useless. On the other end and as seen previously in this blog, you of course also need some additional information to specify which preview you want.<\/p>\n<p>In addition to the parameters we saw above and in order to uniquely identify different renditions, page and\/or page_modifier is also required with a TCS filestore. Both attributes are part of dmr_content table and page is the position of the content when the object has multiple contents (generally it will always be zero by default) while page_modifier uniquely identifies a rendition within the same page number and format for a document. If no\/null page_modifier is passed in the URL then the rendition with an empty page_modifier value is returned. If there isn&#8217;t any rendition in the docbase without a page_modifier value, then the one with the smallest page_modifier (in alphabetical order) will be returned instead: that&#8217;s the reason why all previous URLs always returned the preview of the first page only&#8230; In short, for non-TCS filestores, the path pretty much does the job, but for TCS filestores we need additional parameters to uniquely identify the rendition.<\/p>\n<p>&nbsp;<\/p>\n<p>So to summarize the investigation we did with EMC (because yes we found a definitive solution), the minimum elements that should be present in the Thumbnail URLs are:<\/p>\n<ul>\n<li>non-TCS filestore:\n<ul>\n<li>Full path to the right file<\/li>\n<li>Store used<\/li>\n<\/ul>\n<\/li>\n<li>TCS filestore:\n<ul>\n<li>Path containing at least the Docbase ID<\/li>\n<li>Store used<\/li>\n<li>Document ID (parent_id)<\/li>\n<li>Format of the preview<\/li>\n<li>page and\/or page_modifier (from the dmr_content table)<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p>In the end, EMC provided another hotfix which fix the first hotfix. The complete URLs are now generated by D2 and the previews are working properly even with a TCS Thumbnail filestore. Here are the examples for the 3-pages document:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">https:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/80\/00\/10\/4d.jpg&amp;store=trusted_thumbnail_store_01&amp;did=09012345801a8f56&amp;format=jpeg_lres&amp;page_modifier=000000001\nhttps:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/80\/00\/10\/4e.jpg&store=trusted_thumbnail_store_01&did=09012345801a8f56&format=jpeg_lres&page_modifier=000000002\nhttps:\/\/thumbnail_alias\/thumbsrv\/getThumbnail?path=00012345\/80\/00\/10\/4f.jpg&amp;store=trusted_thumbnail_store_01&amp;did=09012345801a8f56&amp;format=jpeg_lres&amp;page_modifier=000000003<\/pre>\n<p>&nbsp;<\/p>\n<p>The definitive hotfix should normally be included in all the 2017 releases according to EMC.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A few months ago and right after a migration of around 0.5TB of documents, we enabled the TCS for one of our Application. We were using a Content Server 7.2 P05 with the associated D2 4.5 P03. As already mentioned in a previous blog, D2 4.5 doesn&#8217;t handle the previews of the documents and therefore [&hellip;]<\/p>\n","protected":false},"author":20,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[525],"tags":[696,129,1058,583,945],"type_dbi":[],"class_list":["post-9920","post","type-post","status-publish","format-standard","hentry","category-enterprise-content-management","tag-7-2","tag-documentum","tag-tcs","tag-thumbnail","tag-thumbnail-server"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Documentum - Thumbnail not working with TCS - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum - Thumbnail not working with TCS\" \/>\n<meta property=\"og:description\" content=\"A few months ago and right after a migration of around 0.5TB of documents, we enabled the TCS for one of our Application. We were using a Content Server 7.2 P05 with the associated D2 4.5 P03. As already mentioned in a previous blog, D2 4.5 doesn&#8217;t handle the previews of the documents and therefore [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-01T07:41:16+00:00\" \/>\n<meta name=\"author\" content=\"Morgan Patou\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@MorganPatou\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Morgan Patou\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum &#8211; Thumbnail not working with TCS\",\"datePublished\":\"2017-04-01T07:41:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/\"},\"wordCount\":1378,\"commentCount\":0,\"keywords\":[\"7.2\",\"Documentum\",\"TCS\",\"Thumbnail\",\"Thumbnail Server\"],\"articleSection\":[\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/\",\"name\":\"Documentum - Thumbnail not working with TCS - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"datePublished\":\"2017-04-01T07:41:16+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Documentum &#8211; Thumbnail not working with TCS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8\",\"name\":\"Morgan Patou\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"caption\":\"Morgan Patou\"},\"description\":\"Morgan Patou has over 12 years of experience in Enterprise Content Management (ECM) systems, with a strong focus in recent years on platforms such as Alfresco, Documentum, and M-Files. He specializes in the architecture, setup, customization, and maintenance of ECM infrastructures in complex &amp; critical environments. Morgan is well-versed in both engineering and operations aspects, including high availability design, system integration, and lifecycle management. He also has a solid foundation in open-source and proprietary technologies - ranging from Apache, OpenLDAP or Kerberos to enterprise-grade systems like WebLogic. Morgan Patou holds an Engineering Degree in Computer Science from ENSISA (\u00c9cole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse, France. He is Alfresco Content Services Certified Administrator (ACSCA), Alfresco Content Services Certified Engineer (ACSCE) as well as OpenText Documentum Certified Administrator. His industry experience spans the Public Sector, IT Services, Financial Services\/Banking, and the Pharmaceutical industry.\",\"sameAs\":[\"https:\/\/blog.dbi-services.com\/author\/morgan-patou\/\",\"https:\/\/x.com\/MorganPatou\"],\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/morgan-patou\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Documentum - Thumbnail not working with TCS - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/","og_locale":"en_US","og_type":"article","og_title":"Documentum - Thumbnail not working with TCS","og_description":"A few months ago and right after a migration of around 0.5TB of documents, we enabled the TCS for one of our Application. We were using a Content Server 7.2 P05 with the associated D2 4.5 P03. As already mentioned in a previous blog, D2 4.5 doesn&#8217;t handle the previews of the documents and therefore [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/","og_site_name":"dbi Blog","article_published_time":"2017-04-01T07:41:16+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum &#8211; Thumbnail not working with TCS","datePublished":"2017-04-01T07:41:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/"},"wordCount":1378,"commentCount":0,"keywords":["7.2","Documentum","TCS","Thumbnail","Thumbnail Server"],"articleSection":["Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/","name":"Documentum - Thumbnail not working with TCS - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2017-04-01T07:41:16+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-thumbnail-not-working-with-tcs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Documentum &#8211; Thumbnail not working with TCS"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8","name":"Morgan Patou","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","caption":"Morgan Patou"},"description":"Morgan Patou has over 12 years of experience in Enterprise Content Management (ECM) systems, with a strong focus in recent years on platforms such as Alfresco, Documentum, and M-Files. He specializes in the architecture, setup, customization, and maintenance of ECM infrastructures in complex &amp; critical environments. Morgan is well-versed in both engineering and operations aspects, including high availability design, system integration, and lifecycle management. He also has a solid foundation in open-source and proprietary technologies - ranging from Apache, OpenLDAP or Kerberos to enterprise-grade systems like WebLogic. Morgan Patou holds an Engineering Degree in Computer Science from ENSISA (\u00c9cole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse, France. He is Alfresco Content Services Certified Administrator (ACSCA), Alfresco Content Services Certified Engineer (ACSCE) as well as OpenText Documentum Certified Administrator. His industry experience spans the Public Sector, IT Services, Financial Services\/Banking, and the Pharmaceutical industry.","sameAs":["https:\/\/blog.dbi-services.com\/author\/morgan-patou\/","https:\/\/x.com\/MorganPatou"],"url":"https:\/\/www.dbi-services.com\/blog\/author\/morgan-patou\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/9920","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=9920"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/9920\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=9920"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=9920"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=9920"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=9920"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}