シナリオ: SharePoint と同じサーバーでプログラムを実行するためのアクセス権がありません。SharePoint サーバーの URL にアクセスできます。そこで、Web 参照を使用して SharePoint サービスにアクセスし、SharePoint 2010 リストにアクセスすることにしました。
これが私のコードです
using System;
using System.Net;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
namespace SPTechOpsProjectTracker
{
class Program
{
static void Main(string[] args)
{
//Add a reference to my web service
TechOpsProjectWebService.Lists listService = new TechOpsProjectWebService.Lists();
//use the logged in user’s credentials
listService.Credentials = System.Net.CredentialCache.DefaultCredentials;
String listGUID = "a486016e-80b2-44c3-8b4a-8394574b9430";
String activeItemViewGUID = "60689d51-5787-4ef1-9515-c050f20fa424 ";
//calling the GetListItems service to return the 1000 list items
//for theparticular list and view that you pass to the function
System.Xml.XmlNode activeItemData = listService.GetListItems(listGUID, activeItemViewGUID, null, null, "1000", null, "");
// Go through the list to see what was returned
foreach(System.Xml.XmlNode listItem in activeItemData)
{
// Get the attributes
System.Xml.XmlAttributeCollection attrs = listItem.Attributes;
Console.WriteLine(listItem.OuterXml);
Console.WriteLine("Press any key to continue");
Console.ReadLine();
}
//connect to my SQL server 2008 server
//Create a database
//Create a table in that database.
//Dump the values of attributes obtained from my code to that table.
}
}
}
質問: SQL Server 2008 サーバーに接続する必要があります データベースを作成する そのデータベースにテーブルを作成します。コードから取得した属性の値をそのテーブルにダンプします。
あなたの助け/提案は大歓迎です。ありがとう。