ผมได้งานที่จะทำงานในการพัฒนาโปรแกรมประยุกต์ของ Windows ซึ่งจะเรียกดูข้อมูลจากรายการ SharePoint และประมวลผลข้อมูลในแบบฟอร์มการตรวจสอบชนะ.
ก่อนหน้านี้ผมใช้ในการเรียกข้อมูลที่ใช้ Lists.asmx,views.asmx.
ตอนนี้ผมมาถึงรู้ว่ามีวิธีอื่น ๆ เพื่อดึงข้อมูลจากมุมมองรายการ.
วากยสัมพันธ์:
HTTPS://myserver.com/_vti_bin/owssvr.dll?cmd = แสดง&รายการ ={list Id}&View={View Id}&XMLDATA=true
Example URL:
HTTPS://myserver.com/_vti_bin/owssvr.dll?cmd = แสดง&รายการ ={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 = แสดง&รายการ ={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 เอกสาร = XmlDocument ใหม่();
doc.Load(response.GetResponseStream());
ปล่อยให้ตอบกลับ