Mən SharePoint siyahısı View məlumat almaq və qələbə app təşkil məlumatların emal windows proqram inkişaf işləmək üçün bir vəzifə var.
Əvvəllər i Lists.asmx istifadə edərək məlumat almaq üçün istifadə,views.asmx.
İndi i List View məlumat almaq üçün başqa yol var bilmək gəldi.
Sintaksis:
https://myserver.com/_vti_bin/owssvr.dll?Cmd = Display&Siyahı ={list Id}&View={View Id}&XMLDATA=true
Example URL:
https://myserver.com/_vti_bin/owssvr.dll?Cmd = Display&Siyahı ={EA1BD05B-DB5B-434B-B2FC-B9AB9EE18A91}&View={B959F555-798B-4F47-9FBB-81513B85F906}&XMLDATA=true
Now it will give the xml data as response.
write the response to xmldoc and process the data.
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(“https://myserver.com/_vti_bin/owssvr.dll?Cmd = Display&Siyahı ={EA1BD05B-DB5B-434B-B2FC-B9AB9EE18A91}&View={B959F555-798B-4F47-9FBB-81513B85F906}&XMLDATA=true”);
myRequest.Credentials =
System.Net.CredentialCache.DefaultCredentials;
HttpWebResponse response = (HttpWebResponse)myRequest.GetResponse();
XmlDocument doc = new XmlDocument();
doc.Load(response.GetResponseStream());
Şəkil Yükləmə