<?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: How to have the PATH of a folder with his UUID in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61687#M38331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;And what about the problem of retrieving a null value for a node path using the &amp;lt;Reference&amp;gt;.getPath() method? I am just talking about the well known problem described in &lt;/SPAN&gt;&lt;A href="http://issues.alfresco.com/browse/AR-713" rel="nofollow noopener noreferrer"&gt;http://issues.alfresco.com/browse/AR-713&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here the code used…..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ResultSetRow[] elencoNodi = rst.getRows();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for (ResultSetRow nodo : elencoNodi)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;String uuidNodo = nodo.getNode().getId();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Reference n = new Reference();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;n.setStore(store);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;n.setUuid(uuidNodo);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;String pathNode = n.getPath();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;…..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Many thanks (Roy, I suppose)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All the best&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sergio&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Nov 2006 14:58:30 GMT</pubDate>
    <dc:creator>sergio</dc:creator>
    <dc:date>2006-11-23T14:58:30Z</dc:date>
    <item>
      <title>How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61676#M38320</link>
      <description>I use a query to have a folder on Alfresco.I can extract those information :{http://www.alfresco.org/model/content/1.0}modifier&amp;nbsp;&amp;nbsp; admin{http://www.alfresco.org/model/content/1.0}modified&amp;nbsp;&amp;nbsp; 2006-10-26T16:18:53.501+02:00{http://www.alfresco.org/model/content/1.0}description&amp;nbsp;&amp;nbsp; On retrouve ici, les info</description>
      <pubDate>Fri, 27 Oct 2006 07:33:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61676#M38320</guid>
      <dc:creator>lorel</dc:creator>
      <dc:date>2006-10-27T07:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61677#M38321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What API are you using to get the information? The PATH to an object is available using most of the APIs, the NodeService has a getPath() method and the Alfresco JavaScript API and Alfresco FreeMarker Ttemplating API also have methods for retrieving the Path.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Kevin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2006 10:33:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61677#M38321</guid>
      <dc:creator>kevinr</dc:creator>
      <dc:date>2006-10-27T10:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61678#M38322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suppose you're using webservices.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So, folderNode is your Node object (org.alfresco.webservice.types.Node)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can get its path from the Reference object :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&lt;BR /&gt;Reference nodeRef = folderNode.getReference();&lt;BR /&gt;String strPath = nodeRef.getPath();&lt;BR /&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Fred&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 11:31:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61678#M38322</guid>
      <dc:creator>fchevance</dc:creator>
      <dc:date>2006-10-29T11:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61679#M38323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I give you more information&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the &lt;/SPAN&gt;&lt;STRONG&gt;id&lt;/STRONG&gt;&lt;SPAN&gt; in parameter&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;org.alfresco.webservice.types.Node[] tabNode = WebServiceFactory.getRepositoryService().get(new Predicate(new Reference[]{new Reference(Config.getStore(), &lt;/SPAN&gt;&lt;STRONG&gt;id&lt;/STRONG&gt;&lt;SPAN&gt;, null)}, Config.getStore(), null));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//extraction des informations.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.setName(tabNode[0].getProperties(9).getValue());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.setTitle(tabNode[0].getProperties(8).getValue());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.setDescription(tabNode[0].getProperties(3).getValue());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.setId(tabNode[0].getProperties(4).getValue());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.setRef(tabNode[0].getReference());&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;this.setXPath(&lt;/SPAN&gt;&lt;STRONG&gt;tabNode[0].getReference().getPath()&lt;/STRONG&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have all information that I want but the ….getPath() return null.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you tell me what I have to do?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 15:14:59 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61679#M38323</guid>
      <dc:creator>lorel</dc:creator>
      <dc:date>2006-10-30T15:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61680#M38324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;From what we've observed, there is no way to get a path via web services.&amp;nbsp; You have to know the path or the uuid before hand to create a Reference or a Query to retrieve objects.&amp;nbsp; The RepositoryWebService methods return Node objects (either directly or via a ResultSet), but when you call Node.getReference(), the Reference only has the uuid set, not the path.&amp;nbsp; The Node object also does not contain the child association QName (from which we could create the path manually if we had it).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is a problem if I want to retrieve a node using get(), browse several levels using getChildren(), and from there conduct a search of all descendents of a particular atribute value.&amp;nbsp; If I don't know the child association names for the descendents, I have to guess at the path, so my xpath string is not guaranteed to be correct.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It would be great if the Node objects contained the path or child association name in addition to the uuid.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please let me know if there is a workaround or if I've missed something.&amp;nbsp; One possibility is to create a custom action to get the paths for an array of node uuids, but we are trying to limit hits to the server as much as possible.&amp;nbsp; So hopefully there's a better way.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 19:47:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61680#M38324</guid>
      <dc:creator>carina</dc:creator>
      <dc:date>2006-11-03T19:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61681#M38325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I wish this functionality was available as well - I'm assuming you guys didn't find any workarounds?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin BG&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 16:54:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61681#M38325</guid>
      <dc:creator>aurora7795</dc:creator>
      <dc:date>2006-11-08T16:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61682#M38326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It looks like this issue has been logged (&lt;/SPAN&gt;&lt;A href="http://issues.alfresco.com/browse/AR-713" rel="nofollow noopener noreferrer"&gt;http://issues.alfresco.com/browse/AR-713&lt;/A&gt;&lt;SPAN&gt;) and will be fixed soon, which is great!&amp;nbsp; In the interim, we are manually constructing the paths in our client code.&amp;nbsp; We are using strict naming/child association conventions for files, folders, and links (which mirror those used by the Alfresco portal), so we can guess at the proper path.&amp;nbsp; However, in the future, if we add additional types (or additional naming conventions), this won't be as easy, so we will wait for version 1.4E to do that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 18:36:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61682#M38326</guid>
      <dc:creator>carina</dc:creator>
      <dc:date>2006-11-08T18:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61683#M38327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;i am looking fo rthe solution too, if somebody found a solution, share it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks prasanth&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2006 16:01:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61683#M38327</guid>
      <dc:creator>pmarreddy</dc:creator>
      <dc:date>2006-11-14T16:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61684#M38328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hope this bug will be solved soon, it'll be really helpful for all&amp;nbsp; &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If anyone finds a way to get it before the bug is solved please, share it&amp;nbsp; :wink:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 13:44:55 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61684#M38328</guid>
      <dc:creator>jtorres</dc:creator>
      <dc:date>2006-11-23T13:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61685#M38329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just a simple question: where is the org.alfresco.webservice.types.QueryLanguageEnum class? The version of Alfresco (1.4) that I am using does not contain this class, so I cannot use the xpath query language to build queries but only Lucene. Am I correct?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Many thanks to all.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 14:41:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61685#M38329</guid>
      <dc:creator>sergio</dc:creator>
      <dc:date>2006-11-23T14:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61686#M38330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes this is correct, the web service API only supports Lucene queries and the QueryEnum has been preplaced with a string (the enum classes where proving troublesome in some situations).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Roy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 14:45:45 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61686#M38330</guid>
      <dc:creator>rwetherall</dc:creator>
      <dc:date>2006-11-23T14:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61687#M38331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;And what about the problem of retrieving a null value for a node path using the &amp;lt;Reference&amp;gt;.getPath() method? I am just talking about the well known problem described in &lt;/SPAN&gt;&lt;A href="http://issues.alfresco.com/browse/AR-713" rel="nofollow noopener noreferrer"&gt;http://issues.alfresco.com/browse/AR-713&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here the code used…..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ResultSetRow[] elencoNodi = rst.getRows();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;for (ResultSetRow nodo : elencoNodi)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;String uuidNodo = nodo.getNode().getId();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Reference n = new Reference();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;n.setStore(store);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;n.setUuid(uuidNodo);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;String pathNode = n.getPath();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;…..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Many thanks (Roy, I suppose)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All the best&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sergio&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2006 14:58:30 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61687#M38331</guid>
      <dc:creator>sergio</dc:creator>
      <dc:date>2006-11-23T14:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to have the PATH of a folder with his UUID</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61688#M38332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey guys!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Everybody is complaining here that getting the path via WebService is missing. So, vote for the bug to get it fixed earlier.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://issues.alfresco.com/browse/AR-713" rel="nofollow noopener noreferrer"&gt;http://issues.alfresco.com/browse/AR-713&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jan 2007 17:31:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-have-the-path-of-a-folder-with-his-uuid/m-p/61688#M38332</guid>
      <dc:creator>cludt</dc:creator>
      <dc:date>2007-01-11T17:31:27Z</dc:date>
    </item>
  </channel>
</rss>

