CMIS-513: Fixed namespaces

git-svn-id: https://svn.apache.org/repos/asf/chemistry/dotcmis/trunk@1299407 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/DotCMIS/binding/atompub/atompub-parser.cs b/DotCMIS/binding/atompub/atompub-parser.cs
index 83a9d4f..0a552bb 100644
--- a/DotCMIS/binding/atompub/atompub-parser.cs
+++ b/DotCMIS/binding/atompub/atompub-parser.cs
@@ -48,11 +48,11 @@
             ObjectSerializer = new XmlSerializer(typeof(cmisObjectType), objectXmlRoot);

 

             XmlRootAttribute allowableActionsXmlRoot = new XmlRootAttribute("allowableActions");

-            allowableActionsXmlRoot.Namespace = AtomPubConstants.NamespaceRestAtom;

+            allowableActionsXmlRoot.Namespace = AtomPubConstants.NamespaceCMIS;

             AllowableActionsSerializer = new XmlSerializer(typeof(cmisAllowableActionsType), allowableActionsXmlRoot);

 

             XmlRootAttribute aclXmlRoot = new XmlRootAttribute("acl");

-            aclXmlRoot.Namespace = AtomPubConstants.NamespaceRestAtom;

+            aclXmlRoot.Namespace = AtomPubConstants.NamespaceCMIS;

             AclSerializer = new XmlSerializer(typeof(cmisAccessControlListType), aclXmlRoot);

         }