<?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: Error attempting to obtain child nodes in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59123#M36280</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'm using that code to going through the tree of nodes and I'm not getting any error…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you try to add this code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;Store[] stores = WebServiceFactory.getRepositoryService.getStores();&lt;BR /&gt;Store STORE = stores[4];&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Index for "SpacesStore" (at least in my computer)&lt;BR /&gt;&lt;BR /&gt;Reference inNode = new Reference();&lt;BR /&gt;inNode.setStore(STORE);&lt;BR /&gt;inNode.setPath(null);&lt;BR /&gt;inNode.setUuid(UUID);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //where UUID is a String with the Node UUID you want to get its children.&lt;BR /&gt;&lt;BR /&gt;//And then the code I gave you in the former post&lt;BR /&gt;Reference node_child = new Reference();&lt;BR /&gt;QueryResult qr = WebServiceFactory.getRepositoryService().queryChildren(inNode); &lt;BR /&gt;for (int i=0; i&amp;lt;qr.getResultSet().getRows().length; i++){ &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; node_child.setStore(STORE); &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; node_child.setPath(null); &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; node_child.setUuid(qr.getResultSet().getRows(i).getNode().getId());&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //At this point, node_child contains the Node Reference to one child&lt;BR /&gt;}&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;/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;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;/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;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;I haven't seen your error before, so I can't help you much with that… sorry. But it seems to be related with the path, that's why I suggest you use UUID instead of the path…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Enrique&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Jan 2007 16:31:22 GMT</pubDate>
    <dc:creator>doblek</dc:creator>
    <dc:date>2007-01-02T16:31:22Z</dc:date>
    <item>
      <title>Error attempting to obtain child nodes</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59120#M36277</link>
      <description>Hi I have attempted to retireve the children of a node from the repository using: try{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Reference reference = new Reference(STORE, null, path);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; QueryResult queryResult = null;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try{&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;queryResult = repositoryService.queryChildren(reference);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }catch(Exception en){Howe</description>
      <pubDate>Tue, 02 Jan 2007 15:00:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59120#M36277</guid>
      <dc:creator>tonygarnet</dc:creator>
      <dc:date>2007-01-02T15:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Error attempting to obtain child nodes</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59121#M36278</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;If you know the node UUID from which you want to get its children, give this code a try:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;QueryResult qr = WebServiceFactory.getRepositoryService().queryChildren(inNode);&lt;BR /&gt;for (int i=0; i&amp;lt;qr.getResultSet().getRows().length; i++){&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; node_child.setStore(STORE);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; node_child.setPath(null);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; node_child.setUuid(qr.getResultSet().getRows(i).getNode().getId());&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;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;That way, in each loop iteration you will have the Reference object (&lt;/SPAN&gt;&lt;STRONG&gt;node_child&lt;/STRONG&gt;&lt;SPAN&gt;) of each child of the Reference object you specify as &lt;/SPAN&gt;&lt;STRONG&gt;inNode&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You have to import:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;import org.alfresco.webservice.util.&lt;STRONG&gt;WebServiceFactory&lt;/STRONG&gt;;&lt;BR /&gt;import org.alfresco.webservice.types.&lt;STRONG&gt;Reference&lt;/STRONG&gt;;&lt;BR /&gt;import org.alfresco.webservice.types.&lt;STRONG&gt;Store&lt;/STRONG&gt;;&lt;BR /&gt;import org.alfresco.webservice.repository.&lt;STRONG&gt;QueryResult&lt;/STRONG&gt;;&lt;/UL&gt;&lt;SPAN&gt;Hope that helps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Enrique&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jan 2007 15:25:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59121#M36278</guid>
      <dc:creator>doblek</dc:creator>
      <dc:date>2007-01-02T15:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error attempting to obtain child nodes</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59122#M36279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Enrique&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I take it that the line:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;QueryResult qr = WebServiceFactory.getRepositoryService().queryChildren(inNode); &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;is the same line which generates an error in my code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;From the documentation the "inNode" that you refer to is a Reference.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this is the case, then my problem still persists, as your intial line will generate the same error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I may be mistaking what you are saying, are you stating that if I use a UUID to obtain a Reference (I have not met this approach so far), it behaves differently than when you obtain a Reference using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Reference reference = new Reference(STORE, null, path);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jan 2007 16:10:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59122#M36279</guid>
      <dc:creator>tonygarnet</dc:creator>
      <dc:date>2007-01-02T16:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Error attempting to obtain child nodes</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59123#M36280</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'm using that code to going through the tree of nodes and I'm not getting any error…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you try to add this code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;Store[] stores = WebServiceFactory.getRepositoryService.getStores();&lt;BR /&gt;Store STORE = stores[4];&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Index for "SpacesStore" (at least in my computer)&lt;BR /&gt;&lt;BR /&gt;Reference inNode = new Reference();&lt;BR /&gt;inNode.setStore(STORE);&lt;BR /&gt;inNode.setPath(null);&lt;BR /&gt;inNode.setUuid(UUID);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //where UUID is a String with the Node UUID you want to get its children.&lt;BR /&gt;&lt;BR /&gt;//And then the code I gave you in the former post&lt;BR /&gt;Reference node_child = new Reference();&lt;BR /&gt;QueryResult qr = WebServiceFactory.getRepositoryService().queryChildren(inNode); &lt;BR /&gt;for (int i=0; i&amp;lt;qr.getResultSet().getRows().length; i++){ &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; node_child.setStore(STORE); &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; node_child.setPath(null); &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; node_child.setUuid(qr.getResultSet().getRows(i).getNode().getId());&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //At this point, node_child contains the Node Reference to one child&lt;BR /&gt;}&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;/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;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;/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;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;I haven't seen your error before, so I can't help you much with that… sorry. But it seems to be related with the path, that's why I suggest you use UUID instead of the path…&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Enrique&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jan 2007 16:31:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59123#M36280</guid>
      <dc:creator>doblek</dc:creator>
      <dc:date>2007-01-02T16:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Error attempting to obtain child nodes</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59124#M36281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Enrique&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Appreciate the help given, it has worked.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;One last question, do you know how to get the name of the child references that are obtained?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I need to be able to distinguish them but node name does not appear to be present in the QueryResult. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 14:46:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59124#M36281</guid>
      <dc:creator>tonygarnet</dc:creator>
      <dc:date>2007-01-03T14:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: Error attempting to obtain child nodes</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59125#M36282</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;Ok. That's good news… &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regarding your question I have to say that, as far as I know, it's *not* possible to get the name of the node… You have to deal with UUID instead. Once you create a node, it is given a unique identifer… Write it down somewhere and try to look if the UUID you're processing at some specific loop iteration matches the UUID you're looking for.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Enrique&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jan 2007 15:35:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59125#M36282</guid>
      <dc:creator>doblek</dc:creator>
      <dc:date>2007-01-03T15:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error attempting to obtain child nodes</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59126#M36283</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;SPAN&gt;I have obtained the name of the node by using :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; String name = qr.getResultSet().getRows(i).getColumns()[5].getValue();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As the name of the node is passed as part of the result set.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Your help has been much appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One other question, How do I obtain the effective start and end date for an aspect.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have looked at the metadata and the result set, but I do not appear to see it. I would consider that it must be able to be accessed out side of the scope of the aspect that it is defined in?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jan 2007 12:57:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59126#M36283</guid>
      <dc:creator>tonygarnet</dc:creator>
      <dc:date>2007-01-04T12:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error attempting to obtain child nodes</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59127#M36284</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;BLOCKQUOTE class="jive-quote"&gt;Hi&lt;BR /&gt;I have obtained the name of the node by using :&lt;BR /&gt; String name = qr.getResultSet().getRows(i).getColumns()[5].getValue();&lt;BR /&gt;As the name of the node is passed as part of the result set.&lt;BR /&gt;Your help has been much appreciated.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;You're welcome &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;One other question, How do I obtain the effective start and end date for an aspect.&lt;BR /&gt;I have looked at the metadata and the result set, but I do not appear to see it. I would consider that it must be able to be accessed out side of the scope of the aspect that it is defined in?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know too much about "aspects" yet, since I didn't have to deal much with them at the moment…&amp;nbsp; :?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But, as far as I understand &lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/Web_Service_Data_Types#ResultSet" rel="nofollow noopener noreferrer"&gt;from this page in the wiki&lt;/A&gt;&lt;SPAN&gt;, it is possible to get the aspect of a node from the queryresult, isn't it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ResultSet Â» row Â» node Â» aspect&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or maybe in metadata…&amp;nbsp; :?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I know I'm not helping you much, but that's all I can do at this moment&amp;nbsp; &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops: Sorry&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2007 12:27:19 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/error-attempting-to-obtain-child-nodes/m-p/59127#M36284</guid>
      <dc:creator>doblek</dc:creator>
      <dc:date>2007-01-05T12:27:19Z</dc:date>
    </item>
  </channel>
</rss>

