I'm using MOSS OOTB WebServices wherein I in need a webservice method name which gives me all subsite Urls and their titles..

I'm using GetWebCollection method of Webs.asmx webserive but this method is not giving me parent's title.

Thanks!!

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

If you need to get current web, use GetWeb method.

Alternatively you can try GetAllSubWebCollection, because it Returns the titles and URLs of all sites within the current site collection rather than GetWebCollection, which returns only the titles and URLs of all sites directly beneath the current site.

link|improve this answer
Appreciable!! Thanks for giving me quick and best solution, is there any method wherein I get only parent site and immediate sub-site's URLs with titles not the sub-sites of the sub-sites. – Kuldeep Shige Oct 14 '11 at 9:24
@Kuldeep Shige just use GetWeb (to get only parent) and GetWebCollection (to get immediate sub-sites) – Janis Veinbergs Oct 14 '11 at 14:39
feedback

Your Answer

 
or
required, but never shown

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