vote up 2 vote down star

Possible Duplicate:
Accessing all SiteCollections on a SharePoint Server with WebService

There is no Site Directory in WSS 3.0, which is what I would use to get a list of sites in MOSS 2007. Is there a way of getting a list of all site collections from WSS 3.0 through a web service?

Update: Looks like it can't be done. Sinced a daily dump is good enough, rather than write a custom web service, I'll just have the admin create a scheduled task to dump the output of an stsadm enumsites command into a web accessible location.

flag

73% accept rate

closed as exact duplicate by Alex Angas, Eugene Katz, Bill the Lizard Sep 18 at 13:24

3 Answers

vote up 1 vote down check

Out of the box this is not possible. Web Services are application related (except for the shared services ones).

You could of course write your own web service and create a method in there that enumerates all webs apps and then all site collections in them, returning the result as xml. Deploy the service to sharepoint (maybe to the central admin web app to keep things secure / accessible for admins only) using a feature.

link|flag
"Can't be done" is good enough of an answer for me. Since a daily dump is good enough, I'll just have the admin create a scheduled task to dump the output of an stsadm enumsites command into a web accessible location. – Eugene Katz Sep 16 at 12:19
As Rob Windsor states below, you can use the Webs web service to get the web application, iterate through them, and iteration the site collections via the Sites web service (using the URL from the Web application). – Bil Sep 16 at 16:28
vote up 1 vote down

Yes. You should be able to use the GetWebCollection operation from Webs.asmx to iterate all the sites in the collection.

http://msdn.microsoft.com/en-us/library/webs.webs.getwebcollection.aspx

link|flag
This will get me a list of webs in a site collection. I'm looking for a list of all top-level site collections. – Eugene Katz Sep 15 at 19:46
vote up 0 vote down

I have not found one and I have looked quite hard.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.