Hi,<br><br>I'm trying to grant Webuser +w(write) Permission to a specify resource file, so that the Webuser can change the values and publish it.  For my info, all Webusers are in the "Guests" Group.  So I granted Permissions to Guests Group with (+r+w+v+c+d) for  a file ie. "/data/test.html"
<br><br>And I'm reading values from and writing values to /data/test.html as follows:<br><br>CmsFile f = obj.readFile("/data/test.html");<br>out.println("filename= "+f.getName()+"<br>");
<br>String data = new String(f.getContents());<br>out.println("data= "+ data+"<br>");<br>data+="some new string";<br>f.setContents(data.getBytes());<br>obj.lockResource(f.getName());<br>
f=obj.writeFile(f);<br><br>But somehow, when I login as a Webuser, I got an error trying to lock the resource file "/data/test.html", and therefore I cant write to the file nor publish it.<br><br>Are Webusers unable to be given a (+w) Permission to any resource ?
<br><br>Arthur<br>