Tagged Questions
0
votes
1answer
816 views
How to inherit parent site permissions when creating subSite using webservice
Using Sharepoint 2007 webservices from a .Net web application I create a subSite (CreateDWS method). I was originally hoping that the parent permissions would be inherited but no such luck.
...
0
votes
3answers
805 views
SPList.GetItems(query) does not return SPListItems where the permissions are not inherited
I'm using the following code:
protected void TraverseFolder(SPList list, SPFolder folder)
{
SPQuery qry = new SPQuery() { Folder = folder };
SPListItemCollection listFolderItems = ...