From e22df58ebb2e48dd9fb557c6f0b3bb751a673329 Mon Sep 17 00:00:00 2001 From: David Caruana Date: Thu, 4 Sep 2008 10:55:16 +0000 Subject: [PATCH] Merge from SEAMIST3 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10725 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .classpath | 1 - .../org/alfresco/cmis/atomentry.lib.atom.ftl | 46 +- .../org/alfresco/cmis/atomfeed.lib.atom.ftl | 10 +- .../org/alfresco/cmis/cmis.lib.atom.ftl | 45 + .../org/alfresco/paging.lib.atom.ftl | 16 +- .../repository/repository.get.atom.ftl | 24 +- .../org/alfresco/repository/repository.get.js | 1 + .../store/checkedout.get.atomfeed.ftl | 21 + .../repository/store/checkedout.get.desc.xml | 8 + .../repository/store/checkedout.get.js | 36 + .../repository/store/checkedout.post.atom.js | 66 + .../store/checkedout.post.atomentry.201.ftl | 8 + .../repository/store/checkedout.post.desc.xml | 8 + .../store/children.get.atomfeed.ftl | 4 + .../alfresco/repository/store/children.get.js | 2 +- .../repository/store/children.post.atom.js | 4 +- .../store/children.post.atomentry.201.ftl | 7 +- .../repository/store/item.get.atomentry.ftl | 7 +- .../repository/store/parent.get.atomfeed.ftl | 3 + .../repository/store/parents.get.atomfeed.ftl | 3 + .../web-scripts-application-context.xml | 14 +- .../alfresco/repo/cmis/rest/CMISScript.java | 81 +- .../alfresco/repo/cmis/rest/CMISService.java | 437 ++ .../repo/cmis/rest/CMISWebScriptTest.java | 132 +- .../alfresco/repo/cmis/rest/Navigation.java | 179 - .../org/alfresco/repo/cmis/rest/TestCMIS.java | 226 +- .../org/alfresco/repo/cmis/rest/xsd/APP.xsd | 12 +- .../alfresco/repo/cmis/rest/xsd/ATOM4CMIS.xsd | 34 +- .../rest/xsd/{CMIS REST.xsd => CMIS-REST.xsd} | 513 +- .../repo/cmis/rest/xsd/CMISValidator.java | 160 + .../rest/xsd/Example-AllowableActions.xml | 49 + .../cmis/rest/xsd/Example-DocumentEntry.xml | 112 + .../rest/xsd/Example-DocumentPWCEntry.xml | 118 + .../cmis/rest/xsd/Example-FolderChildren.xml | 208 + .../rest/xsd/Example-FolderDescendants.xml | 326 + .../cmis/rest/xsd/Example-FolderEntry.xml | 68 + .../cmis/rest/xsd/Example-PolicyEntry.xml | 64 + .../repo/cmis/rest/xsd/Example-Query.xml | 11 + .../rest/xsd/Example-RelationshipEntry.xml | 65 + .../repo/cmis/rest/xsd/Example-Service.xml | 45 + .../repo/cmis/rest/xsd/Example-Type.xml | 38 + .../alfresco/repo/cmis/rest/xsd/TestXSDs.java | 144 + .../alfresco/repo/cmis/rest/xsd/address.rng | 27 + .../alfresco/repo/cmis/rest/xsd/address.xml | 12 + .../repo/cmis/rest/xsd/example_feed.xml | 40 + .../repo/cmis/rest/xsd/example_service.xml | 39 + .../repo/web/scripts/BaseWebScriptTest.java | 84 +- .../repo/web/scripts/RepositoryContainer.java | 2 + .../web/scripts/TestWebScriptRepoServer.java | 1 + .../apache/abdera/ext/cmis/CMISConstants.java | 7 +- .../abdera/ext/cmis/CMISExtensionFactory.java | 4 +- .../{CMISObject.java => CMISProperties.java} | 14 +- .../rest/createtestdocument.atomentry.xml | 9 + .../cmis/rest/createtestfolder.atomentry.xml | 8 + source/test/apptest/results.html | 6810 +++-------------- 55 files changed, 3895 insertions(+), 6518 deletions(-) create mode 100644 config/alfresco/templates/webscripts/org/alfresco/cmis/cmis.lib.atom.ftl create mode 100644 config/alfresco/templates/webscripts/org/alfresco/repository/repository.get.js create mode 100644 config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.atomfeed.ftl create mode 100644 config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.desc.xml create mode 100644 config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.js create mode 100644 config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.atom.js create mode 100644 config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.atomentry.201.ftl create mode 100644 config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.desc.xml create mode 100644 source/java/org/alfresco/repo/cmis/rest/CMISService.java delete mode 100644 source/java/org/alfresco/repo/cmis/rest/Navigation.java rename source/java/org/alfresco/repo/cmis/rest/xsd/{CMIS REST.xsd => CMIS-REST.xsd} (72%) create mode 100644 source/java/org/alfresco/repo/cmis/rest/xsd/CMISValidator.java create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-AllowableActions.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-DocumentEntry.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-DocumentPWCEntry.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderChildren.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderDescendants.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderEntry.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-PolicyEntry.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-Query.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-RelationshipEntry.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-Service.xml create mode 100755 source/java/org/alfresco/repo/cmis/rest/xsd/Example-Type.xml create mode 100644 source/java/org/alfresco/repo/cmis/rest/xsd/TestXSDs.java create mode 100644 source/java/org/alfresco/repo/cmis/rest/xsd/address.rng create mode 100644 source/java/org/alfresco/repo/cmis/rest/xsd/address.xml create mode 100644 source/java/org/alfresco/repo/cmis/rest/xsd/example_feed.xml create mode 100644 source/java/org/alfresco/repo/cmis/rest/xsd/example_service.xml rename source/java/org/apache/abdera/ext/cmis/{CMISObject.java => CMISProperties.java} (84%) create mode 100644 source/test-resources/cmis/rest/createtestdocument.atomentry.xml create mode 100644 source/test-resources/cmis/rest/createtestfolder.atomentry.xml diff --git a/.classpath b/.classpath index 5061e6e90e..6531e71adb 100644 --- a/.classpath +++ b/.classpath @@ -1,7 +1,6 @@ - diff --git a/config/alfresco/templates/webscripts/org/alfresco/cmis/atomentry.lib.atom.ftl b/config/alfresco/templates/webscripts/org/alfresco/cmis/atomentry.lib.atom.ftl index 75379a8227..4480520769 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/cmis/atomentry.lib.atom.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/cmis/atomentry.lib.atom.ftl @@ -1,3 +1,5 @@ +<#import "/org/alfresco/cmis/cmis.lib.atom.ftl" as cmisLib/> + <#-- --> <#-- ATOM Entry for Document --> <#-- --> @@ -11,33 +13,14 @@ ${node.properties.description!node.properties.title!cropContent(node, 50)} ${node.name} ${xmldate(node.properties.modified)} - + <#-- ATOM Publishing Protocol --> ${xmldate(node.properties.modified)} - + <#-- Alfresco props --> ${absurl(url.context)}${node.icon16} -<#-- CMIS Schema --> - - - - - - - ${node.nodeRef} - document - ${node.properties.creator} - ${xmldate(node.properties.created)} - ${node.properties.modifier} - ${xmldate(node.properties.modified)} - ${node.properties.content.size} - ${node.properties.content.mimetype} - ${node.name} - ${absurl(url.serviceContext)}/api/node/${node.nodeRef.storeRef.protocol}/${node.nodeRef.storeRef.identifier}/${node.nodeRef.id}/content - -<#-- CMIS LINKS --> <#-- --> @@ -53,29 +36,12 @@ ${node.properties.description!node.properties.title} <#-- TODO --> ${node.name} ${xmldate(node.properties.modified)} - + <#-- ATOM Publishing Protocol --> ${xmldate(node.properties.modified)} - + <#-- Alfresco props --> ${absurl(url.context)}${node.icon16} -<#-- CMIS Schema --> - - - - - - - ${node.nodeRef} - folder - ${node.properties.creator} - ${xmldate(node.properties.created)} - ${node.properties.modifier} - ${xmldate(node.properties.modified)} - ${node.name} - ${node.parent.nodeRef} - <#-- In certain cases, if depth is specified children may appear Here. If there are children, the cmis:object tag will be nested For the children of this item --> - diff --git a/config/alfresco/templates/webscripts/org/alfresco/cmis/atomfeed.lib.atom.ftl b/config/alfresco/templates/webscripts/org/alfresco/cmis/atomfeed.lib.atom.ftl index b9c1061b6f..f868d189df 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/cmis/atomfeed.lib.atom.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/cmis/atomfeed.lib.atom.ftl @@ -7,17 +7,17 @@ Alfresco (${server.edition}) ${absurl(url.context)}/images/logo/AlfrescoLogo16.ico urn:uuid:${node.id} -${node.name} +${node.name} ${xmldate(node.properties.modified)} - + -<#macro generic id title> -System +<#macro generic id title author="System"> +${author} Alfresco (${server.edition}) ${absurl(url.context)}/images/logo/AlfrescoLogo16.ico ${id} ${title} ${xmldate(date)} - + \ No newline at end of file diff --git a/config/alfresco/templates/webscripts/org/alfresco/cmis/cmis.lib.atom.ftl b/config/alfresco/templates/webscripts/org/alfresco/cmis/cmis.lib.atom.ftl new file mode 100644 index 0000000000..a12431b698 --- /dev/null +++ b/config/alfresco/templates/webscripts/org/alfresco/cmis/cmis.lib.atom.ftl @@ -0,0 +1,45 @@ +<#-- --> +<#-- CMIS Extensions for Document --> +<#-- --> + +<#macro document node> + + + + + + + ${node.nodeRef} + document + ${node.properties.creator} + ${xmldate(node.properties.created)} + ${node.properties.modifier} + ${xmldate(node.properties.modified)} + ${node.properties.content.size} + ${node.properties.content.mimetype} + ${node.name} + ${absurl(url.serviceContext)}/api/node/${node.nodeRef.storeRef.protocol}/${node.nodeRef.storeRef.identifier}/${node.nodeRef.id}/content + + + +<#-- --> +<#-- CMIS Extensions for Folder --> +<#-- --> + +<#macro folder node> + + + + + + + ${node.nodeRef} + folder + ${node.properties.creator} + ${xmldate(node.properties.created)} + ${node.properties.modifier} + ${xmldate(node.properties.modified)} + ${node.name} + ${node.parent.nodeRef} + + \ No newline at end of file diff --git a/config/alfresco/templates/webscripts/org/alfresco/paging.lib.atom.ftl b/config/alfresco/templates/webscripts/org/alfresco/paging.lib.atom.ftl index 44ef1ec732..3c1a35c213 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/paging.lib.atom.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/paging.lib.atom.ftl @@ -6,29 +6,29 @@ ${cursor.pageSize} <#if cursor.pageType = "PAGE"> <#if cursor.hasFirstPage> - + <#if cursor.hasLastPage> - + <#if cursor.hasPrevPage> - + <#if cursor.hasNextPage> - + <#else> <#if cursor.hasFirstPage> - + <#if cursor.hasLastPage> - + <#if cursor.hasPrevPage> - + <#if cursor.hasNextPage> - + \ No newline at end of file diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/repository.get.atom.ftl b/config/alfresco/templates/webscripts/org/alfresco/repository/repository.get.atom.ftl index 4078cc1343..4b226903f3 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/repository/repository.get.atom.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/repository.get.atom.ftl @@ -26,24 +26,20 @@ - <#-- TODO: cmis:id on collection elements - are they required by cmis? --> + + root collection + + + checkedout collection + + + unfiled collection + + <#-- TODO: collection resources --> - - - CMIS root folder - - - CMIS checked-out documents - CMIS Types - <#-- NOTE: alfresco does not support notion of unfiled... - - CMIS unfiled documents - - --> - diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/repository.get.js b/config/alfresco/templates/webscripts/org/alfresco/repository/repository.get.js new file mode 100644 index 0000000000..c6dd600647 --- /dev/null +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/repository.get.js @@ -0,0 +1 @@ +model.defaultRootFolderPath = cmis.defaultRootFolderPath; \ No newline at end of file diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.atomfeed.ftl b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.atomfeed.ftl new file mode 100644 index 0000000000..f858e4574b --- /dev/null +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.atomfeed.ftl @@ -0,0 +1,21 @@ +<#import "/org/alfresco/cmis/ns.lib.atom.ftl" as nsLib/> +<#import "/org/alfresco/cmis/atomfeed.lib.atom.ftl" as feedLib/> +<#import "/org/alfresco/cmis/atomentry.lib.atom.ftl" as entryLib/> +<#import "/org/alfresco/cmis/cmis.lib.atom.ftl" as cmisLib/> +<#import "/org/alfresco/paging.lib.atom.ftl" as pagingLib/> + +> +<@feedLib.generic id="urn:uuid:checkedout" title="Checked out Documents" author="${person.properties.userName}"/> +<@pagingLib.cursor cursor=cursor/> +<#list results as child> + +<#if child.isDocument> +<@entryLib.document node=child/> +<@cmisLib.document node=child/> +<#else> +<@entryLib.folder node=child/> +<@cmisLib.folder node=child/> + + + + \ No newline at end of file diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.desc.xml b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.desc.xml new file mode 100644 index 0000000000..5c69536dae --- /dev/null +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.desc.xml @@ -0,0 +1,8 @@ + + Checked-out Documents + Retrieve list of documents that are checked-out + /api/checkedout + user + + + \ No newline at end of file diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.js b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.js new file mode 100644 index 0000000000..0e2370c893 --- /dev/null +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.get.js @@ -0,0 +1,36 @@ +script: +{ + // locate (optional) folder + model.folder = null; + var folderId = cmis.findArg(args.folderId, headers["CMIS-folderId"]); + if (folderId !== null) + { + model.folder = search.findNode(folderId); + if (model.folder === null) + { + status.code = 400; + status.message = "Folder " + folderId + " not found"; + status.redirect = true; + break script; + } + if (!model.folder.isContainer) + { + status.code = 400; + status.message = "Folder id " + folderId + " does not refer to a folder"; + status.redirect = true; + break script; + } + } + // NOTE: includeDescendants is an extension of CMIS + model.includeDescendants = (args.includeDescendants == "true") ? true : false;; + + // TODO: property filters + + // TODO: includeAllowableActions + + // retrieve checked-out + var page = paging.createPageOrWindow(args.pageNo, args.pageSize, cmis.findArg(args.skipCount, headers["CMIS-skipCount"]), cmis.findArg(args.maxItems, headers["CMIS-maxItems"])); + var paged = cmis.queryCheckedOut(person.properties.userName, model.folder, model.includeDescendants, page); + model.results = paged.results; + model.cursor = paged.cursor; +} diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.atom.js b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.atom.js new file mode 100644 index 0000000000..f42bc69216 --- /dev/null +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.atom.js @@ -0,0 +1,66 @@ +script: +{ + // ensure atom entry is posted + if (entry === null) + { + status.code = 400; + status.message = "Expected Atom entry"; + status.redirect = true; + break script; + } + + // extract object id from atom entry + var cmisProperties = entry.getExtension(atom.names.cmis_properties); + var objectId = (cmisProperties !== null) ? cmisProperties.objectId : null; + if (objectId === null) + { + status.code = 400; + status.message = "Atom entry does not specify repository object id"; + status.redirect = true; + break script; + } + + // locate node + model.node = search.findNode(objectId); + if (model.node === null) + { + status.code = 400; + status.message = "Repository node " + model.node + " not found"; + status.redirect = true; + break script; + } + + // ensure node can be checked-out + if (!model.node.isDocument) + { + status.code = 400; + status.message = "Cannot checkout node " + objectId + " as it is not a document"; + status.redirect = true; + break script; + } + + // TODO: need to test for isCheckedOut not isLocked + if (model.node.isLocked || model.node.hasAspect("cm:workingCopy")) + { + status.code = 400; + status.message = "Cannot checkout node " + objectId + " as it is already checked-out"; + status.redirect = true; + break script; + } + + // switch on versioning + if (!model.node.hasAspect("cm:versionable")) + { + // create an initial version of the current document + model.node.createVersion("Initial Version", true); + } + + // checkout + model.pwc = model.node.checkout(); + + // setup for 201 Created response + // TODO: set Content-Location + status.code = 201; + status.location = url.server + url.serviceContext + "/api/pwc/" + model.pwc.nodeRef.storeRef.protocol + "/" + model.pwc.nodeRef.storeRef.identifier + "/" + model.pwc.nodeRef.id; + status.redirect = true; +} diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.atomentry.201.ftl b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.atomentry.201.ftl new file mode 100644 index 0000000000..d25bb7d936 --- /dev/null +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.atomentry.201.ftl @@ -0,0 +1,8 @@ +<#import "/org/alfresco/cmis/ns.lib.atom.ftl" as nsLib/> +<#import "/org/alfresco/cmis/atomentry.lib.atom.ftl" as entryLib/> +<#import "/org/alfresco/cmis/cmis.lib.atom.ftl" as cmisLib/> + +> +<@entryLib.document node=pwc/> +<@cmisLib.document node=pwc/> + diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.desc.xml b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.desc.xml new file mode 100644 index 0000000000..4e98a560e8 --- /dev/null +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/checkedout.post.desc.xml @@ -0,0 +1,8 @@ + + Checkout a document + + /api/checkedout + user + + + \ No newline at end of file diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.get.atomfeed.ftl b/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.get.atomfeed.ftl index b1c6b8d58a..9115cf1e39 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.get.atomfeed.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.get.atomfeed.ftl @@ -1,17 +1,21 @@ <#import "/org/alfresco/cmis/ns.lib.atom.ftl" as nsLib/> <#import "/org/alfresco/cmis/atomfeed.lib.atom.ftl" as feedLib/> <#import "/org/alfresco/cmis/atomentry.lib.atom.ftl" as entryLib/> +<#import "/org/alfresco/cmis/cmis.lib.atom.ftl" as cmisLib/> <#import "/org/alfresco/paging.lib.atom.ftl" as pagingLib/> > <@feedLib.node node=node/> +<@cmisLib.folder node=node/> <@pagingLib.cursor cursor=cursor/> <#list results as child> <#if child.isDocument> <@entryLib.document node=child/> +<@cmisLib.document node=child/> <#else> <@entryLib.folder node=child/> +<@cmisLib.folder node=child/> diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.get.js b/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.get.js index ee85e3058d..83894485ae 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.get.js +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.get.js @@ -24,7 +24,7 @@ script: // TODO: property filters // retrieve children - var page = paging.createPageOrWindow(args.pageNo, args.pageSize, cmis.findArg(args.skipCount, headers["CMIS-skipCount"]), cmis.findArg(args.maxChildren, headers["CMIS-maxChildren"])); + var page = paging.createPageOrWindow(args.pageNo, args.pageSize, cmis.findArg(args.skipCount, headers["CMIS-skipCount"]), cmis.findArg(args.maxItems, headers["CMIS-maxItems"])); var paged = cmis.queryChildren(model.node, model.types, page); model.results = paged.results; model.cursor = paged.cursor; diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.post.atom.js b/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.post.atom.js index 646d96303e..faf7ac7842 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.post.atom.js +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.post.atom.js @@ -32,8 +32,8 @@ script: var updated = entry.updated; var author = (entry.author !== null) ? entry.author.name : null; var content = entry.content; - var cmisObject = entry.getExtension(atom.names.cmis_object); - var baseType = (cmisObject !== null) ? cmisObject.baseType : null; + var cmisProperties = entry.getExtension(atom.names.cmis_properties); + var baseType = (cmisProperties !== null) ? cmisProperties.baseType : null; // create the item // TODO: author/updated/id diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.post.atomentry.201.ftl b/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.post.atomentry.201.ftl index 92e03161d1..3a2c281d1d 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.post.atomentry.201.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/children.post.atomentry.201.ftl @@ -1,10 +1,13 @@ <#import "/org/alfresco/cmis/ns.lib.atom.ftl" as nsLib/> <#import "/org/alfresco/cmis/atomentry.lib.atom.ftl" as entryLib/> +<#import "/org/alfresco/cmis/cmis.lib.atom.ftl" as cmisLib/> > <#if node.isDocument> - <@entryLib.document node=node/> +<@entryLib.document node=node/> +<@cmisLib.document node=node/> <#else> - <@entryLib.folder node=node/> +<@entryLib.folder node=node/> +<@cmisLib.folder node=node/> diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/item.get.atomentry.ftl b/config/alfresco/templates/webscripts/org/alfresco/repository/store/item.get.atomentry.ftl index 92e03161d1..3a2c281d1d 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/repository/store/item.get.atomentry.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/item.get.atomentry.ftl @@ -1,10 +1,13 @@ <#import "/org/alfresco/cmis/ns.lib.atom.ftl" as nsLib/> <#import "/org/alfresco/cmis/atomentry.lib.atom.ftl" as entryLib/> +<#import "/org/alfresco/cmis/cmis.lib.atom.ftl" as cmisLib/> > <#if node.isDocument> - <@entryLib.document node=node/> +<@entryLib.document node=node/> +<@cmisLib.document node=node/> <#else> - <@entryLib.folder node=node/> +<@entryLib.folder node=node/> +<@cmisLib.folder node=node/> diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/parent.get.atomfeed.ftl b/config/alfresco/templates/webscripts/org/alfresco/repository/store/parent.get.atomfeed.ftl index 8a056635b2..36f8fe6699 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/repository/store/parent.get.atomfeed.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/parent.get.atomfeed.ftl @@ -1,9 +1,11 @@ <#import "/org/alfresco/cmis/ns.lib.atom.ftl" as nsLib/> <#import "/org/alfresco/cmis/atomfeed.lib.atom.ftl" as feedLib/> <#import "/org/alfresco/cmis/atomentry.lib.atom.ftl" as entryLib/> +<#import "/org/alfresco/cmis/cmis.lib.atom.ftl" as cmisLib/> > <@feedLib.node node=node/> +<@cmisLib.folder node=node/> <@parent node=node.parent recurse=returnToRoot/> @@ -11,6 +13,7 @@ <#if node?exists && node.isContainer> <@entryLib.folder node=node/> +<@cmisLib.folder node=node/> <#if recurse> <@parent node=node.parent recurse=true/> diff --git a/config/alfresco/templates/webscripts/org/alfresco/repository/store/parents.get.atomfeed.ftl b/config/alfresco/templates/webscripts/org/alfresco/repository/store/parents.get.atomfeed.ftl index 650727aaf7..a2c87a2dec 100644 --- a/config/alfresco/templates/webscripts/org/alfresco/repository/store/parents.get.atomfeed.ftl +++ b/config/alfresco/templates/webscripts/org/alfresco/repository/store/parents.get.atomfeed.ftl @@ -1,9 +1,11 @@ <#import "/org/alfresco/cmis/ns.lib.atom.ftl" as nsLib/> <#import "/org/alfresco/cmis/atomfeed.lib.atom.ftl" as feedLib/> <#import "/org/alfresco/cmis/atomentry.lib.atom.ftl" as entryLib/> +<#import "/org/alfresco/cmis/cmis.lib.atom.ftl" as cmisLib/> > <@feedLib.node node=node/> +<@cmisLib.folder node=node/> <@parent node=node.parent recurse=returnToRoot/> <#-- TODO: secondary parents loop --> @@ -12,6 +14,7 @@ <#if node?exists && node.isContainer> <@entryLib.folder node=node/> +<@cmisLib.folder node=node/> <#if recurse> <@parent node=node.parent recurse=true/> diff --git a/config/alfresco/web-scripts-application-context.xml b/config/alfresco/web-scripts-application-context.xml index 0574581edb..73e850fdc3 100644 --- a/config/alfresco/web-scripts-application-context.xml +++ b/config/alfresco/web-scripts-application-context.xml @@ -394,25 +394,29 @@ cmis - + - + + workspace/SpacesStore/Company Home + + + + - http://www.cmis.org/CMIS/1.0 + http://www.cmis.org/2008/05 - object - baseType + properties diff --git a/source/java/org/alfresco/repo/cmis/rest/CMISScript.java b/source/java/org/alfresco/repo/cmis/rest/CMISScript.java index 8917806f2d..2d1864e9e2 100644 --- a/source/java/org/alfresco/repo/cmis/rest/CMISScript.java +++ b/source/java/org/alfresco/repo/cmis/rest/CMISScript.java @@ -24,7 +24,7 @@ */ package org.alfresco.repo.cmis.rest; -import org.alfresco.repo.cmis.rest.Navigation.TypesFilter; +import org.alfresco.repo.cmis.rest.CMISService.TypesFilter; import org.alfresco.repo.jscript.BaseScopableProcessorExtension; import org.alfresco.repo.jscript.ScriptNode; import org.alfresco.repo.web.scripts.Repository; @@ -45,12 +45,12 @@ public class CMISScript extends BaseScopableProcessorExtension { private static final TypesFilter defaultTypesFilter = TypesFilter.FoldersAndDocuments; - private ServiceRegistry services; private Repository repository; - private Navigation navigation; + private CMISService cmisService; private Paging paging; + /** * Set the service registry * @@ -84,13 +84,32 @@ public class CMISScript extends BaseScopableProcessorExtension /** * Set the CMIS Navigation helper * - * @param navigation + * @param cmisService */ - public void setNavigation(Navigation navigation) + public void setCMISService(CMISService cmisService) { - this.navigation = navigation; + this.cmisService = cmisService; } + /** + * Gets the default root folder path + * + * @return default root folder path + */ + public String getDefaultRootFolderPath() + { + return cmisService.getDefaultRootPath(); + } + + /** + * Gets the default root folder + * + * @return default root folder + */ + public ScriptNode getDefaultRootFolder() + { + return new ScriptNode(cmisService.getDefaultRootNodeRef(), services, getScope()); + } /** * Finds the arg value from the specified url argument and header @@ -182,7 +201,7 @@ public class CMISScript extends BaseScopableProcessorExtension public PagedResults queryChildren(ScriptNode parent, String typesFilter, Page page) { TypesFilter filter = resolveTypesFilter(typesFilter); - NodeRef[] children = navigation.getChildren(parent.getNodeRef(), filter); + NodeRef[] children = cmisService.getChildren(parent.getNodeRef(), filter); Cursor cursor = paging.createCursor(children.length, page); ScriptNode[] nodes = new ScriptNode[cursor.getRowCount()]; @@ -194,6 +213,54 @@ public class CMISScript extends BaseScopableProcessorExtension PagedResults results = paging.createPagedResults(nodes, cursor); return results; } + + /** + * Query for items checked-out to user + * + * @param username user + * @param page + * @return paged result set of checked-out items + */ + public PagedResults queryCheckedOut(String username, Page page) + { + return queryCheckedOut(username, null, false, page); + } + + /** + * Query for items checked-out to user within folder + * + * @param username user + * @param folder folder + * @param page + * @return paged result set of checked-out items + */ + public PagedResults queryCheckedOut(String username, ScriptNode folder, Page page) + { + return queryCheckedOut(username, folder, false, page); + } + + /** + * Query for items checked-out to user within folder (and possibly descendants) + * + * @param username user + * @param folder folder + * @param includeDescendants true = include descendants + * @param page + * @return paged result set of checked-out items + */ + public PagedResults queryCheckedOut(String username, ScriptNode folder, boolean includeDescendants, Page page) + { + NodeRef[] checkedout = cmisService.getCheckedOut(username, (folder == null) ? null : folder.getNodeRef(), includeDescendants); + Cursor cursor = paging.createCursor(checkedout.length, page); + ScriptNode[] nodes = new ScriptNode[cursor.getRowCount()]; + for (int i = cursor.getStartRow(); i <= cursor.getEndRow(); i++) + { + nodes[i - cursor.getStartRow()] = new ScriptNode(checkedout[i], services, getScope()); + } + + PagedResults results = paging.createPagedResults(nodes, cursor); + return results; + } /** * Resolve to a Types Filter diff --git a/source/java/org/alfresco/repo/cmis/rest/CMISService.java b/source/java/org/alfresco/repo/cmis/rest/CMISService.java new file mode 100644 index 0000000000..bc2d30487f --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/CMISService.java @@ -0,0 +1,437 @@ +/* + * Copyright (C) 2005-2008 Alfresco Software Limited. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + * As a special exception to the terms and conditions of version 2.0 of + * the GPL, you may redistribute this Program in connection with Free/Libre + * and Open Source Software ("FLOSS") applications as described in Alfresco's + * FLOSS exception. You should have recieved a copy of the text describing + * the FLOSS exception, and it is also available here: + * http://www.alfresco.com/legal/licensing" + */ +package org.alfresco.repo.cmis.rest; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.alfresco.error.AlfrescoRuntimeException; +import org.alfresco.model.ContentModel; +import org.alfresco.repo.search.QueryParameterDefImpl; +import org.alfresco.repo.security.authentication.AuthenticationUtil; +import org.alfresco.repo.security.authentication.AuthenticationUtil.RunAsWork; +import org.alfresco.repo.tenant.TenantDeployer; +import org.alfresco.repo.tenant.TenantDeployerService; +import org.alfresco.repo.transaction.RetryingTransactionHelper; +import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback; +import org.alfresco.repo.web.scripts.Repository; +import org.alfresco.service.cmr.dictionary.DataTypeDefinition; +import org.alfresco.service.cmr.dictionary.DictionaryService; +import org.alfresco.service.cmr.repository.NodeRef; +import org.alfresco.service.cmr.repository.NodeService; +import org.alfresco.service.cmr.repository.StoreRef; +import org.alfresco.service.cmr.search.QueryParameterDefinition; +import org.alfresco.service.cmr.search.ResultSet; +import org.alfresco.service.cmr.search.SearchParameters; +import org.alfresco.service.cmr.search.SearchService; +import org.alfresco.service.namespace.NamespaceService; +import org.alfresco.service.namespace.QName; +import org.alfresco.util.AbstractLifecycleBean; +import org.springframework.beans.BeansException; +import org.springframework.context.ApplicationContext; +import org.springframework.context.ApplicationContextAware; +import org.springframework.context.ApplicationEvent; +import org.springframework.context.ApplicationListener; + + +/** + * CMIS Navigation Service + * + * @author davidc + */ +public class CMISService implements ApplicationContextAware, ApplicationListener, TenantDeployer +{ + /** + * Types Filter + * + * @author davidc + */ + public enum TypesFilter + { + Folders, + FoldersAndDocuments, + Documents + }; + + /** Query Parameters */ + private static final QName PARAM_PARENT = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "parent"); + private static final QName PARAM_USERNAME = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "username"); + + /** Shallow search for all files and folders */ + private static final String LUCENE_QUERY_SHALLOW_FOLDERS = + "+PARENT:\"${cm:parent}\" " + + "-TYPE:\"" + ContentModel.TYPE_SYSTEM_FOLDER + "\" " + + "+TYPE:\"" + ContentModel.TYPE_FOLDER + "\" "; + + /** Shallow search for all files and folders */ + private static final String LUCENE_QUERY_SHALLOW_FILES = + "+PARENT:\"${cm:parent}\" " + + "-TYPE:\"" + ContentModel.TYPE_SYSTEM_FOLDER + "\" " + + "+TYPE:\"" + ContentModel.TYPE_CONTENT + "\" "; + + private static final String LUCENE_QUERY_CHECKEDOUT = + "+@cm\\:workingCopyOwner:${cm:username}"; + + private static final String LUCENE_QUERY_CHECKEDOUT_IN_FOLDER = + "+@cm\\:workingCopyOwner:${cm:username} " + + "+PARENT:\"${cm:parent}\""; + + + // dependencies + private Repository repository; + private RetryingTransactionHelper retryingTransactionHelper; + private DictionaryService dictionaryService; + private SearchService searchService; + private NodeService nodeService; + private TenantDeployerService tenantDeployerService; + private ProcessorLifecycle lifecycle = new ProcessorLifecycle(); + + // default CMIS store and path + private String defaultRootPath; + private Map defaultRootNodeRefs; + + // data types for query + private DataTypeDefinition nodeRefDataType; + private DataTypeDefinition textDataType; + + + /** + * Sets the default root path + * + * store_type/store_id/path... + * + * @param path store_type/store_id/path... + */ + public void setDefaultRootPath(String path) + { + defaultRootPath = path; + } + + /** + * Sets the tenant deployer service + * + * @param tenantDeployerService + */ + public void setTenantDeployerService(TenantDeployerService tenantDeployerService) + { + this.tenantDeployerService = tenantDeployerService; + } + + /** + * Sets helper that provides transaction callbacks + */ + public void setTransactionHelper(RetryingTransactionHelper retryingTransactionHelper) + { + this.retryingTransactionHelper = retryingTransactionHelper; + } + + /** + * @param dictionaryService + */ + public void setDictionaryService(DictionaryService dictionaryService) + { + this.dictionaryService = dictionaryService; + } + + /** + * @param searchService + */ + public void setSearchService(SearchService searchService) + { + this.searchService = searchService; + } + + /** + * @param nodeService + */ + public void setNodeService(NodeService nodeService) + { + this.nodeService = nodeService; + } + + /** + * @param repository + */ + public void setRepository(Repository repository) + { + this.repository = repository; + } + + /* (non-Javadoc) + * @see org.springframework.context.ApplicationContextAware#setApplicationContext(org.springframework.context.ApplicationContext) + */ + public void setApplicationContext(ApplicationContext applicationContext) throws BeansException + { + lifecycle.setApplicationContext(applicationContext); + } + + /* (non-Javadoc) + * @see org.springframework.context.ApplicationListener#onApplicationEvent(org.springframework.context.ApplicationEvent) + */ + public void onApplicationEvent(ApplicationEvent event) + { + lifecycle.onApplicationEvent(event); + } + + /** + * Hooks into Spring Application Lifecycle + */ + private class ProcessorLifecycle extends AbstractLifecycleBean + { + @Override + protected void onBootstrap(ApplicationEvent event) + { + init(); + } + + @Override + protected void onShutdown(ApplicationEvent event) + { + } + } + + /* (non-Javadoc) + * @see org.alfresco.repo.tenant.TenantDeployer#onEnableTenant() + */ + public void onEnableTenant() + { + init(); + } + + /* (non-Javadoc) + * @see org.alfresco.repo.tenant.TenantDeployer#onDisableTenant() + */ + public void onDisableTenant() + { + destroy(); + } + + /* (non-Javadoc) + * @see org.alfresco.repo.tenant.TenantDeployer#init() + */ + public void init() + { + // initialise data types + nodeRefDataType = dictionaryService.getDataType(DataTypeDefinition.NODE_REF); + textDataType = dictionaryService.getDataType(DataTypeDefinition.TEXT); + + // initialise root node ref + tenantDeployerService.register(this); + if (defaultRootNodeRefs == null) + { + defaultRootNodeRefs = new HashMap(1); + } + getDefaultRootNodeRef(); + } + + /* (non-Javadoc) + * @see org.alfresco.repo.tenant.TenantDeployer#destroy() + */ + public void destroy() + { + defaultRootNodeRefs.remove(tenantDeployerService.getCurrentUserDomain()); + } + + /** + * Gets the default root node path + * + * @return root node path + */ + public String getDefaultRootPath() + { + return defaultRootPath; + } + + /** + * Gets the default root node ref + * + * @return root node ref + */ + public NodeRef getDefaultRootNodeRef() + { + String tenantDomain = tenantDeployerService.getCurrentUserDomain(); + NodeRef defaultNodeRef = defaultRootNodeRefs.get(tenantDomain); + if (defaultNodeRef == null) + { + defaultNodeRef = AuthenticationUtil.runAs(new RunAsWork() + { + public NodeRef doWork() throws Exception + { + return retryingTransactionHelper.doInTransaction(new RetryingTransactionCallback() + { + public NodeRef execute() throws Exception + { + return repository.findNodeRef("path", defaultRootPath.split("/")); + }; + }); + } + }, AuthenticationUtil.getSystemUserName()); + + if (defaultNodeRef == null) + { + throw new AlfrescoRuntimeException("Default root folder path '" + defaultRootPath + "' not found"); + } + defaultRootNodeRefs.put(tenantDomain, defaultNodeRef); + } + return defaultNodeRef; + } + + /** + * Gets the default store ref + * + * @return store ref + */ + public StoreRef getDefaultRootStoreRef() + { + return getDefaultRootNodeRef().getStoreRef(); + } + + /** + * Query for node children + * + * @param parent node to query children for + * @param typesFilter types filter + * @return children of node + */ + public NodeRef[] getChildren(NodeRef parent, TypesFilter typesFilter) + { + if (typesFilter == TypesFilter.FoldersAndDocuments) + { + NodeRef[] folders = queryChildren(parent, TypesFilter.Folders); + NodeRef[] docs = queryChildren(parent, TypesFilter.Documents); + NodeRef[] foldersAndDocs = new NodeRef[folders.length + docs.length]; + System.arraycopy(folders, 0, foldersAndDocs, 0, folders.length); + System.arraycopy(docs, 0, foldersAndDocs, folders.length, docs.length); + return foldersAndDocs; + } + else if (typesFilter == TypesFilter.Folders) + { + NodeRef[] folders = queryChildren(parent, TypesFilter.Folders); + return folders; + } + else if (typesFilter == TypesFilter.Documents) + { + NodeRef[] docs = queryChildren(parent, TypesFilter.Documents); + return docs; + } + + return new NodeRef[0]; + } + + /** + * Query for checked out items + * + * @param username for user + * @param folder (optional) within folder + * @param includeDescendants true => include descendants of folder, false => only children of folder + * @return checked out items + */ + public NodeRef[] getCheckedOut(String username, NodeRef folder, boolean includeDescendants) + { + SearchParameters params = new SearchParameters(); + params.setLanguage(SearchService.LANGUAGE_LUCENE); + QueryParameterDefinition usernameDef = new QueryParameterDefImpl(PARAM_USERNAME, textDataType, true, username); + params.addQueryParameterDefinition(usernameDef); + + if (folder == null) + { + // get all checked-out items + params.setQuery(LUCENE_QUERY_CHECKEDOUT); + params.addStore(getDefaultRootStoreRef()); + } + else + { + // get all checked-out items within folder + // NOTE: special-case for all descendants in root folder (treat as all checked-out items) + if (includeDescendants && nodeService.getRootNode(folder.getStoreRef()) == folder) + { + // get all checked-out items within specified folder store + params.setQuery(LUCENE_QUERY_CHECKEDOUT); + params.addStore(folder.getStoreRef()); + } + else + { + // TODO: implement descendants of folder + params.setQuery(LUCENE_QUERY_CHECKEDOUT_IN_FOLDER); + params.addStore(folder.getStoreRef()); + QueryParameterDefinition parentDef = new QueryParameterDefImpl(PARAM_PARENT, nodeRefDataType, true, folder.toString()); + params.addQueryParameterDefinition(parentDef); + } + } + + ResultSet resultSet = searchService.query(params); + try + { + List results = resultSet.getNodeRefs(); + NodeRef[] nodeRefs = new NodeRef[results.size()]; + return results.toArray(nodeRefs); + } + finally + { + resultSet.close(); + } + } + + /** + * Query children helper + * + * NOTE: Queries for folders only or documents only + * + * @param parent node to query children for + * @param typesFilter folders or documents + * @return node children + */ + private NodeRef[] queryChildren(NodeRef parent, TypesFilter typesFilter) + { + SearchParameters params = new SearchParameters(); + params.setLanguage(SearchService.LANGUAGE_LUCENE); + params.addStore(parent.getStoreRef()); + QueryParameterDefinition parentDef = new QueryParameterDefImpl(PARAM_PARENT, nodeRefDataType, true, parent.toString()); + params.addQueryParameterDefinition(parentDef); + + if (typesFilter == TypesFilter.Folders) + { + params.setQuery(LUCENE_QUERY_SHALLOW_FOLDERS); + } + else if (typesFilter == TypesFilter.Documents) + { + params.setQuery(LUCENE_QUERY_SHALLOW_FILES); + } + + ResultSet resultSet = searchService.query(params); + try + { + List results = resultSet.getNodeRefs(); + NodeRef[] nodeRefs = new NodeRef[results.size()]; + return results.toArray(nodeRefs); + } + finally + { + resultSet.close(); + } + } + +} diff --git a/source/java/org/alfresco/repo/cmis/rest/CMISWebScriptTest.java b/source/java/org/alfresco/repo/cmis/rest/CMISWebScriptTest.java index 2e8ded68fd..f07756eef0 100644 --- a/source/java/org/alfresco/repo/cmis/rest/CMISWebScriptTest.java +++ b/source/java/org/alfresco/repo/cmis/rest/CMISWebScriptTest.java @@ -25,21 +25,17 @@ package org.alfresco.repo.cmis.rest; import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; import java.io.StringReader; +import java.io.StringWriter; -import javax.xml.XMLConstants; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; -import javax.xml.transform.Source; import javax.xml.transform.dom.DOMSource; -import javax.xml.transform.stream.StreamSource; -import javax.xml.validation.Schema; -import javax.xml.validation.SchemaFactory; import javax.xml.validation.Validator; +import org.alfresco.repo.cmis.rest.xsd.CMISValidator; import org.alfresco.repo.web.scripts.BaseWebScriptTest; -import org.springframework.core.io.ClassPathResource; import org.w3c.dom.Document; import org.xml.sax.InputSource; import org.xml.sax.SAXException; @@ -52,71 +48,19 @@ import org.xml.sax.SAXException; */ public class CMISWebScriptTest extends BaseWebScriptTest { - /** XML Schema Validation */ - private static DocumentBuilder documentBuilder = null; - private static Validator appValidator = null; - private static Validator atomValidator = null; - - - /** - * Gets document parser - * - * @return document parser - * @throws ParserConfigurationException - */ - protected static DocumentBuilder getDocumentBuilder() - throws ParserConfigurationException - { - if (documentBuilder == null) - { - DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance(); - builderFactory.setNamespaceAware(true); - documentBuilder = builderFactory.newDocumentBuilder(); - } - return documentBuilder; - } - - /** - * Gets CMIS Atom Publishing Protocol XML Validator - * - * @return APP Validator - * @throws IOException - * @throws SAXException - */ - protected static Validator getAppValidator() - throws IOException, SAXException - { - if (appValidator == null) - { - SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); - Source schemaFile = new StreamSource(new ClassPathResource("org/alfresco/repo/cmis/rest/xsd/APP.xsd").getFile()); - Schema schema = factory.newSchema(schemaFile); - appValidator = schema.newValidator(); - } - return appValidator; - } - - /** - * Gets CMIS Atom Validator - * - * @return CMIS Atom Validator - * @throws IOException - * @throws SAXException - */ - protected static Validator getCMISAtomValidator() - throws IOException, SAXException - { - if (atomValidator == null) - { - SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); - Source schemaFile = new StreamSource(new ClassPathResource("org/alfresco/repo/cmis/rest/xsd/ATOM4CMIS.xsd").getFile()); - Schema schema = factory.newSchema(schemaFile); - atomValidator = schema.newValidator(); - } - - return atomValidator; - } + private CMISValidator cmisValidator = new CMISValidator(); + + /** + * Gets CMIS Validator + * + * @return CMIS Validator + */ + protected CMISValidator getCMISValidator() + { + return cmisValidator; + } + /** * Asserts XML complies with specified Validator * @@ -125,34 +69,56 @@ public class CMISWebScriptTest extends BaseWebScriptTest * @throws IOException * @throws ParserConfigurationException */ - public void assertValidXML(String xml, Validator validator) + protected void assertValidXML(String xml, Validator validator) throws IOException, ParserConfigurationException { try { - Document document = getDocumentBuilder().parse(new InputSource(new StringReader(xml))); + Document document = cmisValidator.getDocumentBuilder().parse(new InputSource(new StringReader(xml))); validator.validate(new DOMSource(document)); } catch (SAXException e) { - fail(e.toString() + "\n\n" + xml); + fail(cmisValidator.toString(e, xml)); } - } - + } + /** - public static void main(String[] args) throws IOException, ParserConfigurationException + * Load text from file specified by class path + * + * @param classPath XML file + * @return XML + * @throws IOException + */ + protected String loadString(String classPath) + throws IOException { + InputStream input = getClass().getResourceAsStream(classPath); + if (input == null) + { + throw new IOException(classPath + " not found."); + } + + InputStreamReader reader = new InputStreamReader(input); + StringWriter writer = new StringWriter(); + try { - Document document = getDocumentBuilder().parse(new ClassPathResource("test.xml").getFile()); - getAppValidator().validate(new DOMSource(document)); + char[] buffer = new char[4096]; + int bytesRead = -1; + while ((bytesRead = reader.read(buffer)) != -1) + { + writer.write(buffer, 0, bytesRead); + } + writer.flush(); } - catch (SAXException e) + finally { - fail(e.toString()); + reader.close(); + writer.close(); } + return writer.toString(); } - */ } diff --git a/source/java/org/alfresco/repo/cmis/rest/Navigation.java b/source/java/org/alfresco/repo/cmis/rest/Navigation.java deleted file mode 100644 index d0978cc3dd..0000000000 --- a/source/java/org/alfresco/repo/cmis/rest/Navigation.java +++ /dev/null @@ -1,179 +0,0 @@ -/* - * Copyright (C) 2005-2008 Alfresco Software Limited. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - - * As a special exception to the terms and conditions of version 2.0 of - * the GPL, you may redistribute this Program in connection with Free/Libre - * and Open Source Software ("FLOSS") applications as described in Alfresco's - * FLOSS exception. You should have recieved a copy of the text describing - * the FLOSS exception, and it is also available here: - * http://www.alfresco.com/legal/licensing" - */ -package org.alfresco.repo.cmis.rest; - -import java.util.List; - -import org.alfresco.model.ContentModel; -import org.alfresco.repo.search.QueryParameterDefImpl; -import org.alfresco.service.cmr.dictionary.DataTypeDefinition; -import org.alfresco.service.cmr.dictionary.DictionaryService; -import org.alfresco.service.cmr.repository.NodeRef; -import org.alfresco.service.cmr.search.QueryParameterDefinition; -import org.alfresco.service.cmr.search.ResultSet; -import org.alfresco.service.cmr.search.SearchParameters; -import org.alfresco.service.cmr.search.SearchService; -import org.alfresco.service.namespace.NamespaceService; -import org.alfresco.service.namespace.QName; -import org.springframework.beans.factory.InitializingBean; - - -/** - * CMIS Navigation Service - * - * @author davidc - */ -public class Navigation implements InitializingBean -{ - /** - * Types Filter - * - * @author davidc - */ - public enum TypesFilter - { - Folders, - FoldersAndDocuments, - Documents - }; - - /** Query Parameters */ - private static final QName PARAM_PARENT = QName.createQName(NamespaceService.CONTENT_MODEL_1_0_URI, "parent"); - - /** Shallow search for all files and folders */ - private static final String LUCENE_QUERY_SHALLOW_FOLDERS = - "+PARENT:\"${cm:parent}\" " + - "-TYPE:\"" + ContentModel.TYPE_SYSTEM_FOLDER + "\" " + - "+TYPE:\"" + ContentModel.TYPE_FOLDER + "\" "; - - /** Shallow search for all files and folders */ - private static final String LUCENE_QUERY_SHALLOW_FILES = - "+PARENT:\"${cm:parent}\" " + - "-TYPE:\"" + ContentModel.TYPE_SYSTEM_FOLDER + "\" " + - "+TYPE:\"" + ContentModel.TYPE_CONTENT + "\" "; - - // dependencies - private DictionaryService dictionaryService; - private SearchService searchService; - private DataTypeDefinition nodeRefDataType; - - - /** - * @param dictionaryService - */ - public void setDictionaryService(DictionaryService dictionaryService) - { - this.dictionaryService = dictionaryService; - } - - /** - * @param searchService - */ - public void setSearchService(SearchService searchService) - { - this.searchService = searchService; - } - - /** - * Initialisation - */ - public void afterPropertiesSet() throws Exception - { - nodeRefDataType = dictionaryService.getDataType(DataTypeDefinition.NODE_REF); - } - - - /** - * Query for node children - * - * @param parent node to query children for - * @param typesFilter types filter - * @return children of node - */ - public NodeRef[] getChildren(NodeRef parent, TypesFilter typesFilter) - { - if (typesFilter == TypesFilter.FoldersAndDocuments) - { - NodeRef[] folders = queryChildren(parent, TypesFilter.Folders); - NodeRef[] docs = queryChildren(parent, TypesFilter.Documents); - NodeRef[] foldersAndDocs = new NodeRef[folders.length + docs.length]; - System.arraycopy(folders, 0, foldersAndDocs, 0, folders.length); - System.arraycopy(docs, 0, foldersAndDocs, folders.length, docs.length); - return foldersAndDocs; - } - else if (typesFilter == TypesFilter.Folders) - { - NodeRef[] folders = queryChildren(parent, TypesFilter.Folders); - return folders; - } - else if (typesFilter == TypesFilter.Documents) - { - NodeRef[] docs = queryChildren(parent, TypesFilter.Documents); - return docs; - } - - return new NodeRef[0]; - } - - /** - * Query children helper - * - * NOTE: Queries for folders only or documents only - * - * @param parent node to query children for - * @param typesFilter folders or documents - * @return node children - */ - private NodeRef[] queryChildren(NodeRef parent, TypesFilter typesFilter) - { - SearchParameters params = new SearchParameters(); - params.setLanguage(SearchService.LANGUAGE_LUCENE); - params.addStore(parent.getStoreRef()); - QueryParameterDefinition parentDef = new QueryParameterDefImpl(PARAM_PARENT, nodeRefDataType, true, parent.toString()); - params.addQueryParameterDefinition(parentDef); - - if (typesFilter == TypesFilter.Folders) - { - params.setQuery(LUCENE_QUERY_SHALLOW_FOLDERS); - } - else if (typesFilter == TypesFilter.Documents) - { - params.setQuery(LUCENE_QUERY_SHALLOW_FILES); - } - - ResultSet resultSet = searchService.query(params); - try - { - List results = resultSet.getNodeRefs(); - NodeRef[] nodeRefs = new NodeRef[results.size()]; - return results.toArray(nodeRefs); - } - finally - { - resultSet.close(); - } - } - -} diff --git a/source/java/org/alfresco/repo/cmis/rest/TestCMIS.java b/source/java/org/alfresco/repo/cmis/rest/TestCMIS.java index 1951db162e..7d5737a981 100644 --- a/source/java/org/alfresco/repo/cmis/rest/TestCMIS.java +++ b/source/java/org/alfresco/repo/cmis/rest/TestCMIS.java @@ -24,6 +24,20 @@ */ package org.alfresco.repo.cmis.rest; +import java.io.StringReader; + +import org.alfresco.util.GUID; +import org.alfresco.web.scripts.Format; +import org.alfresco.web.scripts.atom.AbderaService; +import org.alfresco.web.scripts.atom.AbderaServiceImpl; +import org.apache.abdera.ext.cmis.CMISExtensionFactory; +import org.apache.abdera.ext.cmis.CMISProperties; +import org.apache.abdera.i18n.iri.IRI; +import org.apache.abdera.model.Collection; +import org.apache.abdera.model.Entry; +import org.apache.abdera.model.Feed; +import org.apache.abdera.model.Link; +import org.apache.abdera.model.Service; import org.springframework.mock.web.MockHttpServletResponse; @@ -34,11 +48,215 @@ import org.springframework.mock.web.MockHttpServletResponse; */ public class TestCMIS extends CMISWebScriptTest { - - public void testRepository() throws Exception + private AbderaService abdera; + + private static Service service = null; + private static Entry testFolder = null; + + + @Override + protected void setUp() + throws Exception { - MockHttpServletResponse res = getRequest("/api/repository", 200); - assertValidXML(res.getContentAsString(), getAppValidator()); + super.setUp(); + + AbderaServiceImpl abderaImpl = new AbderaServiceImpl(); + abderaImpl.afterPropertiesSet(); + abderaImpl.registerExtensionFactory(new CMISExtensionFactory()); + abdera = abderaImpl; } + private Service getRepository() + throws Exception + { + if (service == null) + { + MockHttpServletResponse res = getRequest("/api/repository", 200, null); + String xml = res.getContentAsString(); + assertNotNull(xml); + assertTrue(xml.length() > 0); + //assertValidXML(xml, getCMISValidator().getAppValidator()); + + service = abdera.parseService(new StringReader(xml), null); + assertNotNull(service); + } + return service; + } + + private IRI getRootCollection(Service service) + { + Collection root = service.getCollection("Main Repository", "root collection"); + assertNotNull(root); + IRI rootHREF = root.getHref(); + assertNotNull(rootHREF); + return rootHREF; + } + + private IRI getCheckedOutCollection(Service service) + { + Collection root = service.getCollection("Main Repository", "checkedout collection"); + assertNotNull(root); + IRI rootHREF = root.getHref(); + assertNotNull(rootHREF); + return rootHREF; + } + + private Entry getTestFolder() + throws Exception + { + if (testFolder == null) + { + testFolder = createTestFolder(); + } + return testFolder; + } + + private Entry getEntry(IRI href) + throws Exception + { + MockHttpServletResponse res = getRequest(href.toString(), 200, "admin"); + assertNotNull(res); + String xml = res.getContentAsString(); + Entry entry = abdera.parseEntry(new StringReader(xml), null); + assertNotNull(entry); + assertEquals(href, entry.getSelfLink().getHref()); + return entry; + } + + private Feed getFeed(IRI href) + throws Exception + { + MockHttpServletResponse res = getRequest(href.toString(), 200, "admin"); + assertNotNull(res); + String xml = res.getContentAsString(); + Feed feed = abdera.parseFeed(new StringReader(xml), null); + assertNotNull(feed); + assertEquals(href, feed.getSelfLink().getHref()); + return feed; + } + + private Entry createTestFolder() + throws Exception + { + Service service = getRepository(); + IRI rootFolderHREF = getRootCollection(service); + String createFolder = loadString("/cmis/rest/createtestfolder.atomentry.xml"); + String guid = GUID.generate(); + createFolder = createFolder.replace("${GUID}", guid); + MockHttpServletResponse res = postRequest(rootFolderHREF.toString(), 201, createFolder, Format.ATOMENTRY.mimetype(), "admin"); + assertNotNull(res); + String xml = res.getContentAsString(); + Entry entry = abdera.parseEntry(new StringReader(xml), null); + assertNotNull(entry); + assertEquals("CMIS Test Folder " + guid, entry.getTitle()); + assertEquals("CMIS Test Folder " + guid + " Summary", entry.getSummary()); + CMISProperties props = entry.getExtension(CMISExtensionFactory.PROPERTIES); + assertEquals("folder", props.getBaseType()); + String testFolderHREF = (String)res.getHeader("Location"); + assertNotNull(testFolderHREF); + return entry; + } + + private Entry createTestDocument(IRI parent) + throws Exception + { + String createFile = loadString("/cmis/rest/createtestdocument.atomentry.xml"); + String guid = GUID.generate(); + createFile = createFile.replace("${GUID}", guid); + MockHttpServletResponse res = postRequest(parent.toString(), 201, createFile, Format.ATOMENTRY.mimetype(), "admin"); + assertNotNull(res); + String xml = res.getContentAsString(); + Entry entry = abdera.parseEntry(new StringReader(xml), null); + assertNotNull(entry); + assertEquals("Test Document " + guid, entry.getTitle()); + assertEquals("Test Document " + guid + " Summary", entry.getSummary()); + assertNotNull(entry.getContentSrc()); + CMISProperties props = entry.getExtension(CMISExtensionFactory.PROPERTIES); + assertEquals("document", props.getBaseType()); + String testFileHREF = (String)res.getHeader("Location"); + assertNotNull(testFileHREF); + return entry; + } + + public void testRepository() + throws Exception + { + Service service = getRepository(); + IRI rootHREF = getRootCollection(service); + getRequest(rootHREF.toString(), 200, "admin"); + } + + public void testCreateTestFolder() + throws Exception + { + createTestFolder(); + } + + public void testCreateDocument() + throws Exception + { + Entry testFolder = getTestFolder(); + Link childrenLink = testFolder.getLink("cmis-children"); + assertNotNull(childrenLink); + Feed children = getFeed(childrenLink.getHref()); + assertNotNull(children); + int entriesBefore = children.getEntries().size(); + Entry document = createTestDocument(children.getSelfLink().getHref()); + Feed feedFolderAfter = getFeed(childrenLink.getHref()); + int entriesAfter = feedFolderAfter.getEntries().size(); + assertEquals(entriesBefore +1, entriesAfter); + Entry entry = feedFolderAfter.getEntry(document.getId().toString()); + assertNotNull(entry); + } + + public void testGetCheckedOut() + throws Exception + { + // retrieve test folder for checkouts + Entry testFolder = getTestFolder(); + Link childrenLink = testFolder.getLink("cmis-children"); + Feed scope = getFeed(childrenLink.getHref()); + assertNotNull(scope); + CMISProperties props = scope.getExtension(CMISExtensionFactory.PROPERTIES); + String scopeId = props.getObjectId(); + assertNotNull(scopeId); + + // retrieve checkouts within scope of test checkout folder + Service repository = getRepository(); + assertNotNull(repository); + IRI checkedoutHREF = getCheckedOutCollection(service); + Feed checkedout = getFeed(new IRI(checkedoutHREF.toString() + "?folderId=" + scopeId)); + assertNotNull(checkedout); + assertEquals(0, checkedout.getEntries().size()); + } + + public void testCheckout() + throws Exception + { + // retrieve test folder for checkouts + Entry testFolder = getTestFolder(); + Link childrenLink = testFolder.getLink("cmis-children"); + Feed scope = getFeed(childrenLink.getHref()); + + // create document for checkout + Entry document = createTestDocument(scope.getSelfLink().getHref()); + MockHttpServletResponse documentRes = getRequest(document.getSelfLink().getHref().toString(), 200, "admin"); + assertNotNull(documentRes); + String xml = documentRes.getContentAsString(); + assertNotNull(xml); + + // checkout + IRI checkedoutHREF = getCheckedOutCollection(service); + MockHttpServletResponse checkoutRes = postRequest(checkedoutHREF.toString(), 201, xml, Format.ATOMENTRY.mimetype(), "admin"); + assertNotNull(checkoutRes); + // TODO: test private working copy properties + + // test getCheckedOut is updated + CMISProperties props = testFolder.getExtension(CMISExtensionFactory.PROPERTIES); + String scopeId = props.getObjectId(); + Feed checkedout = getFeed(new IRI(checkedoutHREF.toString() + "?folderId=" + scopeId)); + assertNotNull(checkedout); + assertEquals(1, checkedout.getEntries().size()); + } + } diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/APP.xsd b/source/java/org/alfresco/repo/cmis/rest/xsd/APP.xsd index 006f0c9a47..45091850b4 100644 --- a/source/java/org/alfresco/repo/cmis/rest/xsd/APP.xsd +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/APP.xsd @@ -9,18 +9,18 @@ elementFormDefault="qualified" targetNamespace="http://www.w3.org/2007/app" xmlns:atom="http://www.w3.org/2005/Atom" - xmlns:app="http://www.w3.org/2007/app" + xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05" > - + - + @@ -35,7 +35,7 @@ - + @@ -44,11 +44,11 @@ - + - + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/ATOM4CMIS.xsd b/source/java/org/alfresco/repo/cmis/rest/xsd/ATOM4CMIS.xsd index fa3ef0f5e5..1c982e793d 100644 --- a/source/java/org/alfresco/repo/cmis/rest/xsd/ATOM4CMIS.xsd +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/ATOM4CMIS.xsd @@ -12,9 +12,10 @@ xmlns:cmis="http://www.cmis.org/2008/05" xmlns:xml="http://www.w3.org/XML/1998/namespace" > + - + @@ -104,12 +105,7 @@ - - + @@ -137,17 +133,18 @@ - - - - - - - - - - --> + + + @@ -426,7 +423,6 @@ - @@ -435,8 +431,8 @@ - + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/CMIS REST.xsd b/source/java/org/alfresco/repo/cmis/rest/xsd/CMIS-REST.xsd similarity index 72% rename from source/java/org/alfresco/repo/cmis/rest/xsd/CMIS REST.xsd rename to source/java/org/alfresco/repo/cmis/rest/xsd/CMIS-REST.xsd index 691fc8db60..98298ea3cc 100644 --- a/source/java/org/alfresco/repo/cmis/rest/xsd/CMIS REST.xsd +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/CMIS-REST.xsd @@ -14,21 +14,21 @@ - + - + - - + + - - - - + + + + @@ -90,35 +90,34 @@ - - + + - + - - - - + + + + - + - - + - - - - + + + + @@ -144,83 +143,86 @@ - - + + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - + + + + + + - - + + + + + - + - + - - - - + + + + - - - + + + - - - + + + @@ -265,10 +267,10 @@ maxOccurs="1"> - - - - + + + + - - - - - - - - + + + + + + + + @@ -345,24 +347,30 @@ - - - - - - - - - - + + + + + + + + + + - - - - - - + + + + + + + + + - + - + - - + + @@ -434,19 +442,17 @@ - - + - + + - - - - - - + + + + + + + - - - - - + - - - - + + @@ -489,21 +494,21 @@ - + - + - + - + @@ -512,125 +517,145 @@ - + - - - - + + - - - - + + - - - - - - - - - - - - - - - - - - - + - - - - + + - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/CMISValidator.java b/source/java/org/alfresco/repo/cmis/rest/xsd/CMISValidator.java new file mode 100644 index 0000000000..913f63531e --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/CMISValidator.java @@ -0,0 +1,160 @@ +/* + * Copyright (C) 2005-2007 Alfresco Software Limited. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + * As a special exception to the terms and conditions of version 2.0 of + * the GPL, you may redistribute this Program in connection with Free/Libre + * and Open Source Software ("FLOSS") applications as described in Alfresco's + * FLOSS exception. You should have recieved a copy of the text describing + * the FLOSS exception, and it is also available here: + * http://www.alfresco.com/legal/licensing" + */ +package org.alfresco.repo.cmis.rest.xsd; + +import java.io.IOException; +import java.io.StringReader; + +import javax.xml.XMLConstants; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import javax.xml.parsers.ParserConfigurationException; +import javax.xml.transform.Source; +import javax.xml.transform.dom.DOMSource; +import javax.xml.transform.stream.StreamSource; +import javax.xml.validation.Schema; +import javax.xml.validation.SchemaFactory; +import javax.xml.validation.Validator; + +import org.w3c.dom.Document; +import org.xml.sax.InputSource; +import org.xml.sax.SAXException; +import org.xml.sax.SAXParseException; + + +/** + * CMIS Validator + * + * Support for validating CMIS requests/responses against CMIS XSDs + * + * @author davidc + */ +public class CMISValidator +{ + /** XML Schema Validation */ + private DocumentBuilder documentBuilder = null; + private Validator appValidator = null; + private Validator atomValidator = null; + + + /** + * Gets document parser + * + * @return document parser + * @throws ParserConfigurationException + */ + public DocumentBuilder getDocumentBuilder() + throws ParserConfigurationException + { + if (documentBuilder == null) + { + DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance(); + builderFactory.setNamespaceAware(true); + documentBuilder = builderFactory.newDocumentBuilder(); + } + return documentBuilder; + } + + /** + * Gets CMIS Atom Publishing Protocol XML Validator + * + * @return APP Validator + * @throws IOException + * @throws SAXException + */ + public Validator getAppValidator() + throws IOException, SAXException + { + if (appValidator == null) + { + SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); + Source APPFile = new StreamSource(getClass().getResourceAsStream("APP.xsd"), getClass().getResource("APP.xsd").toExternalForm()); + Schema schema = factory.newSchema(APPFile); + appValidator = schema.newValidator(); + } + return appValidator; + } + + /** + * Gets CMIS Atom Validator + * + * @return CMIS Atom Validator + * @throws IOException + * @throws SAXException + */ + public Validator getCMISAtomValidator() + throws IOException, SAXException + { + if (atomValidator == null) + { + SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); + Source ATOM4CMISFile = new StreamSource(getClass().getResourceAsStream("ATOM4CMIS.xsd"), getClass().getResource("ATOM4CMIS.xsd").toExternalForm()); + Schema schema = factory.newSchema(ATOM4CMISFile); + atomValidator = schema.newValidator(); + } + + return atomValidator; + } + + /** + * Asserts XML complies with specified Validator + * + * @param xml xml to assert + * @param validator validator to assert with + * @throws IOException + * @throws ParserConfigurationException + */ + public void validateXML(String xml, Validator validator) + throws IOException, ParserConfigurationException, SAXException + { + Document document = getDocumentBuilder().parse(new InputSource(new StringReader(xml))); + validator.validate(new DOMSource(document)); + } + + /** + * Convert SAX Exception to String + * + * @param e SAX Exception + * @param xml related XML (if any) + * @return description of SAX Exception + */ + public String toString(SAXException e, String xml) + { + StringBuffer fail = new StringBuffer(e.toString()); + if (e instanceof SAXParseException) + { + fail.append("\n"); + fail.append("line: ").append(((SAXParseException)e).getLineNumber()).append("\n"); + fail.append("col: ").append(((SAXParseException)e).getColumnNumber()).append("\n"); + } + if (xml != null) + { + fail.append("\n"); + fail.append(xml); + } + return fail.toString(); + } + +} diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-AllowableActions.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-AllowableActions.xml new file mode 100755 index 0000000000..5c828a8986 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-AllowableActions.xml @@ -0,0 +1,49 @@ + + + + + true + + + cmis:parentId + http://tempuri.org + + + true + true + + + true + + + true + + + true + + + true + true + true + true + true + true + true + true + true + true + + + true + true + + + true + + + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-DocumentEntry.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-DocumentEntry.xml new file mode 100755 index 0000000000..af9468986a --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-DocumentEntry.xml @@ -0,0 +1,112 @@ + + + + Document Entry example + + Al Brown + + + + + http://www.cmis.org/rep1/document-entry + + + + 2001-12-31T12:00:00 + + + 2001-12-31T12:00:00 + + + + + + + + + + + + + + + + + + + + + + + + + + + docid1 + document + 2001-12-31T12:00:00 + 2001-12-31T12:00:00 + email + false + true + true + true + false + + false + + + + + This is the initial checkin comment + + 1.0 + 70 + + text/plain + + foo.txt + + http://www.cmis.org/rep1/media/document-entry + + + + + + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + true + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-DocumentPWCEntry.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-DocumentPWCEntry.xml new file mode 100755 index 0000000000..65b7a4cbc8 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-DocumentPWCEntry.xml @@ -0,0 +1,118 @@ + + + + Document Entry example PWC + + Al Brown + + + + + http://www.cmis.org/rep1/document-entry + + + + 2007-12-31T12:00:00 + + + 2001-12-31T12:00:00 + + + + + + + + + + + + + + + + + + + + + + + + + + + docid1pwc + document + 2001-12-31T12:00:00 + 2001-12-31T12:00:00 + email + + + true + true + false + false + false + + + + true + + Al Brown + docid1pwc + + + + + 1.1 + + 70 + + text/plain + + foo.txt + + http://www.cmis.org/rep1/media/document-entry + + + + + + true + true + true + true + true + true + true + false + true + true + true + true + true + true + true + true + true + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderChildren.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderChildren.xml new file mode 100755 index 0000000000..8d4371e9a0 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderChildren.xml @@ -0,0 +1,208 @@ + + + + + + Al Brown + + Folder1's Children - page 3 + + + + + + 2007-12-31T12:00:00 + + + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderDescendants.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderDescendants.xml new file mode 100755 index 0000000000..457645639f --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderDescendants.xml @@ -0,0 +1,326 @@ + + + + + + Al Brown + + Folder1's Children - page 3 + + + + + + 2007-12-31T12:00:00 + + + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderEntry.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderEntry.xml new file mode 100755 index 0000000000..d0e7fb3510 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-FolderEntry.xml @@ -0,0 +1,68 @@ + + + + Folder Entry example + + Al Brown + + + + + http://www.cmis.org/rep1/folder-entry + + + + 2001-12-31T12:00:00 + + + 2001-12-31T12:00:00 + + + + + + + + + + + + + + Folder Entry Example (folderid1) Property1 Value1 + + + + + folderid1 + folder + 2001-12-31T12:00:00 + 2001-12-31T12:00:00 + emailfolder + ParentFolderId + + + + + true + true + true + true + true + true + true + true + true + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-PolicyEntry.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-PolicyEntry.xml new file mode 100755 index 0000000000..a4fef7249b --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-PolicyEntry.xml @@ -0,0 +1,64 @@ + + + + Policy Entry example + + Al Brown + + + + http://www.cmis.org/rep1/policy-entry + + + + 2001-12-31T12:00:00 + + + 2001-12-31T12:00:00 + + + + + + + + + + + + + + Policy Entry Example (policyid1) Property1 Value1 + + + + policyid1 + policy + 2001-12-31T12:00:00 + 2001-12-31T12:00:00 + securitypolicy + docid1 + docid2 + + + + + true + true + true + true + true + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-Query.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-Query.xml new file mode 100755 index 0000000000..6e2094b341 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-Query.xml @@ -0,0 +1,11 @@ + + + SELECT * FROM document + true + 0 + 0 + false + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-RelationshipEntry.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-RelationshipEntry.xml new file mode 100755 index 0000000000..1686e2bad4 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-RelationshipEntry.xml @@ -0,0 +1,65 @@ + + + + Relationship Entry example + + Al Brown + + + + + http://www.cmis.org/rep1/relationship-entry + + + + 2001-12-31T12:00:00 + + + 2001-12-31T12:00:00 + + + + + + + + + + + + + + Relationship Entry Example (relid1) Property1 Value1 + + + + relid1 + relationship + 2001-12-31T12:00:00 + 2001-12-31T12:00:00 + emaillink + docid1 + docid2 + + + + + true + true + true + true + true + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-Service.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-Service.xml new file mode 100755 index 0000000000..5579188f41 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-Service.xml @@ -0,0 +1,45 @@ + + + + Repository 1 + + repid1 + repository1 + Repository Description + ACME Vendor + ACME Repository + ACME Version 99.01 + + true + true + true + true + true + true + true + fulltextwithmetadata + + Welcome to ACME 99 + + + unfiled collection + + + root collection + + + checkedout collection + + + type collection + + + type collection + + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/Example-Type.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-Type.xml new file mode 100755 index 0000000000..598099e276 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/Example-Type.xml @@ -0,0 +1,38 @@ + + + documentTypeId + document + 2001-12-31T12:00:00 + 2001-12-31T12:00:00 + document + document + document + + The document type + + true + true + true + true + true + + + foo1 + Description of foo1 + String + Single + 64 + cmis:choices + true + true + cmis:defaultValue + ro + true + true + + + diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/TestXSDs.java b/source/java/org/alfresco/repo/cmis/rest/xsd/TestXSDs.java new file mode 100644 index 0000000000..e7439dadf0 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/TestXSDs.java @@ -0,0 +1,144 @@ +/* + * Copyright (C) 2005-2008 Alfresco Software Limited. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + * As a special exception to the terms and conditions of version 2.0 of + * the GPL, you may redistribute this Program in connection with Free/Libre + * and Open Source Software ("FLOSS") applications as described in Alfresco's + * FLOSS exception. You should have recieved a copy of the text describing + * the FLOSS exception, and it is also available here: + * http://www.alfresco.com/legal/licensing" + */ +package org.alfresco.repo.cmis.rest.xsd; + +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.StringReader; +import java.io.StringWriter; + +import javax.xml.XMLConstants; +import javax.xml.parsers.ParserConfigurationException; +import javax.xml.transform.Source; +import javax.xml.transform.dom.DOMSource; +import javax.xml.transform.stream.StreamSource; +import javax.xml.validation.Schema; +import javax.xml.validation.SchemaFactory; +import javax.xml.validation.Validator; + +import junit.framework.TestCase; + +import org.w3c.dom.Document; +import org.xml.sax.InputSource; +import org.xml.sax.SAXException; + + +/** + * CMIS XSD Tests + * + * @author davidc + */ +public class TestXSDs extends TestCase +{ + private CMISValidator cmisValidator = new CMISValidator(); + + + /** + * Gets XML from file specified by class path + * + * @param classPath XML file + * @return XML + * @throws IOException + */ + private String getXML(String classPath) + throws IOException + { + InputStream input = getClass().getResourceAsStream(classPath); + if (input == null) + { + throw new IOException(classPath + " not found."); + } + + InputStreamReader reader = new InputStreamReader(input); + StringWriter writer = new StringWriter(); + + try + { + char[] buffer = new char[4096]; + int bytesRead = -1; + while ((bytesRead = reader.read(buffer)) != -1) + { + writer.write(buffer, 0, bytesRead); + } + writer.flush(); + } + finally + { + reader.close(); + writer.close(); + } + + return writer.toString(); + } + + /** + * Assert XML is valid according to specified validator + * + * @param xml document to test + * @param validator validator to test with + * @throws IOException + * @throws ParserConfigurationException + */ + private void assertValidXML(String xml, Validator validator) + throws IOException, ParserConfigurationException + { + try + { + Document document = cmisValidator.getDocumentBuilder().parse(new InputSource(new StringReader(xml))); + validator.validate(new DOMSource(document)); + } + catch (SAXException e) + { + fail(cmisValidator.toString(e, xml)); + } + } + + +// public void testRelaxNG() +// throws Exception +// { +// String xml = getXML("address.xml"); +// SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.RELAXNG_NS_URI); +// Source schemaFile = new StreamSource(getClass().getResourceAsStream("address.rng"), getClass().getResource("address.rng").toExternalForm()); +// Schema schema = factory.newSchema(schemaFile); +// assertValidXML(xml, schema.newValidator()); +// } + + public void testService() + throws Exception + { + String xml = getXML("Example-Service.xml"); + assertValidXML(xml, cmisValidator.getAppValidator()); + } + + public void testFolderChildren() + throws Exception + { + String xml = getXML("Example-FolderChildren.xml"); + assertValidXML(xml, cmisValidator.getCMISAtomValidator()); + } + +} diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/address.rng b/source/java/org/alfresco/repo/cmis/rest/xsd/address.rng new file mode 100644 index 0000000000..06d5045abb --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/address.rng @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/address.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/address.xml new file mode 100644 index 0000000000..88cebc3787 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/address.xml @@ -0,0 +1,12 @@ + + + John + Smith + js@example.com + + + Fred Bloggs + fb@example.net + + + \ No newline at end of file diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/example_feed.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/example_feed.xml new file mode 100644 index 0000000000..072c9ba04d --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/example_feed.xml @@ -0,0 +1,40 @@ + +System +Alfresco (Community Network) +http://localhost:8080/alfresco/images/logo/AlfrescoLogo16.ico +urn:uuid:78974cc9-2e91-11dd-add7-d79ea16aaad7 +Company Home +2008-05-30T22:44:50.379+01:00 + +31 +0 +0 + + + +System +78aef380-2e91-11dd-add7-d79ea16aaad7 +urn:uuid:78aef380-2e91-11dd-add7-d79ea16aaad7 +2008-05-30T22:43:42.120+01:00 +User managed definitions +Data Dictionary +2008-05-30T22:44:50.575+01:00 + +2008-05-30T22:44:50.575+01:00 + +http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif + + + + + + workspace://SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7 + folder + + 2008-05-30T22:43:42.120+01:00 + + 2008-05-30T22:44:50.575+01:00 + Data Dictionary + workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7 + + \ No newline at end of file diff --git a/source/java/org/alfresco/repo/cmis/rest/xsd/example_service.xml b/source/java/org/alfresco/repo/cmis/rest/xsd/example_service.xml new file mode 100644 index 0000000000..b7041fb883 --- /dev/null +++ b/source/java/org/alfresco/repo/cmis/rest/xsd/example_service.xml @@ -0,0 +1,39 @@ + + + Main Repository + + + + 786f2b47-2e91-11dd-add7-d79ea16aaad7 + Main Repository + + Alfresco + Alfresco Repository (Community Network) + 3.0.0 (SeaMistPreview1 @build-number@) + + true + false + false + true + false + true + true + fulltextwithmetadata + + + + + + + CMIS root folder + + + CMIS checked-out documents + + + CMIS Types + + + + + \ No newline at end of file diff --git a/source/java/org/alfresco/repo/web/scripts/BaseWebScriptTest.java b/source/java/org/alfresco/repo/web/scripts/BaseWebScriptTest.java index b876a1b6e9..775632f892 100644 --- a/source/java/org/alfresco/repo/web/scripts/BaseWebScriptTest.java +++ b/source/java/org/alfresco/repo/web/scripts/BaseWebScriptTest.java @@ -27,11 +27,13 @@ package org.alfresco.repo.web.scripts; import java.io.IOException; import java.util.HashMap; +import junit.framework.TestCase; + +import org.alfresco.repo.security.authentication.AuthenticationUtil; +import org.alfresco.repo.security.authentication.AuthenticationUtil.RunAsWork; import org.alfresco.web.scripts.TestWebScriptServer; import org.springframework.mock.web.MockHttpServletResponse; -import junit.framework.TestCase; - /** * Base unit test class for web scripts. * @@ -56,7 +58,7 @@ public abstract class BaseWebScriptTest extends TestCase } return BaseWebScriptTest.server; } - + /** * "GET" the url and check for the expected status code * @@ -68,7 +70,7 @@ public abstract class BaseWebScriptTest extends TestCase protected MockHttpServletResponse getRequest(String url, int expectedStatus) throws IOException { - return sendRequest(METHOD_GET, url, expectedStatus, null, null); + return getRequest(url, expectedStatus, null); } /** @@ -85,6 +87,21 @@ public abstract class BaseWebScriptTest extends TestCase return sendRequest(METHOD_DELETE, url, expectedStatus, null, null); } + /** + * "GET" the url and check for the expected status code + * + * @param url + * @param expectedStatus + * @param asUser + * @return + * @throws IOException + */ + protected MockHttpServletResponse getRequest(String url, int expectedStatus, String asUser) + throws IOException + { + return sendRequest(METHOD_GET, url, expectedStatus, null, null, asUser); + } + /** * "POST" the url and check for the expected status code * @@ -98,7 +115,22 @@ public abstract class BaseWebScriptTest extends TestCase protected MockHttpServletResponse postRequest(String url, int expectedStatus, String body, String contentType) throws IOException { - return postRequest(url, expectedStatus, body.getBytes(), contentType); + return postRequest(url, expectedStatus, body.getBytes(), contentType, null); + } + + /** + * "POST" the url and check for the expected status code + * + * @param url + * @param expectedStatus + * @param asUser + * @return + * @throws IOException + */ + protected MockHttpServletResponse postRequest(String url, int expectedStatus, String body, String contentType, String asUser) + throws IOException + { + return postRequest(url, expectedStatus, body.getBytes(), contentType, asUser); } /** @@ -112,11 +144,26 @@ public abstract class BaseWebScriptTest extends TestCase protected MockHttpServletResponse postRequest(String url, int expectedStatus, byte[] body, String contentType) throws IOException { - return sendRequest(METHOD_POST, url, expectedStatus, body, contentType); + return postRequest(url, expectedStatus, body, contentType, null); } - + /** - * "PUT" the url and check for the expected status code + * "POST" the url and check for the expected status code + * + * @param url + * @param expectedStatus + * @param asUser + * @return + * @throws IOException + */ + protected MockHttpServletResponse postRequest(String url, int expectedStatus, byte[] body, String contentType, String asUser) + throws IOException + { + return sendRequest(METHOD_POST, url, expectedStatus, body, contentType, asUser); + } + + /** + * Send request to Test Web Script Server * * @param url * @param expectedStatus @@ -136,21 +183,34 @@ public abstract class BaseWebScriptTest extends TestCase * @param method * @param url * @param expectedStatus + * @param body + * @param contentType + * @param asUser * @return * @throws IOException */ - private MockHttpServletResponse sendRequest(String method, String url, int expectedStatus, byte[] body, String contentType) + private MockHttpServletResponse sendRequest(final String method, final String url, final int expectedStatus, final byte[] body, final String contentType, String asUser) throws IOException { - MockHttpServletResponse response = BaseWebScriptTest.getServer().submitRequest(method, url, new HashMap(), body, contentType); + // send request in context of specified user + String runAsUser = (asUser == null) ? AuthenticationUtil.getSystemUserName() : asUser; + MockHttpServletResponse response = AuthenticationUtil.runAs(new RunAsWork() + { + @SuppressWarnings("synthetic-access") + public MockHttpServletResponse doWork() throws Exception + { + return BaseWebScriptTest.getServer().submitRequest(method, url, new HashMap(), body, contentType); + } + }, runAsUser); + if (expectedStatus > 0 && expectedStatus != response.getStatus()) { //if (response.getStatus() == 500) //{ - System.out.println(response.getContentAsString()); + // System.out.println(response.getContentAsString()); //} - fail("Expected status code " + expectedStatus + " , " + response.getStatus() + " was returned"); + fail("Status code " + response.getStatus() + " returned, but expected " + expectedStatus + " for " + url + " (" + method + ")"); } return response; } diff --git a/source/java/org/alfresco/repo/web/scripts/RepositoryContainer.java b/source/java/org/alfresco/repo/web/scripts/RepositoryContainer.java index 694444ea87..5639dce413 100644 --- a/source/java/org/alfresco/repo/web/scripts/RepositoryContainer.java +++ b/source/java/org/alfresco/repo/web/scripts/RepositoryContainer.java @@ -33,6 +33,7 @@ import javax.servlet.http.HttpServletResponse; import org.alfresco.repo.cache.SimpleCache; import org.alfresco.repo.model.Repository; import org.alfresco.repo.security.authentication.AuthenticationUtil; +import org.alfresco.repo.template.CropContentMethod; import org.alfresco.repo.tenant.TenantDeployer; import org.alfresco.repo.tenant.TenantDeployerService; import org.alfresco.repo.transaction.AlfrescoTransactionSupport; @@ -179,6 +180,7 @@ public class RepositoryContainer extends AbstractRuntimeContainer implements Ten Map params = new HashMap(); params.putAll(super.getTemplateParameters()); params.put(TemplateService.KEY_IMAGE_RESOLVER, imageResolver.getImageResolver()); + params.put("cropContent", new CropContentMethod()); addRepoParameters(params); return params; } diff --git a/source/java/org/alfresco/repo/web/scripts/TestWebScriptRepoServer.java b/source/java/org/alfresco/repo/web/scripts/TestWebScriptRepoServer.java index 57b8870783..9a64634fba 100644 --- a/source/java/org/alfresco/repo/web/scripts/TestWebScriptRepoServer.java +++ b/source/java/org/alfresco/repo/web/scripts/TestWebScriptRepoServer.java @@ -74,6 +74,7 @@ public class TestWebScriptRepoServer extends TestWebScriptServer try { TestWebScriptServer testServer = getTestServer(); + AuthenticationUtil.setSystemUserAsCurrentUser(); testServer.rep(); } catch(Throwable e) diff --git a/source/java/org/apache/abdera/ext/cmis/CMISConstants.java b/source/java/org/apache/abdera/ext/cmis/CMISConstants.java index bde6e18b65..8346642adc 100644 --- a/source/java/org/apache/abdera/ext/cmis/CMISConstants.java +++ b/source/java/org/apache/abdera/ext/cmis/CMISConstants.java @@ -41,9 +41,10 @@ import javax.xml.namespace.QName; */ public interface CMISConstants { - public static final String CMIS_V10_NS = "http://www.cmis.org/CMIS/1.0"; + public static final String CMIS_200805_NS = "http://www.cmis.org/2008/05"; - public static final QName OBJECT = new QName(CMIS_V10_NS, "object"); - public static final QName BASETYPE = new QName(CMIS_V10_NS, "baseType"); + public static final QName PROPERTIES = new QName(CMIS_200805_NS, "properties"); + public static final QName OBJECTID = new QName(CMIS_200805_NS, "objectId"); + public static final QName BASETYPE = new QName(CMIS_200805_NS, "baseType"); } diff --git a/source/java/org/apache/abdera/ext/cmis/CMISExtensionFactory.java b/source/java/org/apache/abdera/ext/cmis/CMISExtensionFactory.java index 1ea95ac23e..f767295414 100644 --- a/source/java/org/apache/abdera/ext/cmis/CMISExtensionFactory.java +++ b/source/java/org/apache/abdera/ext/cmis/CMISExtensionFactory.java @@ -45,8 +45,8 @@ public class CMISExtensionFactory extends AbstractExtensionFactory public CMISExtensionFactory() { - super(CMIS_V10_NS); - addImpl(OBJECT, CMISObject.class); + super(CMIS_200805_NS); + addImpl(PROPERTIES, CMISProperties.class); } } diff --git a/source/java/org/apache/abdera/ext/cmis/CMISObject.java b/source/java/org/apache/abdera/ext/cmis/CMISProperties.java similarity index 84% rename from source/java/org/apache/abdera/ext/cmis/CMISObject.java rename to source/java/org/apache/abdera/ext/cmis/CMISProperties.java index b905aaa9c3..c6213d6e98 100644 --- a/source/java/org/apache/abdera/ext/cmis/CMISObject.java +++ b/source/java/org/apache/abdera/ext/cmis/CMISProperties.java @@ -41,16 +41,22 @@ import org.apache.abdera.model.ElementWrapper; * * @author davidc */ -public class CMISObject extends ElementWrapper +public class CMISProperties extends ElementWrapper { - public CMISObject(Element internal) + public CMISProperties(Element internal) { super(internal); } - public CMISObject(Factory factory) + public CMISProperties(Factory factory) { - super(factory, CMISConstants.OBJECT); + super(factory, CMISConstants.PROPERTIES); + } + + public String getObjectId() + { + Element child = getInternal().getFirstChild(CMISConstants.OBJECTID); + return (child == null) ? null : child.getText(); } public String getBaseType() diff --git a/source/test-resources/cmis/rest/createtestdocument.atomentry.xml b/source/test-resources/cmis/rest/createtestdocument.atomentry.xml new file mode 100644 index 0000000000..6294dbd2e9 --- /dev/null +++ b/source/test-resources/cmis/rest/createtestdocument.atomentry.xml @@ -0,0 +1,9 @@ + + + Test Document ${GUID} + Test Document ${GUID} Summary + test content ${GUID} + + document + + diff --git a/source/test-resources/cmis/rest/createtestfolder.atomentry.xml b/source/test-resources/cmis/rest/createtestfolder.atomentry.xml new file mode 100644 index 0000000000..4f4926b245 --- /dev/null +++ b/source/test-resources/cmis/rest/createtestfolder.atomentry.xml @@ -0,0 +1,8 @@ + + + CMIS Test Folder ${GUID} + CMIS Test Folder ${GUID} Summary + + folder + + diff --git a/source/test/apptest/results.html b/source/test/apptest/results.html index 79ed3ea12c..4f4ce450ab 100644 --- a/source/test/apptest/results.html +++ b/source/test/apptest/results.html @@ -13,7 +13,7 @@

