<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: getting NodeRef of dictionary without using lucene queries in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/getting-noderef-of-dictionary-without-using-lucene-queries/m-p/284379#M237509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the XPath based selectNodes operation to lookup nodes without requiring Lucene / SOLR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Nov 2016 13:30:07 GMT</pubDate>
    <dc:creator>afaust</dc:creator>
    <dc:date>2016-11-04T13:30:07Z</dc:date>
    <item>
      <title>getting NodeRef of dictionary without using lucene queries</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/getting-noderef-of-dictionary-without-using-lucene-queries/m-p/284378#M237508</link>
      <description>Hello,&amp;nbsp;&amp;nbsp; How can i get the NodeRef of dictionary without using lucene queries?</description>
      <pubDate>Fri, 04 Nov 2016 10:43:25 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/getting-noderef-of-dictionary-without-using-lucene-queries/m-p/284378#M237508</guid>
      <dc:creator>mhb</dc:creator>
      <dc:date>2016-11-04T10:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: getting NodeRef of dictionary without using lucene queries</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/getting-noderef-of-dictionary-without-using-lucene-queries/m-p/284379#M237509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the XPath based selectNodes operation to lookup nodes without requiring Lucene / SOLR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2016 13:30:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/getting-noderef-of-dictionary-without-using-lucene-queries/m-p/284379#M237509</guid>
      <dc:creator>afaust</dc:creator>
      <dc:date>2016-11-04T13:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: getting NodeRef of dictionary without using lucene queries</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/getting-noderef-of-dictionary-without-using-lucene-queries/m-p/284380#M237510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you're referring to the "Data Dictionary" node, then as Axel says ... some Java examples (untested):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P style="padding-left: 30px;"&gt;...&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;NodeRef storeRootNodeRef = &lt;SPAN style="color: #9876aa;"&gt;nodeService&lt;/SPAN&gt;.getRootNode(&lt;SPAN style="color: #cc7832;"&gt;new &lt;/SPAN&gt;StoreRef(&lt;SPAN style="color: #6a8759;"&gt;"workspace://SpacesStore"&lt;/SPAN&gt;))&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;NodeRef ddNodeRef = &lt;SPAN style="color: #9876aa;"&gt;searchService&lt;/SPAN&gt;.selectNodes(storeRootNodeRef&lt;SPAN style="color: #cc7832;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #6a8759;"&gt;"/app:company_home/app:dictionary"&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;, null, &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;namespaceService&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;, false&lt;/SPAN&gt;).get(&lt;SPAN style="color: #6897bb;"&gt;0&lt;/SPAN&gt;)&lt;SPAN style="color: #cc7832;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;or&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P style="padding-left: 30px;"&gt;...&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;NodeRef ddNodeRef = &lt;SPAN style="color: #9876aa;"&gt;searchService&lt;/SPAN&gt;.selectNodes(repositoryHelper.getCompanyHome()&lt;SPAN style="color: #cc7832;"&gt;, &lt;SPAN style="color: #6a8759;"&gt;"/app:dictionary"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;, null, &lt;/SPAN&gt;&lt;SPAN style="color: #9876aa;"&gt;namespaceService&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;, false&lt;/SPAN&gt;).get(&lt;SPAN style="color: #6897bb;"&gt;0&lt;/SPAN&gt;)&lt;SPAN style="color: #cc7832;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="color: #cc7832;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2016 16:54:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/getting-noderef-of-dictionary-without-using-lucene-queries/m-p/284380#M237510</guid>
      <dc:creator>janv</dc:creator>
      <dc:date>2016-11-04T16:54:57Z</dc:date>
    </item>
  </channel>
</rss>

