<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Security errors while versioning! in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/security-errors-while-versioning/m-p/185186#M138316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to do versioning after uploading file but during checkin itself I am getting security related error&amp;nbsp; :cry:&amp;nbsp; Does anybody have any idea to resolve this out. If, please share.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;##############################################################################&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;My Program&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;—————-&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;package org.alfresco.sample;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import javax.jcr.Node;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import javax.jcr.Repository;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import javax.jcr.Session;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import javax.jcr.SimpleCredentials;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//import javax.jcr.version.Version;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import java.util.HashMap;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import java.util.List;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import java.util.Map;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import java.io.*;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.error.AlfrescoRuntimeException;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.model.ContentModel;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.ServiceRegistry;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.coci.CheckOutCheckInService;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.model.FileFolderService;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.model.FileInfo;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.repository.ContentData;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.repository.ContentService;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.repository.ContentWriter;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.repository.NodeRef;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.repository.NodeService;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.repository.StoreRef;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.version.Version;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.version.VersionService;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.service.cmr.version.VersionType;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.springframework.context.ApplicationContext;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.springframework.context.support.ClassPathXmlApplicationContext;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.version.VersionModel;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.version.VersionServiceImpl;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;import org.alfresco.repo.coci.CheckOutCheckInServiceImpl;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;public class FirstJCRClient&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;public static void main(String[] args) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;try{&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;// access the Alfresco JCR Repository (here it's via programmatic approach, but it could also be injected)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ApplicationContext context = new ClassPathXmlApplicationContext("classpath:alfresco/application-context.xml");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Repository repository = (Repository)context.getBean("JCR.Repository");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;// login to workspace (here we rely on the default workspace defined by JCR.Repository bean)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Session session = repository.login(new SimpleCredentials("admin", "admin".toCharArray()));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;try{&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ServiceRegistry serviceRegistry = (ServiceRegistry) context.getBean("ServiceRegistry");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;// Get root node for default store: SpacesStore&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NodeRef rootNodeRef = serviceRegistry.getNodeService().getRootNode(new StoreRef("workspace://SpacesStore"));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;// Find children of root node with association name "app:company_home" (must be one)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;List&amp;lt;NodeRef&amp;gt; nodes = (List&amp;lt;NodeRef&amp;gt;) serviceRegistry.getSearchService().selectNodes(rootNodeRef, "app:company_home", null,serviceRegistry.getNamespaceService(), false);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if (nodes.size() == 0) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;throw new AlfrescoRuntimeException("Unable to find store path: app:company_home");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;NodeRef companyHome = nodes.get(0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;String A="C:/Test/Amitkumar.pdf";&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;File file=new File(A);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FileFolderService fileFolderService = (FileFolderService) context.getBean("fileFolderService");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FileInfo fileinfo = fileFolderService.create(companyHome, file.getName(), ContentModel.TYPE_CONTENT);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;String s= fileinfo.getName();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;NodeRef fileRef = fileinfo.getNodeRef();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;FileInputStream contentStream=new FileInputStream(file);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ContentService contentService = (ContentService) context.getBean("contentService");&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ContentWriter writer = contentService.getWriter(fileRef, ContentModel.PROP_CONTENT, true);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;writer.putContent(contentStream);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;session.save();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;// Amit content versioning&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println("Versioning-1");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VersionService VS= (VersionService) context.getBean("VersionService");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println("Versioning-2");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Map&amp;lt;String, Serializable&amp;gt; versionProperties = new HashMap&amp;lt;String, Serializable&amp;gt;();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println("Versioning-3");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;versionProperties.put(Version.PROP_DESCRIPTION, "checkin made by test program");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println("Versioning-4");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;versionProperties.put(VersionModel.PROP_VERSION_TYPE, VersionType.MAJOR);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println("Versioning-5");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VS.createVersion(fileRef,versionProperties);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println("Versioning-6");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//NodeService nodeService = serviceRegistry.getNodeService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CheckOutCheckInService checkOutCheckInService= serviceRegistry.getCheckOutCheckInService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;checkOutCheckInService.checkin(fileRef, versionProperties);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println("Versioning-7");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//Amit content versioning&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println("Inside tcheckin-9");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;} &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;catch (Exception exp ){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println (" error while creating nodes " + exp);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;exp.printStackTrace();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;finally&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;session.logout();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.exit(0);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println("Inside tcheckin-10");&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;} &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;catch (Exception exp ){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.out.println (" Caught exception " + exp);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;exp.printStackTrace();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;###############################################33&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Error while executing&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;————————-&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:45,397 WARN [remoting.rmi.RmiRegistryFactoryBean] Could not detect RMI registry - creating new one&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:48,147 WARN [alfresco.util.OpenOfficeConnectionTester] A connection to OpenOffice could not be established.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:51,553 INFO [domain.schema.SchemaBootstrap] Schema managed by database dialect org.hibernate.dialect.MySQLInnoDBDialect.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:53,209 INFO [domain.schema.SchemaBootstrap] No changes were made to the schema.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:55,334 INFO [repo.admin.ConfigurationChecker] The Alfresco root data directory ('dir.root') is: C:\Alfresco\alf_data&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:55,803 INFO [admin.patch.PatchExecuter] Checking for patches to apply …&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:56,006 INFO [repo.module.ModuleServiceImpl] Found 0 module(s).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:56,147 ERROR [alfresco.smb.protocol] Error accessing Win32 NetBIOS, check DLL is on the path&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:56,162 INFO [service.descriptor.DescriptorService] Alfresco JVM - v1.5.0_16-b02; maximum heap size 63.563MB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:56,162 WARN [service.descriptor.DescriptorService] Alfresco JVM - WARNING - maximum heap size 63.563MB is less than recommended 512MB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;18:42:56,162 INFO [service.descriptor.DescriptorService] Alfresco started (Community Network): Current version 2.1.0 (482) schema 64 - Installed version 2.1.0 (482) schema 64&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Versioning-1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Versioning-2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Versioning-3&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Versioning-4&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Versioning-5&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Versioning-6&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;error while creating nodes org.alfresco.repo.security.permissions.AccessDeniedException: Access Denied. You do not have the appropriate permissions to perform this operation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.alfresco.repo.security.permissions.AccessDeniedException: Access Denied. You do not have the appropriate permissions to perform this operation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.security.permissions.impl.ExceptionTranslatorMethodInterceptor.invoke(ExceptionTranslatorMethodInterceptor.java:53)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.audit.AuditComponentImpl.auditImpl(AuditComponentImpl.java:256)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.audit.AuditComponentImpl.audit(AuditComponentImpl.java:191)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.audit.AuditMethodInterceptor.invoke(AuditMethodInterceptor.java:69)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:107)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:210)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at $Proxy88.checkin(Unknown Source)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.sample.FirstJCRClient.main(FirstJCRClient.java:105)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Caused by: net.sf.acegisecurity.AccessDeniedException: Access is denied.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at net.sf.acegisecurity.vote.AffirmativeBased.decide(AffirmativeBased.java:86)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at net.sf.acegisecurity.intercept.AbstractSecurityInterceptor.beforeInvocation(AbstractSecurityInterceptor.java:394)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at net.sf.acegisecurity.intercept.method.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:77)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.security.permissions.impl.ExceptionTranslatorMethodInterceptor.invoke(ExceptionTranslatorMethodInterceptor.java:49)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;… 10 more&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;##############################################################33&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Amit.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Oct 2008 14:39:29 GMT</pubDate>
    <dc:creator>amit_wmw</dc:creator>
    <dc:date>2008-10-30T14:39:29Z</dc:date>
    <item>
      <title>Security errors while versioning!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/security-errors-while-versioning/m-p/185186#M138316</link>
      <description>Hi,I am trying to do versioning after uploading file but during checkin itself I am getting security related error&amp;nbsp; :cry:&amp;nbsp; Does anybody have any idea to resolve this out. If, please share.##############################################################################My Program—————-package org.alfres</description>
      <pubDate>Thu, 30 Oct 2008 14:39:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/security-errors-while-versioning/m-p/185186#M138316</guid>
      <dc:creator>amit_wmw</dc:creator>
      <dc:date>2008-10-30T14:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Security errors while versioning!</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/security-errors-while-versioning/m-p/185187#M138317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A few years too late, but anyway: &amp;nbsp;Trying running your versionService.createVersion() inside a valid transaction:&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/thread/153001"&gt;How to write code with transactions&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone else has this problem using an (unauthenticated) webscript, try adding this to your webscript descriptor:&lt;/P&gt;&lt;PRE class="" style="color: #000000; background: #f5f2f0; border: 0px; margin: 0.5em 0px; padding: 1em 1em 1em 3.8em;"&gt;&lt;CODE style="border: 0px; font-weight: inherit;"&gt;&amp;lt;authentication runas="admin"&amp;gt;user&amp;lt;/authentication&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Make sure you use a valid user! (I tried user 'system', which still results in an access denied exception).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 11:22:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/security-errors-while-versioning/m-p/185187#M138317</guid>
      <dc:creator>martijn</dc:creator>
      <dc:date>2017-03-27T11:22:54Z</dc:date>
    </item>
  </channel>
</rss>