Test Report

Date
-
Tue Jun 10 17:28:01 2008
+
Wed Jun 25 19:17:05 2008

Legend

@@ -48,18 +48,18 @@ transfer-encoding: chunked server: Apache-Coyote/1.1 pragma: no-cache cache-control: no-cache -date: Tue, 10 Jun 2008 16:27:52 GMT +date: Wed, 25 Jun 2008 18:16:58 GMT content-type: application/atom+xml;charset=UTF-8 -
<?xml version="1.0" ?><service xmlns="http://www.w3.org/2007/app" xmlns:alf="http://www.alfresco.org" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
-  <workspace cmis:id="786f2b47-2e91-11dd-add7-d79ea16aaad7"> 
+
<?xml version="1.0" ?><service xmlns="http://www.w3.org/2007/app" xmlns:alf="http://www.alfresco.org" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:cmis="http://www.cmis.org/2008/05">
+  <workspace cmis:id="73942eab-41e5-11dd-b14c-fbde6012b0c2">
     <atom:title>Main Repository</atom:title>
 
 
     <cmis:repositoryInfo> 
-      <cmis:repositoryId>786f2b47-2e91-11dd-add7-d79ea16aaad7</cmis:repositoryId>
+      <cmis:repositoryId>73942eab-41e5-11dd-b14c-fbde6012b0c2</cmis:repositoryId>
       <cmis:repositoryName>Main Repository</cmis:repositoryName>
       <cmis:repositoryDescription/>         
       <cmis:vendorName>Alfresco</cmis:vendorName> 
