Ես ստացել խնդիր է աշխատել զարգացնելու Windows դիմումը, որը գրավել ցուցակի Դիտել տվյալները sharepoint եւ գործընթացի տվյալների հաղթել ձեւերի ծրագիր.
Նախկինում էի վերցնել տվյալների օգտագործման Lists.asmx,views.asmx.
Այժմ ես եկել իմանալ, թե կա այլ ճանապարհ, վերցնել տվյալների ցուցակից Դիտել.
Շարահյուսություն:
HTTPS://myserver.com/_vti_bin/owssvr.dll?CMD = Ցուցադրել&List ={list Id}&View={View Id}&XMLDATA=true
Example URL:
HTTPS://myserver.com/_vti_bin/owssvr.dll?CMD = Ցուցադրել&List ={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 = Ցուցադրել&List ={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 վավեր = new XmlDocument();
doc.Load(response.GetResponseStream());
Թողնել Պատասխանել