I have to retrieve a list of all the share point sites to which i have access from a windows application (C#) .I am planning to use Share point web sericves but I am new to share point. Any pointer which share point web service(s) could provide me the required information.
|
1
|
|
|
|
|
|
There's no way to do this with the out of the box web services I think. You could however write your web service, deploy that to your sharepoint farm and then call that service. In it should be a method that takes a username and then using SPSecurity.RunWithElevatedPriviliges loops through the site collections / sites to determine if the user provided has access to each. |
||
|
|
|
|
Webs.asmx should do the trick. Here's a snippet to get you started.
|
||
|
|
|
|
If you want to use the API instead then I would suggest you do the following to return all the sub webs for the current user without having to use elevated priviliges.
|
||
|
|