@@ -69,16 +69,17 @@ content-type: application/atom+xml;charset=UTF-8
         <cmis:capabilityMultifiling>true</cmis:capabilityMultifiling>
         <cmis:capabilityUnfiling>false</cmis:capabilityUnfiling>
         <cmis:capabilityVersionSpecificFiling>false</cmis:capabilityVersionSpecificFiling>        
+        <cmis:capabilityPWCUpdateable>true</cmis:capabilityPWCUpdateable>
         <cmis:capabilityAllVersionsSearchable>false</cmis:capabilityAllVersionsSearchable>
-        <cmis:capabilityPWCUpdatable>true</cmis:capabilityPWCUpdatable>
         <cmis:capabilityInnerJoin>true</cmis:capabilityInnerJoin>
         <cmis:capabilityOuterJoin>true</cmis:capabilityOuterJoin>
+        <cmis:capabilityFullText>fulltextwithmetadata</cmis:capabilityFullText>
       </cmis:capabilities> 
-      <cmis:repositorySpecificInfo/>
+      <cmis:repositorySpecificInformation/>
     </cmis:repositoryInfo>
 
      
-    <collection cmis:collectionType="root" href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children"> 
+    <collection cmis:collectionType="root" href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children"> 
       <atom:title>CMIS root folder</atom:title> 
     </collection> 
     <collection cmis:collectionType="checkedout" href="http://example.org/cmis/main?checkedout"> 
