Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: https://milanmatejic.wordpress.com/feed/

  1. <?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
  2. xmlns:content="http://purl.org/rss/1.0/modules/content/"
  3. xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:atom="http://www.w3.org/2005/Atom"
  6. xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  7. xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
  8. xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
  9. >
  10.  
  11. <channel>
  12. <title>Thoughts about HCL Connections, Domino and Sametime</title>
  13. <atom:link href="https://milanmatejic.wordpress.com/feed/" rel="self" type="application/rss+xml" />
  14. <link>https://milanmatejic.wordpress.com</link>
  15. <description>This blog is primarily about HCL Connections, Domino and Sametime.</description>
  16. <lastBuildDate>Wed, 10 Apr 2024 06:33:38 +0000</lastBuildDate>
  17. <language>en</language>
  18. <sy:updatePeriod>
  19. hourly </sy:updatePeriod>
  20. <sy:updateFrequency>
  21. 1 </sy:updateFrequency>
  22. <generator>http://wordpress.com/</generator>
  23. <cloud domain='milanmatejic.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
  24. <image>
  25. <url>https://s0.wp.com/i/buttonw-com.png</url>
  26. <title>Thoughts about HCL Connections, Domino and Sametime</title>
  27. <link>https://milanmatejic.wordpress.com</link>
  28. </image>
  29. <atom:link rel="search" type="application/opensearchdescription+xml" href="https://milanmatejic.wordpress.com/osd.xml" title="Thoughts about HCL Connections, Domino and Sametime" />
  30. <atom:link rel='hub' href='https://milanmatejic.wordpress.com/?pushpress=hub'/>
  31. <item>
  32. <title>HCL Notes Crash While Importing PKCS12 Database to the HCL Domino Certificate Manager</title>
  33. <link>https://milanmatejic.wordpress.com/2024/04/09/hcl-notes-crash-while-importing-pkcs12-database-to-the-hcl-domino-certificate-manager/</link>
  34. <comments>https://milanmatejic.wordpress.com/2024/04/09/hcl-notes-crash-while-importing-pkcs12-database-to-the-hcl-domino-certificate-manager/#comments</comments>
  35. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  36. <pubDate>Tue, 09 Apr 2024 12:15:21 +0000</pubDate>
  37. <category><![CDATA[certificate manager]]></category>
  38. <category><![CDATA[domino]]></category>
  39. <category><![CDATA[HCL Notes]]></category>
  40. <category><![CDATA[notes]]></category>
  41. <category><![CDATA[certificater manager]]></category>
  42. <category><![CDATA[certmgr]]></category>
  43. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=3037</guid>
  44.  
  45. <description><![CDATA[While I was working with HCL Domino Certificate Manager (CertMgr), which btw. is awesome, I encountered an issue, that caused HCL Notes to crash. Namely, the import of a seemingly valid PFX file (PKCS12 database, downloaded directly from the customer&#8217;s TLS provider&#8217;s site) caused the HCL Notes to crash, after which the certificates and the [&#8230;]]]></description>
  46. <content:encoded><![CDATA[
  47. <p>While I was working with HCL Domino Certificate Manager (CertMgr), which btw. is awesome, I encountered an issue, that caused HCL Notes to crash.</p>
  48.  
  49.  
  50.  
  51. <p>Namely, the import of a seemingly valid PFX file (PKCS12 database, downloaded directly from the customer&#8217;s TLS provider&#8217;s site) caused the HCL Notes to crash, after which the certificates and the private key contained in the file, were not imported. I could reproduce the issue with the same PFX file in multiple environments running HCL Domino 12.0.2 FPx, HCL Notes 12.0.2 as well as HCL Notes 14.0.</p>
  52.  
  53.  
  54.  
  55. <p>Upon closer inspection of the PFX file using OpenSSL, I&#8217;ve found that the Message Authentication Code (MAC), used to verify and protect the integrity of the PKCS12 database, was missing. This could be observed by issuing the following OpenSSL command:</p>
  56.  
  57.  
  58.  
  59. <p><code>openssl pkcs12 -in testNoMac.pfx -passin pass:testNoMac -passout pass:testNoMac -info</code></p>
  60.  
  61.  
  62.  
  63. <p>The output of the command, using OpenSSL version 3.1.2:</p>
  64.  
  65.  
  66.  
  67. <p><code><strong>Warning: MAC is absent!<br></strong>PKCS7 Data<br>Certificate bag<br>Bag Attributes<br>localKeyID: 24 FB 6A AF B8 E6 C7 73 F1 F0 71 EF E7 7E 6D 79 14 A7 B4 07<br>subject=CN = site.server.com<br>issuer=C = US, O = Let's Encrypt, CN = R3<br>-----BEGIN CERTIFICATE-----<br>MIIE9DCCA9ygAwIBAgISBCP4MnSnMtntgtWJ9eTtay33MA0GCSqGSIb3DQEBCwUA</code></p>
  68.  
  69.  
  70.  
  71. <p>Looking into the matter a little bit further, I was able to produce PKCS12 databases using OpenSSL, for testing purposes, without MAC by using the &#8220;-nomac&#8221; switch, for example: </p>
  72.  
  73.  
  74.  
  75. <p><code>openssl pkcs12 -export -out testNoMac.pfx -inkey privkey.pem -in cert.pem -certfile chain.pem -nomac</code></p>
  76.  
  77.  
  78.  
  79. <p><em>Note: I don&#8217;t know why you would want to produce a PKCS12 database without MAC, if you know of a valid use case for doing so, please let me know.</em></p>
  80.  
  81.  
  82.  
  83. <p>Every PKCS12 database I&#8217;ve produced with &#8220;-nomac&#8221; switch would successfully crash HCL Notes. <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
  84.  
  85.  
  86.  
  87. <p>As a workaround, I&#8217;ve imported the certificates and the private key needed, using the PEM format, which is also accepted by the HCL Domino Certificate Manager.</p>
  88.  
  89.  
  90.  
  91. <p>This issue is currently being inspected and, at the time being, I don&#8217;t have the information about which component, on the HCL Notes client, is causing the crash. I hope this saves you some time if you encounter the same issue. </p>
  92.  
  93.  
  94.  
  95. <p>UPDATE: In the meantime, it&#8217;s verified that the missing MAC information from the PKCS12 database is causing HCL Notes to crash. This issue has been reported and tracked under the SPR # DNADD46LU5.</p>
  96. ]]></content:encoded>
  97. <wfw:commentRss>https://milanmatejic.wordpress.com/2024/04/09/hcl-notes-crash-while-importing-pkcs12-database-to-the-hcl-domino-certificate-manager/feed/</wfw:commentRss>
  98. <slash:comments>1</slash:comments>
  99. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2017/08/road-sign-1274312_640.jpg" />
  100. <media:content url="https://milanmatejic.files.wordpress.com/2017/08/road-sign-1274312_640.jpg" medium="image">
  101. <media:title type="html">road-sign-1274312_640</media:title>
  102. </media:content>
  103.  
  104. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  105. <media:title type="html">milanmatejic</media:title>
  106. </media:content>
  107. </item>
  108. <item>
  109. <title>Domino Authentication via SAML &#8211; All Flavours</title>
  110. <link>https://milanmatejic.wordpress.com/2023/10/12/domino-authentication-via-saml-all-flavours/</link>
  111. <comments>https://milanmatejic.wordpress.com/2023/10/12/domino-authentication-via-saml-all-flavours/#respond</comments>
  112. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  113. <pubDate>Thu, 12 Oct 2023 13:55:04 +0000</pubDate>
  114. <category><![CDATA[Security]]></category>
  115. <category><![CDATA[SSO]]></category>
  116. <category><![CDATA[authentication]]></category>
  117. <category><![CDATA[domino saml]]></category>
  118. <category><![CDATA[notes saml]]></category>
  119. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=3016</guid>
  120.  
  121. <description><![CDATA[For the Engage 2022 event, I prepared a &#8220;Domino Authentication via SAML &#8211; All Flavours&#8221; session, to present it with my colleague Herwig W. Schauer. Alas, the session never got accepted and I never had time to convert it to a whitepaper. As I invested quite a bit of time for preparing the slides, I [&#8230;]]]></description>
  122. <content:encoded><![CDATA[
  123. <p>For the Engage 2022 event, I prepared a &#8220;Domino Authentication via SAML &#8211; All Flavours&#8221; session, to present it with my colleague Herwig W. Schauer. Alas, the session never got accepted and I never had time to convert it to a whitepaper. As I invested quite a bit of time for preparing the slides, I thought that I should upload it here before it inevitably travels into oblivion. Maybe it will come handy for some of you.</p>
  124.  
  125.  
  126.  
  127. <p>Keep in mind that it was created in 2022 and there are some things I would have to change, for example, the following diagram is not 100% accurate: </p>
  128.  
  129.  
  130.  
  131. <figure class="wp-block-image size-large"><a href="https://milanmatejic.files.wordpress.com/2023/10/image.png"><img width="1024" height="576" data-attachment-id="3020" data-permalink="https://milanmatejic.wordpress.com/2023/10/12/domino-authentication-via-saml-all-flavours/image-45/" data-orig-file="https://milanmatejic.files.wordpress.com/2023/10/image.png" data-orig-size="1882,1060" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="image" data-image-description="" data-image-caption="" data-medium-file="https://milanmatejic.files.wordpress.com/2023/10/image.png?w=300" data-large-file="https://milanmatejic.files.wordpress.com/2023/10/image.png?w=809" src="https://milanmatejic.files.wordpress.com/2023/10/image.png?w=1024" alt="" class="wp-image-3020" srcset="https://milanmatejic.files.wordpress.com/2023/10/image.png?w=1024 1024w, https://milanmatejic.files.wordpress.com/2023/10/image.png?w=150 150w, https://milanmatejic.files.wordpress.com/2023/10/image.png?w=300 300w, https://milanmatejic.files.wordpress.com/2023/10/image.png?w=768 768w, https://milanmatejic.files.wordpress.com/2023/10/image.png 1882w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
  132.  
  133.  
  134.  
  135. <p>Let me know if this topic is still of interest, I could update the presentation and do a webinar or just write a whitepaper&#8230;</p>
  136.  
  137.  
  138.  
  139. <div data-wp-interactive="core/file" class="wp-block-file"><object data-wp-bind--hidden="!state.hasPdfPreview"  class="wp-block-file__embed" data="https://milanmatejic.files.wordpress.com/2023/10/saml-hcl-deck-for-sharing.pdf" type="application/pdf" style="width:100%;height:600px" aria-label="Embed of Milan Matejic - SAML Deck-for-Sharing."></object><a id="wp-block-file--media-91312929-49ca-49f7-bf04-640da6b9efe6" href="https://milanmatejic.files.wordpress.com/2023/10/saml-hcl-deck-for-sharing.pdf">Milan Matejic &#8211; SAML Deck-for-Sharing</a><a href="https://milanmatejic.files.wordpress.com/2023/10/saml-hcl-deck-for-sharing.pdf" class="wp-block-file__button wp-element-button" download aria-describedby="wp-block-file--media-91312929-49ca-49f7-bf04-640da6b9efe6">Download</a></div>
  140.  
  141.  
  142.  
  143. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  144. <div class="jetpack-video-wrapper"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/LYsZ02Wpq7Q?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></div>
  145. </div><figcaption class="wp-element-caption">Basic SAML &#8211; Demo</figcaption></figure>
  146.  
  147.  
  148.  
  149. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  150. <div class="jetpack-video-wrapper"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/GezcDAdqXJo?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></div>
  151. </div><figcaption class="wp-element-caption">Basic SAML incl. SSO &#8211; Demo</figcaption></figure>
  152.  
  153.  
  154.  
  155. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  156. <div class="jetpack-video-wrapper"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/jQUwiqQh2vY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></div>
  157. </div><figcaption class="wp-element-caption">Web Federated Login &#8211; Demo</figcaption></figure>
  158.  
  159.  
  160.  
  161. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  162. <div class="jetpack-video-wrapper"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/tnFswbsJ6_o?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></div>
  163. </div><figcaption class="wp-element-caption">Notes Federated Login &#8211; Demo</figcaption></figure>
  164.  
  165.  
  166.  
  167. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  168. <div class="jetpack-video-wrapper"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/ucUKx6e4cCU?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></div>
  169. </div><figcaption class="wp-element-caption">Notes Federated Login &#8211; Subsequent Login</figcaption></figure>
  170.  
  171.  
  172.  
  173. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  174. <div class="jetpack-video-wrapper"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/ofr7sniEJNY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></div>
  175. </div><figcaption class="wp-element-caption">HCL Nomad SAML &#8211; Initial Configuration</figcaption></figure>
  176.  
  177.  
  178.  
  179. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  180. <div class="jetpack-video-wrapper"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/QquuFw3W_dw?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></div>
  181. </div><figcaption class="wp-element-caption">HCL Nomad SAML &#8211; Subsequent Login</figcaption></figure>
  182.  
  183.  
  184.  
  185. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  186. <div class="jetpack-video-wrapper"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/K523fvKWE4k?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></div>
  187. </div><figcaption class="wp-element-caption">HCL Traveler &#8211; SAML Enabled &#8211; New Device</figcaption></figure>
  188.  
  189.  
  190.  
  191. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  192. <div class="jetpack-video-wrapper"><iframe class="youtube-player" width="809" height="456" src="https://www.youtube.com/embed/gvV-0opLwcY?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent" allowfullscreen="true" style="border:0;" sandbox="allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox"></iframe></div>
  193. </div><figcaption class="wp-element-caption">HCL Traveler &#8211; SAML Enabled &#8211; Encrypted Mail</figcaption></figure>
  194. ]]></content:encoded>
  195. <wfw:commentRss>https://milanmatejic.wordpress.com/2023/10/12/domino-authentication-via-saml-all-flavours/feed/</wfw:commentRss>
  196. <slash:comments>0</slash:comments>
  197. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2018/09/finger-2081169_640.jpg" />
  198. <media:content url="https://milanmatejic.files.wordpress.com/2018/09/finger-2081169_640.jpg" medium="image">
  199. <media:title type="html">finger-2081169_640</media:title>
  200. </media:content>
  201.  
  202. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  203. <media:title type="html">milanmatejic</media:title>
  204. </media:content>
  205.  
  206. <media:content url="https://milanmatejic.files.wordpress.com/2023/10/image.png?w=1024" medium="image" />
  207. </item>
  208. <item>
  209. <title>HCL Connections &#8211; How To Deactivate the Welcome Tour</title>
  210. <link>https://milanmatejic.wordpress.com/2023/06/27/hcl-connections-how-to-deactivate-the-welcome-tour/</link>
  211. <comments>https://milanmatejic.wordpress.com/2023/06/27/hcl-connections-how-to-deactivate-the-welcome-tour/#respond</comments>
  212. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  213. <pubDate>Tue, 27 Jun 2023 06:53:44 +0000</pubDate>
  214. <category><![CDATA[Connections]]></category>
  215. <category><![CDATA[connections]]></category>
  216. <category><![CDATA[hcl connections]]></category>
  217. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=3004</guid>
  218.  
  219. <description><![CDATA[If you don't see a benefit in the new HCL Connections Welcome Tour feature, it can be easily deactivated.]]></description>
  220. <content:encoded><![CDATA[
  221. <p>If you don&#8217;t see a benefit in the new HCL Connections Welcome Tour feature, it can be easily deactivated by using the HCL Connections App Registry, as documented in the <a rel="noreferrer noopener" href="https://github.com/HCL-TECH-SOFTWARE/connections-ui-docs/tree/master/components/welcome-tour#custom-configuration" target="_blank">GitHub documentation</a> maintained by HCL.</p>
  222.  
  223.  
  224.  
  225. <p>But as the App Registry is part of the HCL Connections Component Pack, you may not be fortunate enough to have it deployed. If that is the case and you want to disable the HCL Connections Welcome Tour feature, there is a way to do it in &#8220;Blue Stack only&#8221; environments, although it involves a couple more steps.</p>
  226.  
  227.  
  228.  
  229. <p>This involves adding some json code to the &#8220;header.jsp&#8221; file, to do this follow the guidelines for customizing the &#8220;header.jsp&#8221; file, as described in the <a rel="noreferrer noopener" href="https://opensource.hcltechsw.com/connections-doc/v8-cr2/connectors/icec/cec-inst-adding-link-header-nav.html?h=header.jsp" target="_blank">official documentation</a>. </p>
  230.  
  231.  
  232.  
  233. <p>After you are familiar how you can edit the &#8220;header.jsp&#8221; file, simply add the following code to it: </p>
  234.  
  235.  
  236.  
  237. <pre class="wp-block-code"><code>         &lt;script&gt;
  238.            window.connectionsExtension = {
  239.               "com.hcl.connections.tours": {
  240.                  "disabled": true        
  241.               }
  242.            }
  243.         &lt;/script&gt;</code></pre>
  244.  
  245.  
  246.  
  247. <p>It is also beneficial to add some comments, so you know why you made this change a few weeks later, like this for example:</p>
  248.  
  249.  
  250.  
  251. <figure class="wp-block-image size-large"><a href="https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png" target="_blank" rel=" noreferrer noopener"><img width="1024" height="461" data-attachment-id="3012" data-permalink="https://milanmatejic.wordpress.com/2023/06/27/hcl-connections-how-to-deactivate-the-welcome-tour/2023-06-27-08_29_10-header-jsp-templates-ssh_-192-168-56-111-visual-studio-code/" data-orig-file="https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png" data-orig-size="1599,720" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code" data-image-description="" data-image-caption="" data-medium-file="https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png?w=300" data-large-file="https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png?w=809" src="https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png?w=1024" alt="" class="wp-image-3012" srcset="https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png?w=1024 1024w, https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png?w=150 150w, https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png?w=300 300w, https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png?w=768 768w, https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png 1599w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
  252.  
  253.  
  254.  
  255. <p> Hope this helps!</p>
  256. ]]></content:encoded>
  257. <wfw:commentRss>https://milanmatejic.wordpress.com/2023/06/27/hcl-connections-how-to-deactivate-the-welcome-tour/feed/</wfw:commentRss>
  258. <slash:comments>0</slash:comments>
  259. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2023/06/bd0c36c4-82f8-4fc1-a69f-66decc671218.png" />
  260. <media:content url="https://milanmatejic.files.wordpress.com/2023/06/bd0c36c4-82f8-4fc1-a69f-66decc671218.png" medium="image">
  261. <media:title type="html">bd0c36c4-82f8-4fc1-a69f-66decc671218</media:title>
  262. </media:content>
  263.  
  264. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  265. <media:title type="html">milanmatejic</media:title>
  266. </media:content>
  267.  
  268. <media:content url="https://milanmatejic.files.wordpress.com/2023/06/2023-06-27-08_29_10-header.jsp-templates-ssh_-192.168.56.111-visual-studio-code.png?w=1024" medium="image" />
  269. </item>
  270. <item>
  271. <title>HCL Connections &#8211; Issues Customizing the Font List for Tiny Editors 4.9.2.17 Integrations and Newer</title>
  272. <link>https://milanmatejic.wordpress.com/2023/06/09/hcl-connections-issues-customizing-the-font-list-for-tiny-editors-4-9-2-17-integrations-and-newer/</link>
  273. <comments>https://milanmatejic.wordpress.com/2023/06/09/hcl-connections-issues-customizing-the-font-list-for-tiny-editors-4-9-2-17-integrations-and-newer/#respond</comments>
  274. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  275. <pubDate>Fri, 09 Jun 2023 07:00:00 +0000</pubDate>
  276. <category><![CDATA[Uncategorized]]></category>
  277. <category><![CDATA[hcl connections]]></category>
  278. <category><![CDATA[tiny editors]]></category>
  279. <category><![CDATA[TinyMCE]]></category>
  280. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=2998</guid>
  281.  
  282. <description><![CDATA[Due to some issues in HCL Connections integration layer for TinyEditors, it is currently not possible to customize the font picker in TinyMCE, as described in the official documentation of HCL Connections. This issue is described in the KB0105102 &#8211; Defect Article and it will be fixed in the future releases of the software. Subscribe [&#8230;]]]></description>
  283. <content:encoded><![CDATA[
  284. <p>Due to some issues in HCL Connections integration layer for TinyEditors, it is currently not possible to customize the font picker in TinyMCE, as described in the <a rel="noreferrer noopener" href="https://opensource.hcltechsw.com/connections-doc/v8-cr2/admin/install/tiny_editors/t_configure_09-set-fontpicker-fonts.html?h=tiny+editor+fon" target="_blank">official documentation</a> of HCL Connections. </p>
  285.  
  286.  
  287.  
  288. <p>This issue is described in the <a rel="noreferrer noopener" href="https://support.hcltechsw.com/csm?id=kb_article&amp;sysparm_article=KB0105102" target="_blank">KB0105102 &#8211; Defect Article</a> and it will be fixed in the future releases of the software. Subscribe to the mentioned article to get the information about the problem resolution as soon as it gets available. </p>
  289.  
  290.  
  291.  
  292. <p></p>
  293. ]]></content:encoded>
  294. <wfw:commentRss>https://milanmatejic.wordpress.com/2023/06/09/hcl-connections-issues-customizing-the-font-list-for-tiny-editors-4-9-2-17-integrations-and-newer/feed/</wfw:commentRss>
  295. <slash:comments>0</slash:comments>
  296. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2017/08/road-sign-1274312_640.jpg" />
  297. <media:content url="https://milanmatejic.files.wordpress.com/2017/08/road-sign-1274312_640.jpg" medium="image">
  298. <media:title type="html">road-sign-1274312_640</media:title>
  299. </media:content>
  300.  
  301. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  302. <media:title type="html">milanmatejic</media:title>
  303. </media:content>
  304. </item>
  305. <item>
  306. <title>HCL Connections Mail Plug-in Deployment &#8211; Missing Information in the Documentation</title>
  307. <link>https://milanmatejic.wordpress.com/2023/05/22/hcl-connections-mail-plug-in-deployment-missing-information-in-the-documentation/</link>
  308. <comments>https://milanmatejic.wordpress.com/2023/05/22/hcl-connections-mail-plug-in-deployment-missing-information-in-the-documentation/#respond</comments>
  309. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  310. <pubDate>Mon, 22 May 2023 09:29:09 +0000</pubDate>
  311. <category><![CDATA[Connections]]></category>
  312. <category><![CDATA[hcl connections]]></category>
  313. <category><![CDATA[hcl connections mail plug-in]]></category>
  314. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=2979</guid>
  315.  
  316. <description><![CDATA[If you are planning to deploy the HCL Connections Mail Plug-in, take note of the KB0092821 knowledge base article. This is a mandatory step that must be done in HCL Connections 8 CR1 and newer environments. If the steps described in KB0092821 article are not followed, you will get the following error message in the [&#8230;]]]></description>
  317. <content:encoded><![CDATA[
  318. <p>If you are planning to deploy the HCL Connections Mail Plug-in, take note of the <a rel="noreferrer noopener" href="https://support.hcltechsw.com/csm?id=kb_article&amp;sysparm_article=KB0092821" target="_blank">KB0092821</a> knowledge base article. This is a mandatory step that must be done in HCL Connections 8 CR1 and newer environments. </p>
  319.  
  320.  
  321.  
  322. <p class="has-text-align-center">If the steps described in <a rel="noreferrer noopener" href="https://support.hcltechsw.com/csm?id=kb_article&amp;sysparm_article=KB0092821" target="_blank">KB0092821</a> article are not followed, you will get the following error message in the browser console: <br><br><em>Error: Unable to load <a href="https://&lt;mailserver_hostname&#038;gt" rel="nofollow">https://&lt;mailserver_hostname&#038;gt</a>; status: 403</em></p>
  323.  
  324.  
  325.  
  326. <p>We are working on adding this step to the official documentation of HCL Connections Mail Plug-in.</p>
  327. ]]></content:encoded>
  328. <wfw:commentRss>https://milanmatejic.wordpress.com/2023/05/22/hcl-connections-mail-plug-in-deployment-missing-information-in-the-documentation/feed/</wfw:commentRss>
  329. <slash:comments>0</slash:comments>
  330. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2017/08/road-sign-1274312_640.jpg" />
  331. <media:content url="https://milanmatejic.files.wordpress.com/2017/08/road-sign-1274312_640.jpg" medium="image">
  332. <media:title type="html">road-sign-1274312_640</media:title>
  333. </media:content>
  334.  
  335. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  336. <media:title type="html">milanmatejic</media:title>
  337. </media:content>
  338. </item>
  339. <item>
  340. <title>HCL Notes &#8211; Swiftfile Not Working as Expected</title>
  341. <link>https://milanmatejic.wordpress.com/2023/03/29/hcl-notes-swiftfile-not-working-as-expected/</link>
  342. <comments>https://milanmatejic.wordpress.com/2023/03/29/hcl-notes-swiftfile-not-working-as-expected/#respond</comments>
  343. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  344. <pubDate>Wed, 29 Mar 2023 06:30:31 +0000</pubDate>
  345. <category><![CDATA[HCL Notes]]></category>
  346. <category><![CDATA[notes]]></category>
  347. <category><![CDATA[HCL Notes Switftfile]]></category>
  348. <category><![CDATA[Swiftfile]]></category>
  349. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=2966</guid>
  350.  
  351. <description><![CDATA[When using the "preview pane" in HCL Notes, and clicking on a folder, suggested by SwiftFile, the "move to folder" dialogue would sometimes come up.  This was happening to my client, in about 1 of 20 cases]]></description>
  352. <content:encoded><![CDATA[
  353. <p><span class="tabs2_section tabs2_section_1 tabs2_section1 tab_section" id="section_tab.d582dcb0c3310200b0449f2974d3aebd" role="tabpanel" aria-hidden="false" aria-labelledby="section_tab.d582dcb0c3310200b0449f2974d3aebd" style="display: block"><span id="section-d582dcb0c3310200b0449f2974d3aebd" class="section  sn-stream-section"><span class="sn-widget-textblock-body sn-widget-textblock-body_formatted">When using the &#8220;preview pane&#8221; in HCL Notes, and clicking on a folder, suggested by SwiftFile, the &#8220;move to folder&#8221; dialogue would sometimes come up.  This was happening to my client, in about 1 of 20 cases</span></span></span></p>
  354.  
  355.  
  356. <div class="wp-block-image">
  357. <figure class="aligncenter size-large"><a href="https://milanmatejic.files.wordpress.com/2023/03/grafik.png"><img width="1024" height="671" data-attachment-id="2968" data-permalink="https://milanmatejic.wordpress.com/2023/03/29/hcl-notes-swiftfile-not-working-as-expected/grafik/" data-orig-file="https://milanmatejic.files.wordpress.com/2023/03/grafik.png" data-orig-size="1366,896" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="grafik" data-image-description="" data-image-caption="" data-medium-file="https://milanmatejic.files.wordpress.com/2023/03/grafik.png?w=300" data-large-file="https://milanmatejic.files.wordpress.com/2023/03/grafik.png?w=809" src="https://milanmatejic.files.wordpress.com/2023/03/grafik.png?w=1024" alt="" class="wp-image-2968" srcset="https://milanmatejic.files.wordpress.com/2023/03/grafik.png?w=1024 1024w, https://milanmatejic.files.wordpress.com/2023/03/grafik.png?w=150 150w, https://milanmatejic.files.wordpress.com/2023/03/grafik.png?w=300 300w, https://milanmatejic.files.wordpress.com/2023/03/grafik.png?w=768 768w, https://milanmatejic.files.wordpress.com/2023/03/grafik.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption"><em>Screenshot of the issue described above.</em></figcaption></figure></div>
  358.  
  359.  
  360. <p>I tried numerous things to resolve this issue, but in the end, the only thing that helped was rebuilding the Swiftfile index, which can be done in your HCL Notes &#8220;Preferences&#8221; menu (open your mail database and navigate to &#8220;More &#8211;&gt; Preferences &#8211;&gt; Mail &#8211;&gt; Swiftfile &#8211;&gt; Rebuild index )&#8221; as displayed in the screenshots bellow: </p>
  361.  
  362.  
  363. <div class="wp-block-image">
  364. <figure class="aligncenter size-large"><a href="https://milanmatejic.files.wordpress.com/2023/03/image.png"><img loading="lazy" width="1024" height="543" data-attachment-id="2974" data-permalink="https://milanmatejic.wordpress.com/2023/03/29/hcl-notes-swiftfile-not-working-as-expected/image-43/" data-orig-file="https://milanmatejic.files.wordpress.com/2023/03/image.png" data-orig-size="1486,789" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="image" data-image-description="" data-image-caption="" data-medium-file="https://milanmatejic.files.wordpress.com/2023/03/image.png?w=300" data-large-file="https://milanmatejic.files.wordpress.com/2023/03/image.png?w=809" src="https://milanmatejic.files.wordpress.com/2023/03/image.png?w=1024" alt="" class="wp-image-2974" srcset="https://milanmatejic.files.wordpress.com/2023/03/image.png?w=1024 1024w, https://milanmatejic.files.wordpress.com/2023/03/image.png?w=150 150w, https://milanmatejic.files.wordpress.com/2023/03/image.png?w=300 300w, https://milanmatejic.files.wordpress.com/2023/03/image.png?w=768 768w, https://milanmatejic.files.wordpress.com/2023/03/image.png 1486w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure></div>
  365.  
  366. <div class="wp-block-image">
  367. <figure class="aligncenter size-large"><a href="https://milanmatejic.files.wordpress.com/2023/03/grafik-1.png"><img loading="lazy" width="746" height="308" data-attachment-id="2970" data-permalink="https://milanmatejic.wordpress.com/2023/03/29/hcl-notes-swiftfile-not-working-as-expected/grafik-1/" data-orig-file="https://milanmatejic.files.wordpress.com/2023/03/grafik-1.png" data-orig-size="746,308" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="grafik-1" data-image-description="" data-image-caption="" data-medium-file="https://milanmatejic.files.wordpress.com/2023/03/grafik-1.png?w=300" data-large-file="https://milanmatejic.files.wordpress.com/2023/03/grafik-1.png?w=746" src="https://milanmatejic.files.wordpress.com/2023/03/grafik-1.png?w=746" alt="" class="wp-image-2970" srcset="https://milanmatejic.files.wordpress.com/2023/03/grafik-1.png 746w, https://milanmatejic.files.wordpress.com/2023/03/grafik-1.png?w=150 150w, https://milanmatejic.files.wordpress.com/2023/03/grafik-1.png?w=300 300w" sizes="(max-width: 746px) 100vw, 746px" /></a></figure></div>
  368.  
  369.  
  370. <p>After rebuilding the index, the issue hasn&#8217;t occured again and HCL Notes Swiftfile was working as expected.</p>
  371. ]]></content:encoded>
  372. <wfw:commentRss>https://milanmatejic.wordpress.com/2023/03/29/hcl-notes-swiftfile-not-working-as-expected/feed/</wfw:commentRss>
  373. <slash:comments>0</slash:comments>
  374. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2017/10/green-381334_640.png" />
  375. <media:content url="https://milanmatejic.files.wordpress.com/2017/10/green-381334_640.png" medium="image">
  376. <media:title type="html">green-381334_640</media:title>
  377. </media:content>
  378.  
  379. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  380. <media:title type="html">milanmatejic</media:title>
  381. </media:content>
  382.  
  383. <media:content url="https://milanmatejic.files.wordpress.com/2023/03/grafik.png?w=1024" medium="image" />
  384.  
  385. <media:content url="https://milanmatejic.files.wordpress.com/2023/03/image.png?w=1024" medium="image" />
  386.  
  387. <media:content url="https://milanmatejic.files.wordpress.com/2023/03/grafik-1.png?w=746" medium="image" />
  388. </item>
  389. <item>
  390. <title>HCL Connections 8 &#8211; PDF Export Issues After Installing CNX in a Clustered WAS Environment</title>
  391. <link>https://milanmatejic.wordpress.com/2023/03/24/hcl-connections-8-pdf-export-issues-after-installing-cnx-in-a-clustered-was-environment/</link>
  392. <comments>https://milanmatejic.wordpress.com/2023/03/24/hcl-connections-8-pdf-export-issues-after-installing-cnx-in-a-clustered-was-environment/#respond</comments>
  393. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  394. <pubDate>Fri, 24 Mar 2023 07:00:00 +0000</pubDate>
  395. <category><![CDATA[Connections]]></category>
  396. <category><![CDATA[hcl connections]]></category>
  397. <category><![CDATA[pdf export]]></category>
  398. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=2948</guid>
  399.  
  400. <description><![CDATA[Recently I encountered an issue with PDF Export, right after the installation of HCL Connections applications in a multi-node, clustered, IBM WebSphere Application Server environment. This problem only occurs in a multi-node WAS environment. In the HCL Connections GUI, in the &#8220;PDF Export Access&#8221; settings of the&#8221;Edit Community&#8221; menu (Community &#8211;&#62; Community Actions &#8211;&#62; Edit [&#8230;]]]></description>
  401. <content:encoded><![CDATA[
  402. <p>Recently I encountered an issue with PDF Export, right after the installation of HCL Connections applications in a multi-node, clustered, IBM WebSphere Application Server environment. This problem only occurs in a multi-node WAS environment.</p>
  403.  
  404.  
  405.  
  406. <p>In the HCL Connections GUI, in the &#8220;PDF Export Access&#8221; settings of the&#8221;Edit Community&#8221; menu (Community &#8211;&gt; Community Actions &#8211;&gt; Edit Community &#8211;&gt; PDF Export Access), the following error was displayed:</p>
  407.  
  408.  
  409.  
  410. <figure class="wp-block-image"><img loading="lazy" width="1024" height="342" data-attachment-id="2955" data-permalink="https://milanmatejic.wordpress.com/2023/03/24/hcl-connections-8-pdf-export-issues-after-installing-cnx-in-a-clustered-was-environment/error-gui-1/" data-orig-file="https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png" data-orig-size="1571,526" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="error-gui-1" data-image-description="" data-image-caption="" data-medium-file="https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png?w=300" data-large-file="https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png?w=809" src="https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png?w=1024" alt="" class="wp-image-2955" srcset="https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png?w=1024 1024w, https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png?w=1021 1021w, https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png?w=150 150w, https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png?w=300 300w, https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png?w=768 768w, https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png 1571w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption class="wp-element-caption"><em>Error 500: org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: com/ibm/ess/ic/ic360/security/tai/Ic360ImpersonateUserTAI</em></figcaption></figure>
  411.  
  412.  
  413.  
  414. <p>At the same time, the following error is logged in the WAS application server logs, where the IC360 application is running: </p>
  415.  
  416.  
  417.  
  418. <p><em>ServletWrappe E com.ibm.ws.webcontainer.servlet.ServletWrapper service SRVE0014E: Uncaught service() exception root cause ic360: org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: com/ibm/ess/ic/ic360/security/tai/Ic360ImpersonateUserTAI</em></p>
  419.  
  420.  
  421.  
  422. <p>The cause for the problem were the missing java virtual machine properties, which were only set on one of the IC360 WAS applications servers. In my case, as I was installing HCL Connections using &#8220;large deployment&#8221; topology, the java virtual machine properties were only set for &#8220;IC350Cluster_server2&#8221;. Those settings can be found under &#8220;Application servers &#8211;&gt; IC360Cluster_server2 &#8211;&gt; Process definition &#8211;&gt; Java Virtual Machine &#8211;&gt; Custom properties&#8221;, as shown in the screenshot below:</p>
  423.  
  424.  
  425.  
  426. <figure class="wp-block-image size-large"><a href="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png"><img loading="lazy" width="1024" height="399" data-attachment-id="2959" data-permalink="https://milanmatejic.wordpress.com/2023/03/24/hcl-connections-8-pdf-export-issues-after-installing-cnx-in-a-clustered-was-environment/ic360cluster_server2-parameters/" data-orig-file="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png" data-orig-size="1130,441" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="ic360cluster_server2-parameters" data-image-description="" data-image-caption="" data-medium-file="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png?w=300" data-large-file="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png?w=809" src="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png?w=1024" alt="" class="wp-image-2959" srcset="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png?w=1022 1022w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png?w=150 150w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png?w=300 300w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png?w=768 768w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png 1130w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
  427.  
  428.  
  429.  
  430. <p>On the other hand, these crucial settings were missing on the other IBM WebSphere Application Cluster member, as can be seen in the screenshot below: </p>
  431.  
  432.  
  433.  
  434. <figure class="wp-block-image size-large is-resized"><a href="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png"><img loading="lazy" data-attachment-id="2961" data-permalink="https://milanmatejic.wordpress.com/2023/03/24/hcl-connections-8-pdf-export-issues-after-installing-cnx-in-a-clustered-was-environment/ic360cluster_server1-parameters-after-the-installation/" data-orig-file="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png" data-orig-size="1133,344" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="ic360cluster_server1-parameters-after-the-installation" data-image-description="" data-image-caption="" data-medium-file="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png?w=300" data-large-file="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png?w=809" src="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png?w=1024" alt="" class="wp-image-2961" width="840" height="254" srcset="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png?w=1024 1024w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png?w=837 837w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png?w=150 150w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png?w=300 300w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png?w=768 768w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png 1133w" sizes="(max-width: 840px) 100vw, 840px" /></a></figure>
  435.  
  436.  
  437.  
  438. <p>To resolve the problem, make sure that the same JVM &#8220;Custom properties&#8221; are set across all WAS application servers hosting the IC360 Application. In my case I had to set the same settings for &#8220;IC360Cluster_server1&#8221; application server as they were set by the installer for &#8220;IC360Cluster_server2&#8221;, as displayed in the screenshot below: </p>
  439.  
  440.  
  441.  
  442. <figure class="wp-block-image size-large"><a href="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png"><img loading="lazy" width="1024" height="400" data-attachment-id="2963" data-permalink="https://milanmatejic.wordpress.com/2023/03/24/hcl-connections-8-pdf-export-issues-after-installing-cnx-in-a-clustered-was-environment/ic360cluster_server1-parameters-set-solution/" data-orig-file="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png" data-orig-size="1134,444" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="ic360cluster_server1-parameters-set-solution" data-image-description="" data-image-caption="" data-medium-file="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png?w=300" data-large-file="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png?w=809" src="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png?w=1024" alt="" class="wp-image-2963" srcset="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png?w=1022 1022w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png?w=150 150w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png?w=300 300w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png?w=768 768w, https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png 1134w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
  443.  
  444.  
  445.  
  446. <p>After that, make sure that all IBM WebSphere nodes are synchronized and restart the IC360 WebSphere Application Server cluster.</p>
  447.  
  448.  
  449.  
  450. <p>The steps to resolve this issue are also documented in the <a rel="noreferrer noopener" href="https://support.hcltechsw.com/csm?id=kb_article&amp;sysparm_article=KB0085725" target="_blank">KB0085725</a> article. </p>
  451.  
  452.  
  453.  
  454. <p>I hope this helps! </p>
  455. ]]></content:encoded>
  456. <wfw:commentRss>https://milanmatejic.wordpress.com/2023/03/24/hcl-connections-8-pdf-export-issues-after-installing-cnx-in-a-clustered-was-environment/feed/</wfw:commentRss>
  457. <slash:comments>0</slash:comments>
  458. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2020/03/hcl_connection_master403x.png" />
  459. <media:content url="https://milanmatejic.files.wordpress.com/2020/03/hcl_connection_master403x.png" medium="image">
  460. <media:title type="html">HCL_Connection_Master@3x</media:title>
  461. </media:content>
  462.  
  463. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  464. <media:title type="html">milanmatejic</media:title>
  465. </media:content>
  466.  
  467. <media:content url="https://milanmatejic.files.wordpress.com/2023/03/error-gui-1.png?w=1024" medium="image" />
  468.  
  469. <media:content url="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server2-parameters.png?w=1024" medium="image" />
  470.  
  471. <media:content url="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-after-the-installation.png?w=1024" medium="image" />
  472.  
  473. <media:content url="https://milanmatejic.files.wordpress.com/2023/03/ic360cluster_server1-parameters-set-solution.png?w=1024" medium="image" />
  474. </item>
  475. <item>
  476. <title>HCL Domino TOTP/2FA &#8211; Implementation, Best Practices and Pitfalls &#8211; Webinar</title>
  477. <link>https://milanmatejic.wordpress.com/2022/09/12/hcl-domino-totp-2fa-implementation-best-practices-and-pitfalls-webinar/</link>
  478. <comments>https://milanmatejic.wordpress.com/2022/09/12/hcl-domino-totp-2fa-implementation-best-practices-and-pitfalls-webinar/#respond</comments>
  479. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  480. <pubDate>Mon, 12 Sep 2022 07:19:08 +0000</pubDate>
  481. <category><![CDATA[Webcasts]]></category>
  482. <category><![CDATA[webinars]]></category>
  483. <category><![CDATA[HCL Domino]]></category>
  484. <category><![CDATA[hcl webinar]]></category>
  485. <category><![CDATA[webinar]]></category>
  486. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=2934</guid>
  487.  
  488. <description><![CDATA[My colleague Martin Leyrer and I will be hosting a webinar &#8220;HCL Domino TOTP/2FA &#8211; Implementation, Best Practices and Pitfalls&#8221;. The session will start on September the 15th, at 4 PM CEST. So, if you are interested in TOTP/2FA Implementation using HCL Domino natively, make sure to register and join our Webinar: Registration Form We [&#8230;]]]></description>
  489. <content:encoded><![CDATA[
  490. <p>My colleague Martin Leyrer and I will be hosting a webinar &#8220;HCL Domino TOTP/2FA &#8211; Implementation, Best Practices and Pitfalls&#8221;. The session will start on September the 15th, at 4 PM CEST. So, if you are interested in TOTP/2FA Implementation using HCL Domino natively, make sure to register and join our Webinar:</p>
  491.  
  492.  
  493.  
  494. <p class="has-text-align-center"><a rel="noreferrer noopener" href="https://register.gotowebinar.com/register/5791761487079643404?source=DSAcademy" target="_blank">Registration Form</a></p>
  495.  
  496.  
  497.  
  498. <p>We will be delighted to have your presence! </p>
  499. ]]></content:encoded>
  500. <wfw:commentRss>https://milanmatejic.wordpress.com/2022/09/12/hcl-domino-totp-2fa-implementation-best-practices-and-pitfalls-webinar/feed/</wfw:commentRss>
  501. <slash:comments>0</slash:comments>
  502. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2022/09/screenshot-from-2022-09-12-09-13-53.png" />
  503. <media:content url="https://milanmatejic.files.wordpress.com/2022/09/screenshot-from-2022-09-12-09-13-53.png" medium="image">
  504. <media:title type="html">Screenshot from 2022-09-12 09-13-53</media:title>
  505. </media:content>
  506.  
  507. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  508. <media:title type="html">milanmatejic</media:title>
  509. </media:content>
  510. </item>
  511. <item>
  512. <title>HCL Domino &#8211; Contact Sync Issues</title>
  513. <link>https://milanmatejic.wordpress.com/2022/08/01/hcl-domino-contact-sync-issues/</link>
  514. <comments>https://milanmatejic.wordpress.com/2022/08/01/hcl-domino-contact-sync-issues/#respond</comments>
  515. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  516. <pubDate>Mon, 01 Aug 2022 10:27:02 +0000</pubDate>
  517. <category><![CDATA[domino]]></category>
  518. <category><![CDATA[HCL Traveler]]></category>
  519. <category><![CDATA[notes]]></category>
  520. <category><![CDATA[HCL Domino]]></category>
  521. <category><![CDATA[HCL Notes]]></category>
  522. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=2916</guid>
  523.  
  524. <description><![CDATA[Recently, we came across some issues with contact synchronization between mobile devices using HCL Traveler, mail databases of HCL Notes users, and address books of the HCL Notes Roaming users.]]></description>
  525. <content:encoded><![CDATA[
  526. <p>Recently, we came across some issues with contact synchronization between mobile devices using HCL Traveler, mail databases of HCL Notes users, and address books of the HCL Notes Roaming users.</p>
  527.  
  528.  
  529.  
  530. <p>To be exact, these are two separate problems which are described in the following Knowledge Base articles:</p>
  531.  
  532.  
  533.  
  534. <p class="has-text-align-center"><a href="https://support.hcltechsw.com/csm?id=kb_article&amp;sysparm_article=KB0099431" target="_blank" rel="noreferrer noopener">KB0099431</a></p>
  535.  
  536.  
  537.  
  538. <p class="has-text-align-center"><a rel="noreferrer noopener" href="https://support.hcltechsw.com/csm?id=kb_article&amp;sysparm_article=KB0097255" target="_blank">KB0097255</a></p>
  539.  
  540.  
  541.  
  542. <p>You might have the issues mentioned in the KB articles above, but haven&#8217;t noticed them yet, as the HCL Notes and HCL Traveler users will only have problems with synchronizing certain contacts &#8220;across the board&#8221;, namely those which are created on HCL Traveler devices. The issue will become more apparent with the users having more than one mobile device activated on HCL Traveler, as the contacts created on one of the devices will not sync to the other and vice versa.</p>
  543.  
  544.  
  545.  
  546. <p>There is a workaround for both issues, as stated in the KB articles mentioned above, which is to add the &#8220;AccessContacts&#8221; role to the owner of the mail database as well as to the roaming address book database, assuming the same user is also a roaming user. You can either do this manually or via LotusScript code provided by Domino Development, which you can find in the following Knowledge Base article:</p>
  547.  
  548.  
  549.  
  550. <p class="has-text-align-center"><a rel="noreferrer noopener" href="https://support.hcltechsw.com/csm?id=kb_article&amp;sysparm_article=KB0099761" target="_blank">KB0099761</a></p>
  551.  
  552.  
  553.  
  554. <p>Many thanks to the HCL Traveler team for confirming the issue and developing the workaround so quickly, as well as to the HCL Domino Development team for writing the code to implement the workaround. </p>
  555. ]]></content:encoded>
  556. <wfw:commentRss>https://milanmatejic.wordpress.com/2022/08/01/hcl-domino-contact-sync-issues/feed/</wfw:commentRss>
  557. <slash:comments>0</slash:comments>
  558. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2020/03/hcl-domino-icon-squared.png" />
  559. <media:content url="https://milanmatejic.files.wordpress.com/2020/03/hcl-domino-icon-squared.png" medium="image">
  560. <media:title type="html">hcl-domino-icon-squared</media:title>
  561. </media:content>
  562.  
  563. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  564. <media:title type="html">milanmatejic</media:title>
  565. </media:content>
  566. </item>
  567. <item>
  568. <title>New Fixes for HCL Notes 12.0.1 German Template</title>
  569. <link>https://milanmatejic.wordpress.com/2022/07/20/new-fixes-for-hcl-notes-12-0-1-german-template/</link>
  570. <comments>https://milanmatejic.wordpress.com/2022/07/20/new-fixes-for-hcl-notes-12-0-1-german-template/#comments</comments>
  571. <dc:creator><![CDATA[Milan Matejic]]></dc:creator>
  572. <pubDate>Wed, 20 Jul 2022 15:16:40 +0000</pubDate>
  573. <category><![CDATA[domino]]></category>
  574. <category><![CDATA[notes]]></category>
  575. <category><![CDATA[HCL Domino]]></category>
  576. <category><![CDATA[HCL Notes]]></category>
  577. <guid isPermaLink="false">http://milanmatejic.wordpress.com/?p=2908</guid>
  578.  
  579. <description><![CDATA[As of yesterday, a new version of HCL Notes 12.0.1 German mail template is available!]]></description>
  580. <content:encoded><![CDATA[
  581. <p>As of yesterday, a new version of HCL Notes 12.0.1 German mail template is available, which incorporates the fixes for the following SPRs:</p>
  582.  
  583.  
  584.  
  585. <p><em><strong>SPR  #</strong> <strong>PDARCBQ86U</strong> &gt;&gt;  DOMI: MSTeams meeting is not getting updated with new URL when user opens the accepted reschedule invite</em></p>
  586.  
  587.  
  588.  
  589. <p><em><strong>SPR  #</strong> <strong>PDARCC68MC</strong> &gt;&gt;  DOMI: Reschedule meeting notice displays the old url for MSTeams meeting when chair accepts the counter</em></p>
  590.  
  591.  
  592.  
  593. <p>You can find the new version of the HCL Notes 12.0.1 German mail template in the <a href="https://support.hcltechsw.com/csm?id=kb_article&amp;sys_id=c82947151b3c9910574121f7ec4bcb30" target="_blank" rel="noreferrer noopener">KB0097354</a> article.</p>
  594.  
  595.  
  596.  
  597. <p>Hope this helps! <img src="https://s0.wp.com/wp-content/mu-plugins/wpcom-smileys/twemoji/2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> </p>
  598. ]]></content:encoded>
  599. <wfw:commentRss>https://milanmatejic.wordpress.com/2022/07/20/new-fixes-for-hcl-notes-12-0-1-german-template/feed/</wfw:commentRss>
  600. <slash:comments>2</slash:comments>
  601. <media:thumbnail url="https://milanmatejic.files.wordpress.com/2020/03/hcl-domino-icon-squared.png" />
  602. <media:content url="https://milanmatejic.files.wordpress.com/2020/03/hcl-domino-icon-squared.png" medium="image">
  603. <media:title type="html">hcl-domino-icon-squared</media:title>
  604. </media:content>
  605.  
  606. <media:content url="https://1.gravatar.com/avatar/aa003b36d7a306b5935fcd6437d2d9d19f064dd479f10fe19395d657834053ae?s=96&#38;d=identicon&#38;r=G" medium="image">
  607. <media:title type="html">milanmatejic</media:title>
  608. </media:content>
  609. </item>
  610. </channel>
  611. </rss>
  612.  

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=https%3A//milanmatejic.wordpress.com/feed/

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda