Ok, so I figured out how to connect to the web service (.NET 2.0 style) and return some lists.
private void PrintLists()
{
XmlNode node = ListsService.GetListCollection();
foreach (XmlNode sub_node in node.ChildNodes)
{
Console.WriteLine(sub_node.Attributes["Title"].InnerText);
}
}
This returns the number of lists that actually exist in the SharePoint instance.
The problem is that the list I want is deep inside SharePoint. There are “sub-sites” or “sub-websites”, as I understand it, they are called (please correct me if I am mistaken), which are tabs at the top of the SharePoint page when viewed in a browser. One of these tabs has a separate subsection, and then finally there are several lists, one of which I want to get.
, , , -, , , . , , .
, .