Kam marrë një detyrë për të punuar në zhvillimin dritaret e aplikimit që do të shkoj të marr Lista Shikoni dhënat nga SharePoint dhe të përpunuar të dhënat në fitore formon app.
Më parë i përdorur për të shkoj të marr të dhënat duke përdorur Lists.asmx,views.asmx.
Tani i erdhi për të dini ka mënyrë tjetër për të shkoj të marr të dhënat nga Lista View.
Sintaksë:
https://myserver.com/_vti_bin/owssvr.dll?Cmd = Display&Lista ={list Id}&View={View Id}&XMLDATA=true
Example URL:
https://myserver.com/_vti_bin/owssvr.dll?Cmd = Display&Lista ={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&Lista ={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 = ri XmlDocument();
doc.Load(response.GetResponseStream());
Leave a Reply