@@ -93,15 +94,15 @@ content-type: application/atom+xml;charset=UTF-8
 </service>
  • [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
  • [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
  • -
  • [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
  • [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org
  • line 4, column 4: atom_title should contain a xml:lang element (4 occurrences)
  • Basic Entry Manipulation

    Add and remove three entries to the collection

      -
    1. Service Document: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
    2. +
    3. Service Document: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
    4. Request
      
      -GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       
       
       
      @@ -110,1024 +111,189 @@ GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//child
         
    5. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +content-location: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:52 GMT
      +date: Wed, 25 Jun 2008 18:16:59 GMT
       content-type: application/atom+xml;type=feed;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
      +
      <?xml version="1.0" ?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
       <author><name>System</name></author> 
       <generator version="3.0.0 (SeaMistPreview1 @build-number@)">Alfresco (Community Network)</generator>
       <icon>http://localhost:8080/alfresco/images/logo/AlfrescoLogo16.ico</icon>
      -<id>urn:uuid:78974cc9-2e91-11dd-add7-d79ea16aaad7</id>
      +<id>urn:uuid:73c046cd-41e5-11dd-b14c-fbde6012b0c2</id>
       <title>Company Home</title> 
      -<updated>2008-05-30T22:44:50.379+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children" rel="self" type="feed"/>
      -<opensearch:totalResults>31</opensearch:totalResults>
      +<updated>2008-06-24T13:03:53.624+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children" rel="self"/>
      +<opensearch:totalResults>5</opensearch:totalResults>
       <opensearch:startIndex>0</opensearch:startIndex>
       <opensearch:itemsPerPage>0</opensearch:itemsPerPage>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="first" type="application/atom+xml;type=feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="last" type="application/atom+xml;type=feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="first" type="application/atom+xml;type=feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="last" type="application/atom+xml;type=feed"/>
       <entry>
       <author><name>System</name></author>
      -<content>78aef380-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:78aef380-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.120+01:00</published>
      +<content>73d46b14-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:73d46b14-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:43.794+01:00</published>
       <summary>User managed definitions</summary>  
       <title>Data Dictionary</title>
      -<updated>2008-05-30T22:44:50.575+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:50.575+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:53.826+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:53.826+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.120+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:43.794+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:50.575+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:53.826+01:00</cmis:lastModificationDate>
         <cmis:name>Data Dictionary</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>79015951-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:79015951-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.648+01:00</published>
      +<content>742faa85-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:742faa85-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.380+01:00</published>
       <summary>The guest root space</summary>  
       <title>Guest Home</title>
      -<updated>2008-05-30T22:44:51.775+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.775+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.040+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.040+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.648+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.380+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.775+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.040+01:00</cmis:lastModificationDate>
         <cmis:name>Guest Home</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>790db564-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:790db564-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.738+01:00</published>
      +<content>743d3f18-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:743d3f18-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.495+01:00</published>
       <summary>User Homes</summary>  
       <title>User Homes</title>
      -<updated>2008-05-30T22:44:51.950+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.950+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.228+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.228+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.738+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.495+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.950+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.228+01:00</cmis:lastModificationDate>
         <cmis:name>User Homes</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>a1129d57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:a1129d57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:44:49.967+01:00</published>
      +<content>9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:03:53.202+01:00</published>
       <summary>Project Collaboration Spaces</summary>  
       <title>Projects</title>
      -<updated>2008-05-30T22:45:01.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:01.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:04:05.336+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:04:05.336+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:44:49.967+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:03:53.202+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:01.872+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:04:05.336+01:00</cmis:lastModificationDate>
         <cmis:name>Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>b1d9cf57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:b1d9cf57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:45:18.015+01:00</published>
      +<content>3e5c91e8-4200-11dd-95a6-b7bed89a7a18</content>  
      +<id>urn:uuid:3e5c91e8-4200-11dd-95a6-b7bed89a7a18</id>
      +<published>2008-06-24T16:14:30.558+01:00</published>
       <summary>Web Content Management Spaces</summary>  
       <title>Web Projects</title>
      -<updated>2008-05-30T22:45:18.055+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:18.055+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T16:14:30.700+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="self"/>
      +<app:edited>2008-06-24T16:14:30.700+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:45:18.015+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T16:14:30.558+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:18.055+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T16:14:30.700+01:00</cmis:lastModificationDate>
         <cmis:name>Web Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b3d17f92-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:05.798+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>afajcedegd</title>
      -<updated>2008-05-31T00:04:05.903+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:05.903+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:05.798+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:05.903+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>afajcedegd</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b4b6d68d-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:07.287+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ckdgickhkf</title>
      -<updated>2008-05-31T00:04:07.339+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:07.339+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:07.287+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:07.339+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ckdgickhkf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b58682a6-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:08.644+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>bdhbiikdjb</title>
      -<updated>2008-05-31T00:04:08.682+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:08.682+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:08.644+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:08.682+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>bdhbiikdjb</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:44.637+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>lldfeccfbi</title>
      -<updated>2008-05-31T00:21:44.719+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:44.719+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:44.637+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:44.719+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>lldfeccfbi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:46.087+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>kcdlfebaib</title>
      -<updated>2008-05-31T00:21:46.131+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:46.131+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:46.087+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:46.131+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kcdlfebaib</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:47.457+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ciaekkhkei</title>
      -<updated>2008-05-31T00:21:47.495+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:47.495+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:47.457+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:47.495+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ciaekkhkei</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fa3a7cf3-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:15.335+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dchecdgdck</title>
      -<updated>2008-06-02T11:02:15.442+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:15.442+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:15.335+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:15.442+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dchecdgdck</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fb210c6b-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:16.802+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>jjhejlbaji</title>
      -<updated>2008-06-02T11:02:16.849+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:16.849+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:16.802+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:16.849+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jjhejlbaji</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fbf32983-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:18.181+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>jilglecigk</title>
      -<updated>2008-06-02T11:02:18.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:18.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:18.181+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:18.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jilglecigk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:10926605-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:52.779+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>kgcibdecia</title>
      -<updated>2008-06-02T11:02:52.818+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:52.818+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/10926605-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:52.779+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:52.818+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kgcibdecia</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:116398c0-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:54.145+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ghfliabjhj</title>
      -<updated>2008-06-02T11:02:54.186+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:54.186+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/116398c0-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:54.145+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:54.186+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ghfliabjhj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:1230d3d9-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:55.490+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>llcahgcgda</title>
      -<updated>2008-06-02T11:02:55.527+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:55.527+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:55.490+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:55.527+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>llcahgcgda</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b469b67a-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:02.672+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>didfgdekea</title>
      -<updated>2008-06-02T12:19:02.817+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:02.817+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:02.672+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:02.817+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>didfgdekea</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b554d9d6-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:04.165+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>hkhedckcjj</title>
      -<updated>2008-06-02T12:19:04.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:04.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:04.165+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:04.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>hkhedckcjj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b6282f70-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:05.547+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>eekebceglk</title>
      -<updated>2008-06-02T12:19:05.583+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:05.583+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:05.547+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:05.583+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>eekebceglk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:17.655+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dghbgfgagi</title>
      -<updated>2008-06-02T12:39:17.748+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:17.748+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:17.655+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:17.748+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dghbgfgagi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:19.198+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cjcjefkkbj</title>
      -<updated>2008-06-02T12:39:19.240+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:19.240+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:19.198+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:19.240+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cjcjefkkbj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:20.562+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>iafedjliaf</title>
      -<updated>2008-06-02T12:39:20.608+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:20.608+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:20.562+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:20.608+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>iafedjliaf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:27.809+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jikjebebgj</title>
      -<updated>2008-06-02T13:13:27.871+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:27.871+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:27.809+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:27.871+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jikjebebgj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4f6d137f-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:29.166+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>gjadbhcbgk</title>
      -<updated>2008-06-02T13:13:29.205+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:29.205+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:29.166+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:29.205+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>gjadbhcbgk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:50343418-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:30.481+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>fcbffjegkh</title>
      -<updated>2008-06-02T13:13:30.518+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:30.518+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:30.481+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:30.518+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>fcbffjegkh</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" type="UTF-8"/>
      -<id>urn:uuid:9459e4d7-3229-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:30:05.525+01:00</published>
      -<summary>a1d</summary>
      -<title>upload26_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:30:07.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="enclosure" type="UTF-8"/>
      -<app:edited>2008-06-04T12:30:07.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="edit-media" type="UTF-8"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="UTF-8"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:30:05.525+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:30:07.872+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>UTF-8</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload26_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:2eaa85f7-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:48:43.413+01:00</published>
      -<summary>undefined</summary>
      -<title>upload27_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:48:43.474+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:48:43.474+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:48:43.413+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:48:43.474+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload27_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:9f009cd3-322c-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:51:51.997+01:00</published>
      -<summary>undefined</summary>
      -<title>upload29_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:53:29.658+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:53:29.658+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:51:51.997+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:53:29.658+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload29_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:57b1e93d-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:49:52.269+01:00</published>
      -<summary>undefined</summary>
      -<title>upload28_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:49:52.354+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:49:52.354+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:49:52.269+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:49:52.354+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload28_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:24c2b49c-322d-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:55:36.295+01:00</published>
      -<summary>undefined</summary>
      -<title>upload30_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:56:20.449+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:56:20.449+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:55:36.295+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:56:20.449+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload30_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       </feed>
    6. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    7. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    8. -
    9. [RFC4287] line 9, column 117: Not a valid MIME type -line 23, column 145: Not a valid MIME type (194 occurrences) -line 829, column 0: Not a valid MIME type
    10. -
    11. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    12. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 27, column 174: Unregistered link relationship (155 occurrences)
    13. -
    14. line 7, column 0: title should contain a xml:lang element (32 occurrences) -line 17, column 0: content should contain a xml:lang element (31 occurrences) -line 20, column 0: summary should contain a xml:lang element (31 occurrences)
    15. +line 27, column 161: Unregistered link relationship (25 occurrences)
    16. +
    17. line 7, column 0: title should contain a xml:lang element (6 occurrences) +line 17, column 0: content should contain a xml:lang element (5 occurrences) +line 20, column 0: summary should contain a xml:lang element (5 occurrences)
    18. Create new entry #1
    19. Request
      
      -POST http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +POST http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       content-type: application/atom+xml
      -slug: jeicbkfege
      +slug: cdjfhlgcai
       
       
       
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom">
       <title>Iñtërnâtiônàlizætiøn - 1</title>
      -<id>tag:bitworking.org,2008-02-26:1213115273.4772689</id>
      +<id>tag:bitworking.org,2008-02-26:1214417819.8848009</id>
       <updated>2005-07-10T12:29:29Z</updated>
       <author>
       <name>Joe Gregorio</name>
      @@ -1143,56 +309,55 @@ slug: jeicbkfege
       status: 201
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
      -location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192
      +location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:53 GMT
      +date: Wed, 25 Jun 2008 18:16:59 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2d0473a4-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:53.587+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e74f516e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:00.296+01:00</published>
       <summary>Iñtërnâtiônàlizætiøn - 1</summary>
      -<title>jeicbkfege</title>
      -<updated>2008-06-10T17:27:53.587+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:53.587+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      +<title>cdjfhlgcai</title>
      +<updated>2008-06-25T19:17:00.296+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:00.296+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:53.587+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:00.296+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:53.587+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:00.296+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jeicbkfege</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>cdjfhlgcai</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
    20. -
    21. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    22. -
    23. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    24. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    25. +line 16, column 161: Unregistered link relationship (5 occurrences)
    26. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    27. [RFC5023] Section 9.2 Content-Location: not returned in response headers.
    28. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -1201,68 +366,67 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473
         
    29. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:53 GMT
      +date: Wed, 25 Jun 2008 18:17:00 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2d0473a4-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:53.587+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e74f516e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:00.296+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jeicbkfege</title>
      -<updated>2008-06-10T17:27:53.632+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:53.632+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      +<title>cdjfhlgcai</title>
      +<updated>2008-06-25T19:17:00.618+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:00.618+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:53.587+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:00.296+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:53.632+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:00.618+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jeicbkfege</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>cdjfhlgcai</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
    30. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    31. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    32. -
    33. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    34. -
    35. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    36. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    37. +line 16, column 161: Unregistered link relationship (5 occurrences)
    38. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    39. Create new entry #2
    40. Request
      
      -POST http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +POST http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       content-type: application/atom+xml
      -slug: cfkghcjdcj
      +slug: kkkbhlaagl
       
       
       
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom">
       <title>Iñtërnâtiônàlizætiøn - 2</title>
      -<id>tag:bitworking.org,2008-02-26:1213115274.882767</id>
      +<id>tag:bitworking.org,2008-02-26:1214417821.9344389</id>
       <updated>2005-07-10T12:29:29Z</updated>
       <author>
       <name>Joe Gregorio</name>
      @@ -1278,56 +442,55 @@ slug: cfkghcjdcj
       status: 201
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
      -location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192
      +location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:54 GMT
      +date: Wed, 25 Jun 2008 18:17:02 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2dd3d19e-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:54.916+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e8635986-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:02.032+01:00</published>
       <summary>Iñtërnâtiônàlizætiøn - 2</summary>
      -<title>cfkghcjdcj</title>
      -<updated>2008-06-10T17:27:54.916+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:54.916+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      +<title>kkkbhlaagl</title>
      +<updated>2008-06-25T19:17:02.032+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:02.032+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:54.916+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:02.032+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:54.916+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:02.032+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cfkghcjdcj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>kkkbhlaagl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
    41. -
    42. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    43. -
    44. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    45. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    46. +line 16, column 161: Unregistered link relationship (5 occurrences)
    47. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    48. [RFC5023] Section 9.2 Content-Location: not returned in response headers.
    49. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -1336,68 +499,67 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d1
         
    50. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:54 GMT
      +date: Wed, 25 Jun 2008 18:17:02 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2dd3d19e-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:54.916+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e8635986-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:02.032+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cfkghcjdcj</title>
      -<updated>2008-06-10T17:27:54.942+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:54.942+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      +<title>kkkbhlaagl</title>
      +<updated>2008-06-25T19:17:02.168+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:02.168+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:54.916+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:02.032+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:54.942+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:02.168+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cfkghcjdcj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>kkkbhlaagl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
    51. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    52. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    53. -
    54. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    55. -
    56. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    57. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    58. +line 16, column 161: Unregistered link relationship (5 occurrences)
    59. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    60. Create new entry #3
    61. Request
      
      -POST http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +POST http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       content-type: application/atom+xml
      -slug: ehlgdgdcje
      +slug: ebegdbddfl
       
       
       
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom">
       <title>Iñtërnâtiônàlizætiøn - 3</title>
      -<id>tag:bitworking.org,2008-02-26:1213115276.165695</id>
      +<id>tag:bitworking.org,2008-02-26:1214417823.4378099</id>
       <updated>2005-07-10T12:29:29Z</updated>
       <author>
       <name>Joe Gregorio</name>
      @@ -1413,56 +575,55 @@ slug: ehlgdgdcje
       status: 201
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
      -location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192
      +location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:56 GMT
      +date: Wed, 25 Jun 2008 18:17:03 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2e97e4f7-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:56.202+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e945f15e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:03.513+01:00</published>
       <summary>Iñtërnâtiônàlizætiøn - 3</summary>
      -<title>ehlgdgdcje</title>
      -<updated>2008-06-10T17:27:56.202+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:56.202+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      +<title>ebegdbddfl</title>
      +<updated>2008-06-25T19:17:03.513+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:03.513+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:56.202+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:03.513+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:56.202+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:03.513+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ehlgdgdcje</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>ebegdbddfl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
    62. -
    63. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    64. -
    65. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    66. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    67. +line 16, column 161: Unregistered link relationship (5 occurrences)
    68. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    69. [RFC5023] Section 9.2 Content-Location: not returned in response headers.
    70. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -1471,59 +632,58 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4
         
    71. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:56 GMT
      +date: Wed, 25 Jun 2008 18:17:03 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2e97e4f7-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:56.202+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e945f15e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:03.513+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ehlgdgdcje</title>
      -<updated>2008-06-10T17:27:56.236+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:56.236+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      +<title>ebegdbddfl</title>
      +<updated>2008-06-25T19:17:03.564+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:03.564+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:56.202+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:03.513+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:56.236+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:03.564+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ehlgdgdcje</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>ebegdbddfl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
    72. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    73. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    74. -
    75. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    76. -
    77. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    78. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    79. +line 16, column 161: Unregistered link relationship (5 occurrences)
    80. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    81. Request
      
      -GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       
       
       
      @@ -1532,1116 +692,281 @@ GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//child
         
    82. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +content-location: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:56 GMT
      +date: Wed, 25 Jun 2008 18:17:03 GMT
       content-type: application/atom+xml;type=feed;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
      +
      <?xml version="1.0" ?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
       <author><name>System</name></author> 
       <generator version="3.0.0 (SeaMistPreview1 @build-number@)">Alfresco (Community Network)</generator>
       <icon>http://localhost:8080/alfresco/images/logo/AlfrescoLogo16.ico</icon>
      -<id>urn:uuid:78974cc9-2e91-11dd-add7-d79ea16aaad7</id>
      +<id>urn:uuid:73c046cd-41e5-11dd-b14c-fbde6012b0c2</id>
       <title>Company Home</title> 
      -<updated>2008-05-30T22:44:50.379+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children" rel="self" type="feed"/>
      -<opensearch:totalResults>34</opensearch:totalResults>
      +<updated>2008-06-24T13:03:53.624+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children" rel="self"/>
      +<opensearch:totalResults>8</opensearch:totalResults>
       <opensearch:startIndex>0</opensearch:startIndex>
       <opensearch:itemsPerPage>0</opensearch:itemsPerPage>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="first" type="application/atom+xml;type=feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="last" type="application/atom+xml;type=feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="first" type="application/atom+xml;type=feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="last" type="application/atom+xml;type=feed"/>
       <entry>
       <author><name>System</name></author>
      -<content>78aef380-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:78aef380-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.120+01:00</published>
      +<content>73d46b14-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:73d46b14-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:43.794+01:00</published>
       <summary>User managed definitions</summary>  
       <title>Data Dictionary</title>
      -<updated>2008-05-30T22:44:50.575+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:50.575+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:53.826+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:53.826+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.120+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:43.794+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:50.575+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:53.826+01:00</cmis:lastModificationDate>
         <cmis:name>Data Dictionary</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>79015951-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:79015951-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.648+01:00</published>
      +<content>742faa85-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:742faa85-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.380+01:00</published>
       <summary>The guest root space</summary>  
       <title>Guest Home</title>
      -<updated>2008-05-30T22:44:51.775+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.775+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.040+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.040+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.648+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.380+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.775+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.040+01:00</cmis:lastModificationDate>
         <cmis:name>Guest Home</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>790db564-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:790db564-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.738+01:00</published>
      +<content>743d3f18-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:743d3f18-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.495+01:00</published>
       <summary>User Homes</summary>  
       <title>User Homes</title>
      -<updated>2008-05-30T22:44:51.950+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.950+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.228+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.228+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.738+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.495+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.950+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.228+01:00</cmis:lastModificationDate>
         <cmis:name>User Homes</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>a1129d57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:a1129d57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:44:49.967+01:00</published>
      +<content>9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:03:53.202+01:00</published>
       <summary>Project Collaboration Spaces</summary>  
       <title>Projects</title>
      -<updated>2008-05-30T22:45:01.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:01.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:04:05.336+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:04:05.336+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:44:49.967+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:03:53.202+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:01.872+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:04:05.336+01:00</cmis:lastModificationDate>
         <cmis:name>Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>b1d9cf57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:b1d9cf57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:45:18.015+01:00</published>
      +<content>3e5c91e8-4200-11dd-95a6-b7bed89a7a18</content>  
      +<id>urn:uuid:3e5c91e8-4200-11dd-95a6-b7bed89a7a18</id>
      +<published>2008-06-24T16:14:30.558+01:00</published>
       <summary>Web Content Management Spaces</summary>  
       <title>Web Projects</title>
      -<updated>2008-05-30T22:45:18.055+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:18.055+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T16:14:30.700+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="self"/>
      +<app:edited>2008-06-24T16:14:30.700+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:45:18.015+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T16:14:30.558+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:18.055+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T16:14:30.700+01:00</cmis:lastModificationDate>
         <cmis:name>Web Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b3d17f92-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:05.798+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e74f516e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:00.296+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>afajcedegd</title>
      -<updated>2008-05-31T00:04:05.903+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:05.903+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>cdjfhlgcai</title>
      +<updated>2008-06-25T19:17:00.618+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:00.618+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:05.798+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:00.296+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:05.903+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:00.618+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>afajcedegd</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>cdjfhlgcai</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
       <entry>
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b4b6d68d-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:07.287+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e8635986-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:02.032+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ckdgickhkf</title>
      -<updated>2008-05-31T00:04:07.339+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:07.339+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>kkkbhlaagl</title>
      +<updated>2008-06-25T19:17:02.168+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:02.168+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:07.287+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:02.032+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:07.339+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:02.168+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ckdgickhkf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>kkkbhlaagl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
       <entry>
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b58682a6-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:08.644+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e945f15e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:03.513+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>bdhbiikdjb</title>
      -<updated>2008-05-31T00:04:08.682+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:08.682+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>ebegdbddfl</title>
      +<updated>2008-06-25T19:17:03.564+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:03.564+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:08.644+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:03.513+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:08.682+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:03.564+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>bdhbiikdjb</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:44.637+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>lldfeccfbi</title>
      -<updated>2008-05-31T00:21:44.719+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:44.719+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:44.637+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:44.719+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>lldfeccfbi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:46.087+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>kcdlfebaib</title>
      -<updated>2008-05-31T00:21:46.131+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:46.131+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:46.087+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:46.131+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kcdlfebaib</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:47.457+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ciaekkhkei</title>
      -<updated>2008-05-31T00:21:47.495+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:47.495+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:47.457+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:47.495+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ciaekkhkei</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fa3a7cf3-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:15.335+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dchecdgdck</title>
      -<updated>2008-06-02T11:02:15.442+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:15.442+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:15.335+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:15.442+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dchecdgdck</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fb210c6b-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:16.802+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>jjhejlbaji</title>
      -<updated>2008-06-02T11:02:16.849+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:16.849+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:16.802+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:16.849+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jjhejlbaji</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fbf32983-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:18.181+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>jilglecigk</title>
      -<updated>2008-06-02T11:02:18.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:18.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:18.181+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:18.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jilglecigk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:10926605-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:52.779+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>kgcibdecia</title>
      -<updated>2008-06-02T11:02:52.818+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:52.818+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/10926605-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:52.779+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:52.818+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kgcibdecia</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:116398c0-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:54.145+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ghfliabjhj</title>
      -<updated>2008-06-02T11:02:54.186+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:54.186+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/116398c0-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:54.145+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:54.186+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ghfliabjhj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:1230d3d9-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:55.490+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>llcahgcgda</title>
      -<updated>2008-06-02T11:02:55.527+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:55.527+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:55.490+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:55.527+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>llcahgcgda</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b469b67a-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:02.672+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>didfgdekea</title>
      -<updated>2008-06-02T12:19:02.817+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:02.817+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:02.672+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:02.817+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>didfgdekea</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b554d9d6-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:04.165+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>hkhedckcjj</title>
      -<updated>2008-06-02T12:19:04.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:04.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:04.165+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:04.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>hkhedckcjj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b6282f70-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:05.547+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>eekebceglk</title>
      -<updated>2008-06-02T12:19:05.583+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:05.583+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:05.547+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:05.583+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>eekebceglk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:17.655+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dghbgfgagi</title>
      -<updated>2008-06-02T12:39:17.748+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:17.748+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:17.655+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:17.748+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dghbgfgagi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:19.198+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cjcjefkkbj</title>
      -<updated>2008-06-02T12:39:19.240+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:19.240+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:19.198+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:19.240+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cjcjefkkbj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:20.562+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>iafedjliaf</title>
      -<updated>2008-06-02T12:39:20.608+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:20.608+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:20.562+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:20.608+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>iafedjliaf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:27.809+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jikjebebgj</title>
      -<updated>2008-06-02T13:13:27.871+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:27.871+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:27.809+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:27.871+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jikjebebgj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4f6d137f-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:29.166+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>gjadbhcbgk</title>
      -<updated>2008-06-02T13:13:29.205+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:29.205+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:29.166+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:29.205+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>gjadbhcbgk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:50343418-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:30.481+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>fcbffjegkh</title>
      -<updated>2008-06-02T13:13:30.518+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:30.518+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:30.481+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:30.518+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>fcbffjegkh</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" type="UTF-8"/>
      -<id>urn:uuid:9459e4d7-3229-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:30:05.525+01:00</published>
      -<summary>a1d</summary>
      -<title>upload26_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:30:07.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="enclosure" type="UTF-8"/>
      -<app:edited>2008-06-04T12:30:07.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="edit-media" type="UTF-8"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="UTF-8"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:30:05.525+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:30:07.872+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>UTF-8</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload26_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:2eaa85f7-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:48:43.413+01:00</published>
      -<summary>undefined</summary>
      -<title>upload27_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:48:43.474+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:48:43.474+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:48:43.413+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:48:43.474+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload27_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:9f009cd3-322c-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:51:51.997+01:00</published>
      -<summary>undefined</summary>
      -<title>upload29_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:53:29.658+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:53:29.658+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:51:51.997+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:53:29.658+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload29_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:57b1e93d-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:49:52.269+01:00</published>
      -<summary>undefined</summary>
      -<title>upload28_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:49:52.354+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:49:52.354+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:49:52.269+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:49:52.354+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload28_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:24c2b49c-322d-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:55:36.295+01:00</published>
      -<summary>undefined</summary>
      -<title>upload30_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:56:20.449+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:56:20.449+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:55:36.295+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:56:20.449+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload30_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2d0473a4-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:53.587+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jeicbkfege</title>
      -<updated>2008-06-10T17:27:53.632+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:53.632+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:53.587+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:53.632+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jeicbkfege</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2dd3d19e-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:54.916+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cfkghcjdcj</title>
      -<updated>2008-06-10T17:27:54.942+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:54.942+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:54.916+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:54.942+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cfkghcjdcj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2e97e4f7-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:56.202+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ehlgdgdcje</title>
      -<updated>2008-06-10T17:27:56.236+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:56.236+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:56.202+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:56.236+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ehlgdgdcje</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>ebegdbddfl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
       </feed>
    83. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    84. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    85. -
    86. [RFC4287] line 9, column 117: Not a valid MIME type -line 23, column 145: Not a valid MIME type (212 occurrences) -line 829, column 0: Not a valid MIME type
    87. -
    88. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    89. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 27, column 174: Unregistered link relationship (170 occurrences)
    90. -
    91. line 7, column 0: title should contain a xml:lang element (35 occurrences) -line 17, column 0: content should contain a xml:lang element (34 occurrences) -line 20, column 0: summary should contain a xml:lang element (34 occurrences)
    92. +line 27, column 161: Unregistered link relationship (40 occurrences)
    93. +
    94. line 7, column 0: title should contain a xml:lang element (9 occurrences) +line 17, column 0: content should contain a xml:lang element (8 occurrences) +line 20, column 0: summary should contain a xml:lang element (8 occurrences)
    95. Check order of entries in the collection document
    96. -
    97. [RFC5023] Section 10 Failed to preserve order of entries, was expecting urn:uuid:2e97e4f7-370a-11dd-aabf-5d0c77a8a192, but found urn:uuid:2d0473a4-370a-11dd-aabf-5d0c77a8a192
    98. +
    99. [RFC5023] Section 10 Failed to preserve order of entries, was expecting urn:uuid:e945f15e-42e2-11dd-9d9b-d34be6363a76, but found urn:uuid:e74f516e-42e2-11dd-9d9b-d34be6363a76
    100. [RFC5023] Section 9.7 Slug was ignored
    101. Member contained an 'edit' link
    102. Update entry #2 and write back to the collection
    103. Request
      
      -PUT http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192
      +PUT http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -2654,7 +979,7 @@ transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:56 GMT
      +date: Wed, 25 Jun 2008 18:17:03 GMT
       content-type: text/html;charset=UTF-8
       
       
      @@ -2674,15 +999,15 @@ content-type: text/html;charset=UTF-8
             </table>
             <br/>
             <table>
      -         <tr><td>The Web Script <a href="/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192">/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192</a> has responded with a status of 405 - Method Not Allowed.</td></tr>
      +         <tr><td>The Web Script <a href="/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76">/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76</a> has responded with a status of 405 - Method Not Allowed.</td></tr>
             </table>
             <br/>
             <table>
                <tr><td><b>405 Description:</b></td><td> The method specified in the Request-Line is not allowed for the resource identified by the Request-URI.</td></tr>
                <tr><td>&nbsp;</td></tr>
      -         <tr><td><b>Message:</b></td><td>Script url /api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192 does not support the method PUT</td></tr>
      +         <tr><td><b>Message:</b></td><td>Script url /api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76 does not support the method PUT</td></tr>
                <tr><td></td><td>&nbsp;</td></tr>
      -   <tr><td><b>Exception:</b></td><td>org.alfresco.web.scripts.WebScriptException - Script url /api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192 does not support the method PUT</td></tr>
      +   <tr><td><b>Exception:</b></td><td>org.alfresco.web.scripts.WebScriptException - Script url /api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76 does not support the method PUT</td></tr>
          <tr><td></td><td>&nbsp;</td></tr>
                <tr><td></td><td>org.alfresco.web.scripts.AbstractRuntime.executeScript(AbstractRuntime.java:113)</td></tr>
                <tr><td></td><td>org.alfresco.web.scripts.servlet.WebScriptServlet.service(WebScriptServlet.java:116)</td></tr>
      @@ -2706,7 +1031,7 @@ content-type: text/html;charset=UTF-8
                <tr><td></td><td>java.lang.Thread.run(Thread.java:613)</td></tr>
          <tr><td></td><td>&nbsp;</td></tr>
                <tr><td><b>Server</b>:</td><td>Alfresco Community Network v3.0.0 (SeaMistPreview1 @build-number@) schema 124</td></tr>
      -         <tr><td><b>Time</b>:</td><td>Jun 10, 2008 5:27:57 PM</td></tr>
      +         <tr><td><b>Time</b>:</td><td>Jun 25, 2008 7:17:04 PM</td></tr>
                <tr><td></td><td>&nbsp;</td></tr>
             </table>
          </body>
      @@ -2716,7 +1041,7 @@ content-type: text/html;charset=UTF-8
         
    104. [RFC2616] Section 9.6 Failed to accept updated Entry #2
    105. Check order of entries in the collection document
    106. Request
      
      -GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       
       
       
      @@ -2725,1112 +1050,277 @@ GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//child
         
    107. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +content-location: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:57 GMT
      +date: Wed, 25 Jun 2008 18:17:03 GMT
       content-type: application/atom+xml;type=feed;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
      +
      <?xml version="1.0" ?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
       <author><name>System</name></author> 
       <generator version="3.0.0 (SeaMistPreview1 @build-number@)">Alfresco (Community Network)</generator>
       <icon>http://localhost:8080/alfresco/images/logo/AlfrescoLogo16.ico</icon>
      -<id>urn:uuid:78974cc9-2e91-11dd-add7-d79ea16aaad7</id>
      +<id>urn:uuid:73c046cd-41e5-11dd-b14c-fbde6012b0c2</id>
       <title>Company Home</title> 
      -<updated>2008-05-30T22:44:50.379+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children" rel="self" type="feed"/>
      -<opensearch:totalResults>34</opensearch:totalResults>
      +<updated>2008-06-24T13:03:53.624+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children" rel="self"/>
      +<opensearch:totalResults>8</opensearch:totalResults>
       <opensearch:startIndex>0</opensearch:startIndex>
       <opensearch:itemsPerPage>0</opensearch:itemsPerPage>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="first" type="application/atom+xml;type=feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="last" type="application/atom+xml;type=feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="first" type="application/atom+xml;type=feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="last" type="application/atom+xml;type=feed"/>
       <entry>
       <author><name>System</name></author>
      -<content>78aef380-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:78aef380-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.120+01:00</published>
      +<content>73d46b14-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:73d46b14-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:43.794+01:00</published>
       <summary>User managed definitions</summary>  
       <title>Data Dictionary</title>
      -<updated>2008-05-30T22:44:50.575+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:50.575+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:53.826+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:53.826+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.120+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:43.794+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:50.575+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:53.826+01:00</cmis:lastModificationDate>
         <cmis:name>Data Dictionary</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>79015951-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:79015951-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.648+01:00</published>
      +<content>742faa85-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:742faa85-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.380+01:00</published>
       <summary>The guest root space</summary>  
       <title>Guest Home</title>
      -<updated>2008-05-30T22:44:51.775+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.775+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.040+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.040+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.648+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.380+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.775+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.040+01:00</cmis:lastModificationDate>
         <cmis:name>Guest Home</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>790db564-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:790db564-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.738+01:00</published>
      +<content>743d3f18-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:743d3f18-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.495+01:00</published>
       <summary>User Homes</summary>  
       <title>User Homes</title>
      -<updated>2008-05-30T22:44:51.950+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.950+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.228+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.228+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.738+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.495+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.950+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.228+01:00</cmis:lastModificationDate>
         <cmis:name>User Homes</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>a1129d57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:a1129d57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:44:49.967+01:00</published>
      +<content>9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:03:53.202+01:00</published>
       <summary>Project Collaboration Spaces</summary>  
       <title>Projects</title>
      -<updated>2008-05-30T22:45:01.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:01.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:04:05.336+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:04:05.336+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:44:49.967+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:03:53.202+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:01.872+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:04:05.336+01:00</cmis:lastModificationDate>
         <cmis:name>Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>b1d9cf57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:b1d9cf57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:45:18.015+01:00</published>
      +<content>3e5c91e8-4200-11dd-95a6-b7bed89a7a18</content>  
      +<id>urn:uuid:3e5c91e8-4200-11dd-95a6-b7bed89a7a18</id>
      +<published>2008-06-24T16:14:30.558+01:00</published>
       <summary>Web Content Management Spaces</summary>  
       <title>Web Projects</title>
      -<updated>2008-05-30T22:45:18.055+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:18.055+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T16:14:30.700+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="self"/>
      +<app:edited>2008-06-24T16:14:30.700+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:45:18.015+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T16:14:30.558+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:18.055+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T16:14:30.700+01:00</cmis:lastModificationDate>
         <cmis:name>Web Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b3d17f92-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:05.798+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e74f516e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:00.296+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>afajcedegd</title>
      -<updated>2008-05-31T00:04:05.903+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:05.903+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>cdjfhlgcai</title>
      +<updated>2008-06-25T19:17:00.618+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:00.618+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:05.798+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:00.296+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:05.903+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:00.618+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>afajcedegd</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>cdjfhlgcai</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
       <entry>
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b4b6d68d-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:07.287+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e8635986-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:02.032+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ckdgickhkf</title>
      -<updated>2008-05-31T00:04:07.339+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:07.339+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>kkkbhlaagl</title>
      +<updated>2008-06-25T19:17:02.168+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:02.168+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:07.287+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:02.032+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:07.339+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:02.168+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ckdgickhkf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>kkkbhlaagl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
       <entry>
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b58682a6-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:08.644+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e945f15e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:03.513+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>bdhbiikdjb</title>
      -<updated>2008-05-31T00:04:08.682+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:08.682+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>ebegdbddfl</title>
      +<updated>2008-06-25T19:17:03.564+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:03.564+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:08.644+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:03.513+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:08.682+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:03.564+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>bdhbiikdjb</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:44.637+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>lldfeccfbi</title>
      -<updated>2008-05-31T00:21:44.719+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:44.719+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:44.637+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:44.719+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>lldfeccfbi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:46.087+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>kcdlfebaib</title>
      -<updated>2008-05-31T00:21:46.131+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:46.131+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:46.087+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:46.131+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kcdlfebaib</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:47.457+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ciaekkhkei</title>
      -<updated>2008-05-31T00:21:47.495+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:47.495+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:47.457+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:47.495+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ciaekkhkei</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fa3a7cf3-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:15.335+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dchecdgdck</title>
      -<updated>2008-06-02T11:02:15.442+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:15.442+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:15.335+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:15.442+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dchecdgdck</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fb210c6b-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:16.802+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>jjhejlbaji</title>
      -<updated>2008-06-02T11:02:16.849+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:16.849+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:16.802+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:16.849+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jjhejlbaji</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fbf32983-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:18.181+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>jilglecigk</title>
      -<updated>2008-06-02T11:02:18.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:18.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:18.181+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:18.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jilglecigk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:10926605-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:52.779+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>kgcibdecia</title>
      -<updated>2008-06-02T11:02:52.818+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:52.818+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/10926605-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:52.779+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:52.818+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kgcibdecia</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:116398c0-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:54.145+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ghfliabjhj</title>
      -<updated>2008-06-02T11:02:54.186+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:54.186+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/116398c0-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:54.145+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:54.186+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ghfliabjhj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:1230d3d9-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:55.490+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>llcahgcgda</title>
      -<updated>2008-06-02T11:02:55.527+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:55.527+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:55.490+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:55.527+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>llcahgcgda</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b469b67a-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:02.672+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>didfgdekea</title>
      -<updated>2008-06-02T12:19:02.817+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:02.817+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:02.672+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:02.817+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>didfgdekea</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b554d9d6-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:04.165+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>hkhedckcjj</title>
      -<updated>2008-06-02T12:19:04.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:04.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:04.165+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:04.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>hkhedckcjj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b6282f70-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:05.547+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>eekebceglk</title>
      -<updated>2008-06-02T12:19:05.583+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:05.583+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:05.547+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:05.583+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>eekebceglk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:17.655+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dghbgfgagi</title>
      -<updated>2008-06-02T12:39:17.748+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:17.748+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:17.655+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:17.748+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dghbgfgagi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:19.198+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cjcjefkkbj</title>
      -<updated>2008-06-02T12:39:19.240+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:19.240+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:19.198+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:19.240+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cjcjefkkbj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:20.562+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>iafedjliaf</title>
      -<updated>2008-06-02T12:39:20.608+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:20.608+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:20.562+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:20.608+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>iafedjliaf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:27.809+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jikjebebgj</title>
      -<updated>2008-06-02T13:13:27.871+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:27.871+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:27.809+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:27.871+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jikjebebgj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4f6d137f-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:29.166+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>gjadbhcbgk</title>
      -<updated>2008-06-02T13:13:29.205+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:29.205+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:29.166+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:29.205+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>gjadbhcbgk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:50343418-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:30.481+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>fcbffjegkh</title>
      -<updated>2008-06-02T13:13:30.518+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:30.518+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:30.481+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:30.518+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>fcbffjegkh</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" type="UTF-8"/>
      -<id>urn:uuid:9459e4d7-3229-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:30:05.525+01:00</published>
      -<summary>a1d</summary>
      -<title>upload26_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:30:07.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="enclosure" type="UTF-8"/>
      -<app:edited>2008-06-04T12:30:07.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="edit-media" type="UTF-8"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="UTF-8"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:30:05.525+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:30:07.872+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>UTF-8</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload26_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:2eaa85f7-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:48:43.413+01:00</published>
      -<summary>undefined</summary>
      -<title>upload27_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:48:43.474+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:48:43.474+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:48:43.413+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:48:43.474+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload27_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:9f009cd3-322c-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:51:51.997+01:00</published>
      -<summary>undefined</summary>
      -<title>upload29_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:53:29.658+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:53:29.658+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:51:51.997+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:53:29.658+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload29_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:57b1e93d-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:49:52.269+01:00</published>
      -<summary>undefined</summary>
      -<title>upload28_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:49:52.354+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:49:52.354+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:49:52.269+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:49:52.354+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload28_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:24c2b49c-322d-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:55:36.295+01:00</published>
      -<summary>undefined</summary>
      -<title>upload30_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:56:20.449+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:56:20.449+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:55:36.295+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:56:20.449+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload30_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2d0473a4-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:53.587+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jeicbkfege</title>
      -<updated>2008-06-10T17:27:53.632+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:53.632+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:53.587+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:53.632+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jeicbkfege</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2dd3d19e-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:54.916+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cfkghcjdcj</title>
      -<updated>2008-06-10T17:27:54.942+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:54.942+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:54.916+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:54.942+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cfkghcjdcj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2e97e4f7-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:56.202+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ehlgdgdcje</title>
      -<updated>2008-06-10T17:27:56.236+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:56.236+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:56.202+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:56.236+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ehlgdgdcje</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>ebegdbddfl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
       </feed>
    108. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    109. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    110. -
    111. [RFC4287] line 9, column 117: Not a valid MIME type -line 23, column 145: Not a valid MIME type (212 occurrences) -line 829, column 0: Not a valid MIME type
    112. -
    113. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    114. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 27, column 174: Unregistered link relationship (170 occurrences)
    115. -
    116. line 7, column 0: title should contain a xml:lang element (35 occurrences) -line 17, column 0: content should contain a xml:lang element (34 occurrences) -line 20, column 0: summary should contain a xml:lang element (34 occurrences)
    117. -
    118. [RFC5023] Section 10 Failed to preserve order of entries, was expecting urn:uuid:2dd3d19e-370a-11dd-aabf-5d0c77a8a192, but found urn:uuid:2d0473a4-370a-11dd-aabf-5d0c77a8a192
    119. +line 27, column 161: Unregistered link relationship (40 occurrences)
    120. +
    121. line 7, column 0: title should contain a xml:lang element (9 occurrences) +line 17, column 0: content should contain a xml:lang element (8 occurrences) +line 20, column 0: summary should contain a xml:lang element (8 occurrences)
    122. +
    123. [RFC5023] Section 10 Failed to preserve order of entries, was expecting urn:uuid:e8635986-42e2-11dd-9d9b-d34be6363a76, but found urn:uuid:e74f516e-42e2-11dd-9d9b-d34be6363a76
    124. Request
      
      -GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       
       
       
      @@ -3839,1111 +1329,276 @@ GET http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//child
         
    125. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children
      +content-location: http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:57 GMT
      +date: Wed, 25 Jun 2008 18:17:03 GMT
       content-type: application/atom+xml;type=feed;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
      +
      <?xml version="1.0" ?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
       <author><name>System</name></author> 
       <generator version="3.0.0 (SeaMistPreview1 @build-number@)">Alfresco (Community Network)</generator>
       <icon>http://localhost:8080/alfresco/images/logo/AlfrescoLogo16.ico</icon>
      -<id>urn:uuid:78974cc9-2e91-11dd-add7-d79ea16aaad7</id>
      +<id>urn:uuid:73c046cd-41e5-11dd-b14c-fbde6012b0c2</id>
       <title>Company Home</title> 
      -<updated>2008-05-30T22:44:50.379+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children" rel="self" type="feed"/>
      -<opensearch:totalResults>34</opensearch:totalResults>
      +<updated>2008-06-24T13:03:53.624+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children" rel="self"/>
      +<opensearch:totalResults>8</opensearch:totalResults>
       <opensearch:startIndex>0</opensearch:startIndex>
       <opensearch:itemsPerPage>0</opensearch:itemsPerPage>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="first" type="application/atom+xml;type=feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore//children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="last" type="application/atom+xml;type=feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="first" type="application/atom+xml;type=feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/path/workspace/SpacesStore/Company%20Home/children?pageNo=1&amp;guest=&amp;format=atomfeed" rel="last" type="application/atom+xml;type=feed"/>
       <entry>
       <author><name>System</name></author>
      -<content>78aef380-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:78aef380-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.120+01:00</published>
      +<content>73d46b14-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:73d46b14-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:43.794+01:00</published>
       <summary>User managed definitions</summary>  
       <title>Data Dictionary</title>
      -<updated>2008-05-30T22:44:50.575+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:50.575+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:53.826+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:53.826+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.120+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:43.794+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:50.575+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:53.826+01:00</cmis:lastModificationDate>
         <cmis:name>Data Dictionary</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>79015951-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:79015951-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.648+01:00</published>
      +<content>742faa85-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:742faa85-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.380+01:00</published>
       <summary>The guest root space</summary>  
       <title>Guest Home</title>
      -<updated>2008-05-30T22:44:51.775+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.775+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.040+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.040+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.648+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.380+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.775+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.040+01:00</cmis:lastModificationDate>
         <cmis:name>Guest Home</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>790db564-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:790db564-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.738+01:00</published>
      +<content>743d3f18-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:743d3f18-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.495+01:00</published>
       <summary>User Homes</summary>  
       <title>User Homes</title>
      -<updated>2008-05-30T22:44:51.950+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.950+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.228+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.228+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.738+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.495+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.950+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.228+01:00</cmis:lastModificationDate>
         <cmis:name>User Homes</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>a1129d57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:a1129d57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:44:49.967+01:00</published>
      +<content>9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:03:53.202+01:00</published>
       <summary>Project Collaboration Spaces</summary>  
       <title>Projects</title>
      -<updated>2008-05-30T22:45:01.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:01.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:04:05.336+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:04:05.336+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:44:49.967+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:03:53.202+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:01.872+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:04:05.336+01:00</cmis:lastModificationDate>
         <cmis:name>Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>System</name></author>
      -<content>b1d9cf57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:b1d9cf57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:45:18.015+01:00</published>
      +<content>3e5c91e8-4200-11dd-95a6-b7bed89a7a18</content>  
      +<id>urn:uuid:3e5c91e8-4200-11dd-95a6-b7bed89a7a18</id>
      +<published>2008-06-24T16:14:30.558+01:00</published>
       <summary>Web Content Management Spaces</summary>  
       <title>Web Projects</title>
      -<updated>2008-05-30T22:45:18.055+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:18.055+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T16:14:30.700+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="self"/>
      +<app:edited>2008-06-24T16:14:30.700+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:45:18.015+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T16:14:30.558+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:18.055+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T16:14:30.700+01:00</cmis:lastModificationDate>
         <cmis:name>Web Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
       <entry>
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b3d17f92-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:05.798+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e74f516e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:00.296+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>afajcedegd</title>
      -<updated>2008-05-31T00:04:05.903+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:05.903+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>cdjfhlgcai</title>
      +<updated>2008-06-25T19:17:00.618+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:00.618+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:05.798+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:00.296+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:05.903+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:00.618+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>afajcedegd</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>cdjfhlgcai</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
       <entry>
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b4b6d68d-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:07.287+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e8635986-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:02.032+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ckdgickhkf</title>
      -<updated>2008-05-31T00:04:07.339+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:07.339+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>kkkbhlaagl</title>
      +<updated>2008-06-25T19:17:02.168+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:02.168+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:07.287+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:02.032+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:07.339+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:02.168+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ckdgickhkf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>kkkbhlaagl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
       <entry>
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b58682a6-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:08.644+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e945f15e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:03.513+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>bdhbiikdjb</title>
      -<updated>2008-05-31T00:04:08.682+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:08.682+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>ebegdbddfl</title>
      +<updated>2008-06-25T19:17:03.564+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:03.564+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:08.644+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:03.513+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:08.682+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:03.564+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>bdhbiikdjb</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:44.637+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>lldfeccfbi</title>
      -<updated>2008-05-31T00:21:44.719+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:44.719+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:44.637+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:44.719+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>lldfeccfbi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:46.087+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>kcdlfebaib</title>
      -<updated>2008-05-31T00:21:46.131+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:46.131+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:46.087+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:46.131+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kcdlfebaib</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:47.457+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ciaekkhkei</title>
      -<updated>2008-05-31T00:21:47.495+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:47.495+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:47.457+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:47.495+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ciaekkhkei</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fa3a7cf3-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:15.335+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dchecdgdck</title>
      -<updated>2008-06-02T11:02:15.442+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:15.442+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:15.335+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:15.442+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dchecdgdck</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fb210c6b-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:16.802+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>jjhejlbaji</title>
      -<updated>2008-06-02T11:02:16.849+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:16.849+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:16.802+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:16.849+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jjhejlbaji</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fbf32983-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:18.181+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>jilglecigk</title>
      -<updated>2008-06-02T11:02:18.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:18.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:18.181+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:18.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jilglecigk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:10926605-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:52.779+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>kgcibdecia</title>
      -<updated>2008-06-02T11:02:52.818+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:52.818+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/10926605-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:52.779+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:52.818+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kgcibdecia</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:116398c0-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:54.145+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ghfliabjhj</title>
      -<updated>2008-06-02T11:02:54.186+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:54.186+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/116398c0-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:54.145+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:54.186+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ghfliabjhj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:1230d3d9-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:55.490+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>llcahgcgda</title>
      -<updated>2008-06-02T11:02:55.527+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:55.527+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:55.490+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:55.527+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>llcahgcgda</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b469b67a-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:02.672+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>didfgdekea</title>
      -<updated>2008-06-02T12:19:02.817+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:02.817+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:02.672+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:02.817+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>didfgdekea</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b554d9d6-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:04.165+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>hkhedckcjj</title>
      -<updated>2008-06-02T12:19:04.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:04.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:04.165+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:04.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>hkhedckcjj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b6282f70-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:05.547+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>eekebceglk</title>
      -<updated>2008-06-02T12:19:05.583+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:05.583+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:05.547+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:05.583+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>eekebceglk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:17.655+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dghbgfgagi</title>
      -<updated>2008-06-02T12:39:17.748+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:17.748+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:17.655+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:17.748+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dghbgfgagi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:19.198+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cjcjefkkbj</title>
      -<updated>2008-06-02T12:39:19.240+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:19.240+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:19.198+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:19.240+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cjcjefkkbj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:20.562+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>iafedjliaf</title>
      -<updated>2008-06-02T12:39:20.608+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:20.608+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:20.562+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:20.608+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>iafedjliaf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:27.809+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jikjebebgj</title>
      -<updated>2008-06-02T13:13:27.871+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:27.871+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:27.809+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:27.871+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jikjebebgj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4f6d137f-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:29.166+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>gjadbhcbgk</title>
      -<updated>2008-06-02T13:13:29.205+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:29.205+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:29.166+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:29.205+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>gjadbhcbgk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:50343418-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:30.481+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>fcbffjegkh</title>
      -<updated>2008-06-02T13:13:30.518+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:30.518+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:30.481+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:30.518+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>fcbffjegkh</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" type="UTF-8"/>
      -<id>urn:uuid:9459e4d7-3229-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:30:05.525+01:00</published>
      -<summary>a1d</summary>
      -<title>upload26_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:30:07.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="enclosure" type="UTF-8"/>
      -<app:edited>2008-06-04T12:30:07.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="edit-media" type="UTF-8"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="UTF-8"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:30:05.525+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:30:07.872+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>UTF-8</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload26_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:2eaa85f7-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:48:43.413+01:00</published>
      -<summary>undefined</summary>
      -<title>upload27_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:48:43.474+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:48:43.474+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:48:43.413+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:48:43.474+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload27_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:9f009cd3-322c-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:51:51.997+01:00</published>
      -<summary>undefined</summary>
      -<title>upload29_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:53:29.658+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:53:29.658+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:51:51.997+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:53:29.658+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload29_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:57b1e93d-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:49:52.269+01:00</published>
      -<summary>undefined</summary>
      -<title>upload28_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:49:52.354+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:49:52.354+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:49:52.269+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:49:52.354+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload28_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:24c2b49c-322d-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:55:36.295+01:00</published>
      -<summary>undefined</summary>
      -<title>upload30_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:56:20.449+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:56:20.449+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:55:36.295+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:56:20.449+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload30_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2d0473a4-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:53.587+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jeicbkfege</title>
      -<updated>2008-06-10T17:27:53.632+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:53.632+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:53.587+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:53.632+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jeicbkfege</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2dd3d19e-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:54.916+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cfkghcjdcj</title>
      -<updated>2008-06-10T17:27:54.942+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:54.942+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:54.916+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:54.942+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cfkghcjdcj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
      -<entry>
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2e97e4f7-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:56.202+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ehlgdgdcje</title>
      -<updated>2008-06-10T17:27:56.236+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:56.236+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:56.202+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:56.236+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ehlgdgdcje</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>ebegdbddfl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
       </feed>
    126. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    127. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    128. -
    129. [RFC4287] line 9, column 117: Not a valid MIME type -line 23, column 145: Not a valid MIME type (212 occurrences) -line 829, column 0: Not a valid MIME type
    130. -
    131. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    132. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 27, column 174: Unregistered link relationship (170 occurrences)
    133. -
    134. line 7, column 0: title should contain a xml:lang element (35 occurrences) -line 17, column 0: content should contain a xml:lang element (34 occurrences) -line 20, column 0: summary should contain a xml:lang element (34 occurrences)
    135. +line 27, column 161: Unregistered link relationship (40 occurrences)
    136. +
    137. line 7, column 0: title should contain a xml:lang element (9 occurrences) +line 17, column 0: content should contain a xml:lang element (8 occurrences) +line 20, column 0: summary should contain a xml:lang element (8 occurrences)
    138. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2
       
       
       
      @@ -4952,55 +1607,54 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef3
         
    139. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      +date: Wed, 25 Jun 2008 18:17:04 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>System</name></author>
      -<content>78aef380-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:78aef380-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.120+01:00</published>
      +<content>73d46b14-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:73d46b14-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:43.794+01:00</published>
       <summary>User managed definitions</summary>  
       <title>Data Dictionary</title>
      -<updated>2008-05-30T22:44:50.575+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:50.575+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:53.826+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:53.826+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/78aef380-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/73d46b14-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.120+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:43.794+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:50.575+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:53.826+01:00</cmis:lastModificationDate>
         <cmis:name>Data Dictionary</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
    140. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    141. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    142. -
    143. [RFC4287] line 10, column 145: Not a valid MIME type (7 occurrences)
    144. -
    145. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    146. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 14, column 174: Unregistered link relationship (5 occurrences)
    147. +line 14, column 161: Unregistered link relationship (5 occurrences)
    148. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    149. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2
       
       
       
      @@ -5009,55 +1663,54 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790159
         
    150. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      +date: Wed, 25 Jun 2008 18:17:04 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>System</name></author>
      -<content>79015951-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:79015951-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.648+01:00</published>
      +<content>742faa85-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:742faa85-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.380+01:00</published>
       <summary>The guest root space</summary>  
       <title>Guest Home</title>
      -<updated>2008-05-30T22:44:51.775+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.775+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.040+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.040+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/79015951-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/742faa85-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.648+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.380+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.775+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.040+01:00</cmis:lastModificationDate>
         <cmis:name>Guest Home</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
    151. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    152. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    153. -
    154. [RFC4287] line 10, column 145: Not a valid MIME type (7 occurrences)
    155. -
    156. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    157. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 14, column 174: Unregistered link relationship (5 occurrences)
    158. +line 14, column 161: Unregistered link relationship (5 occurrences)
    159. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    160. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2
       
       
       
      @@ -5066,55 +1719,54 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db5
         
    161. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      +date: Wed, 25 Jun 2008 18:17:04 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>System</name></author>
      -<content>790db564-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:790db564-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:43:42.738+01:00</published>
      +<content>743d3f18-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:743d3f18-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:02:44.495+01:00</published>
       <summary>User Homes</summary>  
       <title>User Homes</title>
      -<updated>2008-05-30T22:44:51.950+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:44:51.950+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:03:55.228+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:03:55.228+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/790db564-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/743d3f18-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:43:42.738+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:02:44.495+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:44:51.950+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:03:55.228+01:00</cmis:lastModificationDate>
         <cmis:name>User Homes</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
    162. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    163. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    164. -
    165. [RFC4287] line 10, column 145: Not a valid MIME type (7 occurrences)
    166. -
    167. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    168. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 14, column 174: Unregistered link relationship (5 occurrences)
    169. +line 14, column 161: Unregistered link relationship (5 occurrences)
    170. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    171. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2
       
       
       
      @@ -5123,55 +1775,54 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d
         
    172. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      +date: Wed, 25 Jun 2008 18:17:04 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>System</name></author>
      -<content>a1129d57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:a1129d57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:44:49.967+01:00</published>
      +<content>9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</content>  
      +<id>urn:uuid:9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</id>
      +<published>2008-06-24T13:03:53.202+01:00</published>
       <summary>Project Collaboration Spaces</summary>  
       <title>Projects</title>
      -<updated>2008-05-30T22:45:01.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:01.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T13:04:05.336+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="self"/>
      +<app:edited>2008-06-24T13:04:05.336+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/a1129d57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/9d24e5eb-41e5-11dd-b14c-fbde6012b0c2</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:44:49.967+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T13:03:53.202+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:01.872+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T13:04:05.336+01:00</cmis:lastModificationDate>
         <cmis:name>Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
    173. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    174. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    175. -
    176. [RFC4287] line 10, column 145: Not a valid MIME type (7 occurrences)
    177. -
    178. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    179. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 14, column 174: Unregistered link relationship (5 occurrences)
    180. +line 14, column 161: Unregistered link relationship (5 occurrences)
    181. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    182. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18
       
       
       
      @@ -5180,55 +1831,54 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf
         
    183. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      +date: Wed, 25 Jun 2008 18:17:04 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>System</name></author>
      -<content>b1d9cf57-2e91-11dd-add7-d79ea16aaad7</content>  
      -<id>urn:uuid:b1d9cf57-2e91-11dd-add7-d79ea16aaad7</id>
      -<published>2008-05-30T22:45:18.015+01:00</published>
      +<content>3e5c91e8-4200-11dd-95a6-b7bed89a7a18</content>  
      +<id>urn:uuid:3e5c91e8-4200-11dd-95a6-b7bed89a7a18</id>
      +<published>2008-06-24T16:14:30.558+01:00</published>
       <summary>Web Content Management Spaces</summary>  
       <title>Web Projects</title>
      -<updated>2008-05-30T22:45:18.055+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="self" type="entry"/>
      -<app:edited>2008-05-30T22:45:18.055+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7" rel="edit" type="entry"/>
      +<updated>2008-06-24T16:14:30.700+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="self"/>
      +<app:edited>2008-06-24T16:14:30.700+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18" rel="edit"/>
       <alf:icon>http://localhost:8080/alfresco/images/icons/space-icon-default-16.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/parent" rel="cmis-parent" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/children" rel="cmis-children" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7/descendants" rel="cmis-descendants" type="feed"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/parent" rel="cmis-parent"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/children" rel="cmis-children"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18/descendants" rel="cmis-descendants"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b1d9cf57-2e91-11dd-add7-d79ea16aaad7</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/3e5c91e8-4200-11dd-95a6-b7bed89a7a18</cmis:object_id>
         <cmis:baseType>folder</cmis:baseType>
         <cmis:createdBy>System</cmis:createdBy>
      -  <cmis:creationDate>2008-05-30T22:45:18.015+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-24T16:14:30.558+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>System</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-30T22:45:18.055+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-24T16:14:30.700+01:00</cmis:lastModificationDate>
         <cmis:name>Web Projects</cmis:name>
      -  <cmis:parent>workspace://SpacesStore/78974cc9-2e91-11dd-add7-d79ea16aaad7</cmis:parent>
      +  <cmis:parent>workspace://SpacesStore/73c046cd-41e5-11dd-b14c-fbde6012b0c2</cmis:parent>
       </cmis:object>
       </entry>
    184. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    185. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    186. -
    187. [RFC4287] line 10, column 145: Not a valid MIME type (7 occurrences)
    188. -
    189. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    190. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 14, column 174: Unregistered link relationship (5 occurrences)
    191. +line 14, column 161: Unregistered link relationship (5 occurrences)
    192. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    193. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -5237,1647 +1887,59 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f
         
    194. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      +date: Wed, 25 Jun 2008 18:17:04 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b3d17f92-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:05.798+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e74f516e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:00.296+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>afajcedegd</title>
      -<updated>2008-05-31T00:04:05.903+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:05.903+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      +<title>cdjfhlgcai</title>
      +<updated>2008-06-25T19:17:00.618+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:00.618+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:05.798+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:00.296+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:05.903+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:00.618+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>afajcedegd</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b3d17f92-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>cdjfhlgcai</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
    195. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    196. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    197. -
    198. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    199. -
    200. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    201. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    202. -
    203. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    204. -
    205. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e
      -
      -
      -
      -
      -
    206. -
    207. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b4b6d68d-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:07.287+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ckdgickhkf</title>
      -<updated>2008-05-31T00:04:07.339+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:07.339+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:07.287+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:07.339+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ckdgickhkf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b4b6d68d-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    208. -
    209. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    210. -
    211. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    212. -
    213. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    214. -
    215. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    216. -
    217. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    218. -
    219. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e
      -
      -
      -
      -
      -
    220. -
    221. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" type="text/xhtml"/>
      -<id>urn:uuid:b58682a6-2e9c-11dd-8207-ab62851d974e</id>
      -<published>2008-05-31T00:04:08.644+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>bdhbiikdjb</title>
      -<updated>2008-05-31T00:04:08.682+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:04:08.682+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:04:08.644+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:04:08.682+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>bdhbiikdjb</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b58682a6-2e9c-11dd-8207-ab62851d974e/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    222. -
    223. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    224. -
    225. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    226. -
    227. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    228. -
    229. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    230. -
    231. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    232. -
    233. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77
      -
      -
      -
      -
      -
    234. -
    235. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:44.637+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>lldfeccfbi</title>
      -<updated>2008-05-31T00:21:44.719+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:44.719+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:44.637+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:44.719+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>lldfeccfbi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2aeff6f4-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    236. -
    237. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    238. -
    239. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    240. -
    241. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    242. -
    243. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    244. -
    245. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    246. -
    247. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77
      -
      -
      -
      -
      -
    248. -
    249. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:46.087+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>kcdlfebaib</title>
      -<updated>2008-05-31T00:21:46.131+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:46.131+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:46.087+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:46.131+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kcdlfebaib</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2bcfa89d-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    250. -
    251. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    252. -
    253. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    254. -
    255. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    256. -
    257. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    258. -
    259. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    260. -
    261. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77
      -
      -
      -
      -
      -
    262. -
    263. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" type="text/xhtml"/>
      -<id>urn:uuid:2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</id>
      -<published>2008-05-31T00:21:47.457+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ciaekkhkei</title>
      -<updated>2008-05-31T00:21:47.495+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-05-31T00:21:47.495+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-05-31T00:21:47.457+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-05-31T00:21:47.495+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ciaekkhkei</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2c9ff0f6-2e9f-11dd-a146-8b4c72fb4e77/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    264. -
    265. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    266. -
    267. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    268. -
    269. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    270. -
    271. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    272. -
    273. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    274. -
    275. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38
      -
      -
      -
      -
      -
    276. -
    277. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fa3a7cf3-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:15.335+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dchecdgdck</title>
      -<updated>2008-06-02T11:02:15.442+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:15.442+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:15.335+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:15.442+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dchecdgdck</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fa3a7cf3-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    278. -
    279. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    280. -
    281. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    282. -
    283. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    284. -
    285. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    286. -
    287. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    288. -
    289. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38
      -
      -
      -
      -
      -
    290. -
    291. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fb210c6b-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:16.802+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>jjhejlbaji</title>
      -<updated>2008-06-02T11:02:16.849+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:16.849+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:16.802+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:16.849+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jjhejlbaji</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fb210c6b-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    292. -
    293. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    294. -
    295. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    296. -
    297. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    298. -
    299. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    300. -
    301. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    302. -
    303. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38
      -
      -
      -
      -
      -
    304. -
    305. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:fbf32983-308a-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:18.181+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>jilglecigk</title>
      -<updated>2008-06-02T11:02:18.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:18.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:18.181+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:18.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jilglecigk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/fbf32983-308a-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    306. -
    307. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    308. -
    309. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    310. -
    311. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    312. -
    313. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    314. -
    315. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    316. -
    317. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38
      -
      -
      -
      -
      -
    318. -
    319. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:10926605-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:52.779+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>kgcibdecia</title>
      -<updated>2008-06-02T11:02:52.818+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:52.818+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/10926605-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:52.779+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:52.818+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>kgcibdecia</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/10926605-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    320. -
    321. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    322. -
    323. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    324. -
    325. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    326. -
    327. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    328. -
    329. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    330. -
    331. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38
      -
      -
      -
      -
      -
    332. -
    333. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:116398c0-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:54.145+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>ghfliabjhj</title>
      -<updated>2008-06-02T11:02:54.186+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:54.186+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/116398c0-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:54.145+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:54.186+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ghfliabjhj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/116398c0-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    334. -
    335. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    336. -
    337. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    338. -
    339. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    340. -
    341. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    342. -
    343. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    344. -
    345. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38
      -
      -
      -
      -
      -
    346. -
    347. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" type="text/xhtml"/>
      -<id>urn:uuid:1230d3d9-308b-11dd-92ec-15799e742a38</id>
      -<published>2008-06-02T11:02:55.490+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>llcahgcgda</title>
      -<updated>2008-06-02T11:02:55.527+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T11:02:55.527+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T11:02:55.490+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T11:02:55.527+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>llcahgcgda</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/1230d3d9-308b-11dd-92ec-15799e742a38/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    348. -
    349. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    350. -
    351. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    352. -
    353. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    354. -
    355. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    356. -
    357. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    358. -
    359. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff
      -
      -
      -
      -
      -
    360. -
    361. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b469b67a-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:02.672+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>didfgdekea</title>
      -<updated>2008-06-02T12:19:02.817+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:02.817+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:02.672+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:02.817+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>didfgdekea</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b469b67a-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    362. -
    363. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    364. -
    365. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    366. -
    367. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    368. -
    369. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    370. -
    371. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    372. -
    373. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff
      -
      -
      -
      -
      -
    374. -
    375. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b554d9d6-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:04.165+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>hkhedckcjj</title>
      -<updated>2008-06-02T12:19:04.221+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:04.221+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:04.165+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:04.221+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>hkhedckcjj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b554d9d6-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    376. -
    377. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    378. -
    379. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    380. -
    381. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    382. -
    383. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    384. -
    385. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    386. -
    387. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff
      -
      -
      -
      -
      -
    388. -
    389. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:27:59 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" type="text/xhtml"/>
      -<id>urn:uuid:b6282f70-3095-11dd-bace-dda7041e0bff</id>
      -<published>2008-06-02T12:19:05.547+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>eekebceglk</title>
      -<updated>2008-06-02T12:19:05.583+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:19:05.583+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:19:05.547+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:19:05.583+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>eekebceglk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/b6282f70-3095-11dd-bace-dda7041e0bff/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    390. -
    391. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    392. -
    393. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    394. -
    395. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    396. -
    397. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    398. -
    399. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    400. -
    401. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f
      -
      -
      -
      -
      -
    402. -
    403. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:17.655+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>dghbgfgagi</title>
      -<updated>2008-06-02T12:39:17.748+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:17.748+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:17.655+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:17.748+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>dghbgfgagi</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/889dad3c-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    404. -
    405. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    406. -
    407. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    408. -
    409. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    410. -
    411. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    412. -
    413. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    414. -
    415. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f
      -
      -
      -
      -
      -
    416. -
    417. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:19.198+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cjcjefkkbj</title>
      -<updated>2008-06-02T12:39:19.240+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:19.240+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:19.198+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:19.240+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cjcjefkkbj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/898c7a14-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    418. -
    419. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    420. -
    421. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    422. -
    423. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    424. -
    425. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    426. -
    427. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    428. -
    429. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f
      -
      -
      -
      -
      -
    430. -
    431. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" type="text/xhtml"/>
      -<id>urn:uuid:8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</id>
      -<published>2008-06-02T12:39:20.562+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>iafedjliaf</title>
      -<updated>2008-06-02T12:39:20.608+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T12:39:20.608+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T12:39:20.562+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T12:39:20.608+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>iafedjliaf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/8a5bd80d-3098-11dd-b9d0-4bb5d9d9e18f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    432. -
    433. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    434. -
    435. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    436. -
    437. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    438. -
    439. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    440. -
    441. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    442. -
    443. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140
      -
      -
      -
      -
      -
    444. -
    445. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:27.809+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jikjebebgj</title>
      -<updated>2008-06-02T13:13:27.871+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:27.871+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:27.809+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:27.871+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jikjebebgj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4e9c2ee5-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    446. -
    447. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    448. -
    449. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    450. -
    451. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    452. -
    453. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    454. -
    455. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    456. -
    457. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140
      -
      -
      -
      -
      -
    458. -
    459. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:4f6d137f-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:29.166+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>gjadbhcbgk</title>
      -<updated>2008-06-02T13:13:29.205+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:29.205+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:29.166+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:29.205+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>gjadbhcbgk</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/4f6d137f-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    460. -
    461. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    462. -
    463. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    464. -
    465. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    466. -
    467. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    468. -
    469. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    470. -
    471. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140
      -
      -
      -
      -
      -
    472. -
    473. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" type="text/xhtml"/>
      -<id>urn:uuid:50343418-309d-11dd-ba8d-9db0be7fd140</id>
      -<published>2008-06-02T13:13:30.481+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>fcbffjegkh</title>
      -<updated>2008-06-02T13:13:30.518+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-02T13:13:30.518+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-02T13:13:30.481+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-02T13:13:30.518+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>fcbffjegkh</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/50343418-309d-11dd-ba8d-9db0be7fd140/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    474. -
    475. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    476. -
    477. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    478. -
    479. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    480. -
    481. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    482. -
    483. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    484. -
    485. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555
      -
      -
      -
      -
      -
    486. -
    487. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" type="UTF-8"/>
      -<id>urn:uuid:9459e4d7-3229-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:30:05.525+01:00</published>
      -<summary>a1d</summary>
      -<title>upload26_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:30:07.872+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="enclosure" type="UTF-8"/>
      -<app:edited>2008-06-04T12:30:07.872+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="edit-media" type="UTF-8"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="UTF-8"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:30:05.525+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:30:07.872+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>UTF-8</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload26_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9459e4d7-3229-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    488. -
    489. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    490. -
    491. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    492. -
    493. [RFC4287] line 4, column 0: Not a valid MIME type -line 10, column 145: Not a valid MIME type (9 occurrences)
    494. -
    495. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    496. -
    497. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    498. -
    499. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555
      -
      -
      -
      -
      -
    500. -
    501. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:2eaa85f7-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:48:43.413+01:00</published>
      -<summary>undefined</summary>
      -<title>upload27_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:48:43.474+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:48:43.474+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:48:43.413+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:48:43.474+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload27_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2eaa85f7-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    502. -
    503. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    504. -
    505. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    506. -
    507. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    508. -
    509. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    510. -
    511. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    512. -
    513. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f
      -
      -
      -
      -
      -
    514. -
    515. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:9f009cd3-322c-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:51:51.997+01:00</published>
      -<summary>undefined</summary>
      -<title>upload29_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:53:29.658+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:53:29.658+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:51:51.997+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:53:29.658+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload29_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/9f009cd3-322c-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    516. -
    517. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    518. -
    519. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    520. -
    521. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    522. -
    523. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    524. -
    525. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    526. -
    527. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555
      -
      -
      -
      -
      -
    528. -
    529. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" type="text/csv"/>
      -<id>urn:uuid:57b1e93d-322c-11dd-9eff-d39c283f8555</id>
      -<published>2008-06-04T12:49:52.269+01:00</published>
      -<summary>undefined</summary>
      -<title>upload28_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:49:52.354+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:49:52.354+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:49:52.269+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:49:52.354+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload28_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/57b1e93d-322c-11dd-9eff-d39c283f8555/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    530. -
    531. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    532. -
    533. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    534. -
    535. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    536. -
    537. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    538. -
    539. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    540. -
    541. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f
      -
      -
      -
      -
      -
    542. -
    543. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" type="text/csv"/>
      -<id>urn:uuid:24c2b49c-322d-11dd-86bc-b72e392a286f</id>
      -<published>2008-06-04T12:55:36.295+01:00</published>
      -<summary>undefined</summary>
      -<title>upload30_Part I - Content Management Interoperability Services.pdf</title>
      -<updated>2008-06-04T12:56:20.449+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="enclosure" type="text/csv"/>
      -<app:edited>2008-06-04T12:56:20.449+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="edit-media" type="text/csv"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/pdf.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content" rel="cmis-stream" type="text/csv"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-04T12:55:36.295+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-04T12:56:20.449+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>1,408,974</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/csv</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>upload30_Part I - Content Management Interoperability Services.pdf</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/24c2b49c-322d-11dd-86bc-b72e392a286f/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    544. -
    545. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    546. -
    547. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    548. -
    549. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    550. -
    551. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    552. -
    553. line 4, column 0: content should contain a xml:lang element -line 7, column 0: summary should contain a xml:lang element -line 8, column 0: title should contain a xml:lang element
    554. -
    555. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192
      -
      -
      -
      -
      -
    556. -
    557. Response
      
      -
      -status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192
      -transfer-encoding: chunked
      -server: Apache-Coyote/1.1
      -pragma: no-cache
      -cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      -content-type: application/atom+xml;type=entry;charset=UTF-8
      -
      -
      -
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      -<author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2d0473a4-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:53.587+01:00</published>
      -<summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 1</summary>
      -<title>jeicbkfege</title>
      -<updated>2008-06-10T17:27:53.632+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:53.632+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      -<alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      -<cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      -  <cmis:baseType>document</cmis:baseType>
      -  <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:53.587+01:00</cmis:creationDate>
      -  <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:53.632+01:00</cmis:lastModificationDate>
      -  <cmis:contentStreamLength>68</cmis:contentStreamLength>
      -  <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>jeicbkfege</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      -</cmis:object>
      -</entry>
    558. -
    559. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    560. -
    561. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    562. -
    563. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    564. -
    565. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 -line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    566. +line 16, column 161: Unregistered link relationship (5 occurrences)
    567. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    568. Remove entry
    569. Request
      
      -DELETE http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0473a4-370a-11dd-aabf-5d0c77a8a192
      +DELETE http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e74f516e-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -6885,7 +1947,7 @@ DELETE http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2d0
       
    570. Response
      
       
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      +date: Wed, 25 Jun 2008 18:17:04 GMT
       status: 204
       server: Apache-Coyote/1.1
       pragma: no-cache
      @@ -6895,7 +1957,7 @@ cache-control: no-cache
       
    571. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -6904,60 +1966,59 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d1
         
    572. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      +date: Wed, 25 Jun 2008 18:17:04 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2dd3d19e-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:54.916+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e8635986-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:02.032+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 2</summary>
      -<title>cfkghcjdcj</title>
      -<updated>2008-06-10T17:27:54.942+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:54.942+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      +<title>kkkbhlaagl</title>
      +<updated>2008-06-25T19:17:02.168+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:02.168+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:54.916+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:02.032+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:54.942+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:02.168+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>cfkghcjdcj</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>kkkbhlaagl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
    573. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    574. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    575. -
    576. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    577. -
    578. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    579. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    580. +line 16, column 161: Unregistered link relationship (5 occurrences)
    581. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    582. Remove entry
    583. Request
      
      -DELETE http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd3d19e-370a-11dd-aabf-5d0c77a8a192
      +DELETE http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e8635986-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -6965,7 +2026,7 @@ DELETE http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2dd
       
    584. Response
      
       
      -date: Tue, 10 Jun 2008 16:28:00 GMT
      +date: Wed, 25 Jun 2008 18:17:04 GMT
       status: 204
       server: Apache-Coyote/1.1
       pragma: no-cache
      @@ -6975,7 +2036,7 @@ cache-control: no-cache
       
    585. Request
      
      -GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192
      +GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -6984,60 +2045,59 @@ GET http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4
         
    586. Response
      
       
       status: 200
      -content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192
      +content-location: http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76
       transfer-encoding: chunked
       server: Apache-Coyote/1.1
       pragma: no-cache
       cache-control: no-cache
      -date: Tue, 10 Jun 2008 16:28:01 GMT
      +date: Wed, 25 Jun 2008 18:17:05 GMT
       content-type: application/atom+xml;type=entry;charset=UTF-8
       
       
       
      -
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/CMIS/1.0">
      +
      <?xml version="1.0" ?><entry xmlns="http://www.w3.org/2005/Atom" xmlns:alf="http://www.alfresco.org" xmlns:app="http://www.w3.org/2007/app" xmlns:cmis="http://www.cmis.org/2008/05">
       <author><name>admin</name></author>
      -<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" type="text/xhtml"/>
      -<id>urn:uuid:2e97e4f7-370a-11dd-aabf-5d0c77a8a192</id>
      -<published>2008-06-10T17:27:56.202+01:00</published>
      +<content src="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" type="text/xhtml"/>
      +<id>urn:uuid:e945f15e-42e2-11dd-9d9b-d34be6363a76</id>
      +<published>2008-06-25T19:17:03.513+01:00</published>
       <summary>I?±t?´rn?¢ti?¥n?†liz?¶ti??n - 3</summary>
      -<title>ehlgdgdcje</title>
      -<updated>2008-06-10T17:27:56.236+01:00</updated>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="self" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="enclosure" type="text/xhtml"/>
      -<app:edited>2008-06-10T17:27:56.236+01:00</app:edited>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192" rel="edit" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="edit-media" type="text/xhtml"/>
      +<title>ebegdbddfl</title>
      +<updated>2008-06-25T19:17:03.564+01:00</updated>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="self"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="enclosure" type="text/xhtml"/>
      +<app:edited>2008-06-25T19:17:03.564+01:00</app:edited>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76" rel="edit"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="edit-media" type="text/xhtml"/>
       <alf:icon>http://localhost:8080/alfresco/images/filetypes/_default.gif</alf:icon>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/permissions" rel="cmis-allowableactions" type="entry"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/associations" rel="cmis-relationships" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/parents" rel="cmis-parents" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/versions" rel="cmis-allversions" type="feed"/>
      -<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content" rel="cmis-stream" type="text/xhtml"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/permissions" rel="cmis-allowableactions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/associations" rel="cmis-relationships"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/parents" rel="cmis-parents"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/versions" rel="cmis-allversions"/>
      +<link href="http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content" rel="cmis-stream" type="text/xhtml"/>
       <cmis:object>
      -  <cmis:object_id>workspace://SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192</cmis:object_id>
      +  <cmis:object_id>workspace://SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76</cmis:object_id>
         <cmis:baseType>document</cmis:baseType>
         <cmis:createdBy>admin</cmis:createdBy>
      -  <cmis:creationDate>2008-06-10T17:27:56.202+01:00</cmis:creationDate>
      +  <cmis:creationDate>2008-06-25T19:17:03.513+01:00</cmis:creationDate>
         <cmis:lastModifiedBy>admin</cmis:lastModifiedBy>
      -  <cmis:lastModificationDate>2008-06-10T17:27:56.236+01:00</cmis:lastModificationDate>
      +  <cmis:lastModificationDate>2008-06-25T19:17:03.564+01:00</cmis:lastModificationDate>
         <cmis:contentStreamLength>68</cmis:contentStreamLength>
         <cmis:contentStreamMimetype>text/xhtml</cmis:contentStreamMimetype>
      -  <cmis:contentStreamName>ehlgdgdcje</cmis:contentStreamName>
      -  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192/content</cmis:contentStreamUri>
      +  <cmis:contentStreamName>ebegdbddfl</cmis:contentStreamName>
      +  <cmis:contentStreamUri>http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76/content</cmis:contentStreamUri>
       </cmis:object>
       </entry>
    587. [RFC2616] Section 13.3.4 No ETag: header was sent with the response.
    588. [RFC2616] Section 13.3.4 No Last-Modified: header was sent with the response.
    589. -
    590. [RFC4287] line 10, column 145: Not a valid MIME type (6 occurrences)
    591. -
    592. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/CMIS/1.0 +
    593. [RFC4287] line 2, column 0: Use of unknown namespace: http://www.cmis.org/2008/05 line 2, column 0: Use of unknown namespace: http://www.alfresco.org -line 16, column 174: Unregistered link relationship (5 occurrences)
    594. +line 16, column 161: Unregistered link relationship (5 occurrences)
    595. line 4, column 0: content should contain a xml:lang element line 7, column 0: summary should contain a xml:lang element line 8, column 0: title should contain a xml:lang element
    596. Remove entry
    597. Request
      
      -DELETE http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e97e4f7-370a-11dd-aabf-5d0c77a8a192
      +DELETE http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/e945f15e-42e2-11dd-9d9b-d34be6363a76
       
       
       
      @@ -7045,7 +2105,7 @@ DELETE http://localhost:8080/alfresco/service/api/node/workspace/SpacesStore/2e9
       
    598. Response
      
       
      -date: Tue, 10 Jun 2008 16:28:01 GMT
      +date: Wed, 25 Jun 2008 18:17:05 GMT
       status: 204
       server: Apache-Coyote/1.1
       pragma: no-cache