moss - SharePoint 2007: How to get List URL from List Name using Web services? -


i have moss list, how can url list list name using web service methods?

for next poor sucker working without documentation:

/// <summary>         /// sharepoint web service: lists.         /// </summary>         private readonly sharepoint.lists.lists wslists = new sharepoint.lists.lists();  private string getlisturlfromname(string listname)         {             xmlnode node = wslists.getlist(listname);             return node.attributes["rootfolder"].value;          } 

Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -